Lines Matching refs:TIFFCodec
37 const TIFFCodec* c = TIFFFindCODEC(tif->tif_dir.td_compression); in TIFFNoEncode()
75 const TIFFCodec* c = TIFFFindCODEC(tif->tif_dir.td_compression); in TIFFNoDecode()
163 const TIFFCodec *c = TIFFFindCODEC((uint16) scheme); in TIFFSetCompressionScheme()
182 TIFFCodec* info;
186 const TIFFCodec*
189 const TIFFCodec* c; in TIFFFindCODEC()
194 return ((const TIFFCodec*) cd->info); in TIFFFindCODEC()
198 return ((const TIFFCodec*) 0); in TIFFFindCODEC()
201 TIFFCodec*
205 _TIFFmalloc((tmsize_t)(sizeof (codec_t) + sizeof (TIFFCodec) + strlen(name)+1)); in TIFFRegisterCODEC()
208 cd->info = (TIFFCodec*) ((uint8*) cd + sizeof (codec_t)); in TIFFRegisterCODEC()
210 ((uint8*) cd->info + sizeof (TIFFCodec)); in TIFFRegisterCODEC()
225 TIFFUnRegisterCODEC(TIFFCodec* c) in TIFFUnRegisterCODEC()
252 TIFFCodec*
257 const TIFFCodec* c; in TIFFGetConfiguredCODECs()
258 TIFFCodec* codecs = NULL; in TIFFGetConfiguredCODECs()
259 TIFFCodec* new_codecs; in TIFFGetConfiguredCODECs()
262 new_codecs = (TIFFCodec *) in TIFFGetConfiguredCODECs()
263 _TIFFrealloc(codecs, i * sizeof(TIFFCodec)); in TIFFGetConfiguredCODECs()
269 _TIFFmemcpy(codecs + i - 1, cd, sizeof(TIFFCodec)); in TIFFGetConfiguredCODECs()
274 new_codecs = (TIFFCodec *) in TIFFGetConfiguredCODECs()
275 _TIFFrealloc(codecs, i * sizeof(TIFFCodec)); in TIFFGetConfiguredCODECs()
281 _TIFFmemcpy(codecs + i - 1, (const void*)c, sizeof(TIFFCodec)); in TIFFGetConfiguredCODECs()
286 new_codecs = (TIFFCodec *) _TIFFrealloc(codecs, i * sizeof(TIFFCodec)); in TIFFGetConfiguredCODECs()
292 _TIFFmemset(codecs + i - 1, 0, sizeof(TIFFCodec)); in TIFFGetConfiguredCODECs()