Mercurial > libavcodec.hg
annotate tiff.c @ 4186:14fe1e8d337c libavcodec
8-bit images support for TIFF
| author | kostya |
|---|---|
| date | Mon, 13 Nov 2006 05:32:10 +0000 |
| parents | 7120f779d313 |
| children | 46f12596304f |
| rev | line source |
|---|---|
| 4013 | 1 /* |
| 2 * TIFF image decoder | |
| 3 * Copyright (c) 2006 Konstantin Shishkov | |
| 4 * | |
| 5 * This file is part of FFmpeg. | |
| 6 * | |
| 7 * FFmpeg is free software; you can redistribute it and/or | |
| 8 * modify it under the terms of the GNU Lesser General Public | |
| 9 * License as published by the Free Software Foundation; either | |
| 10 * version 2.1 of the License, or (at your option) any later version. | |
| 11 * | |
| 12 * FFmpeg is distributed in the hope that it will be useful, | |
| 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 15 * Lesser General Public License for more details. | |
| 16 * | |
| 17 * You should have received a copy of the GNU Lesser General Public | |
| 18 * License along with FFmpeg; if not, write to the Free Software | |
| 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
| 20 * | |
| 21 */ | |
| 22 #include "avcodec.h" | |
| 23 #ifdef CONFIG_ZLIB | |
| 24 #include <zlib.h> | |
| 25 #endif | |
|
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
26 #include "lzw.h" |
| 4013 | 27 |
| 28 /* abridged list of TIFF tags */ | |
| 29 enum TiffTags{ | |
| 30 TIFF_WIDTH = 0x100, | |
| 31 TIFF_HEIGHT, | |
| 32 TIFF_BPP, | |
| 33 TIFF_COMPR, | |
| 34 TIFF_INVERT = 0x106, | |
| 35 TIFF_STRIP_OFFS = 0x111, | |
| 36 TIFF_ROWSPERSTRIP = 0x116, | |
| 37 TIFF_STRIP_SIZE, | |
| 38 TIFF_XPOS = 0x11E, | |
| 39 TIFF_YPOS = 0x11F, | |
| 4186 | 40 TIFF_PREDICTOR = 0x13D, |
| 41 TIFF_PAL = 0x140 | |
| 4013 | 42 }; |
| 43 | |
| 44 enum TiffCompr{ | |
| 45 TIFF_RAW = 1, | |
| 46 TIFF_CCITT_RLE, | |
| 47 TIFF_G3, | |
| 48 TIFF_G4, | |
| 49 TIFF_LZW, | |
| 50 TIFF_JPEG, | |
| 51 TIFF_NEWJPEG, | |
| 52 TIFF_ADOBE_DEFLATE, | |
| 53 TIFF_PACKBITS = 0x8005, | |
| 54 TIFF_DEFLATE = 0x80B2 | |
| 55 }; | |
| 56 | |
| 57 enum TiffTypes{ | |
| 58 TIFF_BYTE = 1, | |
| 59 TIFF_STRING, | |
| 60 TIFF_SHORT, | |
| 61 TIFF_LONG, | |
| 62 TIFF_LONGLONG | |
| 63 }; | |
| 64 | |
| 65 typedef struct TiffContext { | |
| 66 AVCodecContext *avctx; | |
| 67 AVFrame picture; | |
| 68 | |
| 69 int width, height; | |
| 70 unsigned int bpp; | |
| 71 int le; | |
| 72 int compr; | |
| 4186 | 73 int invert; |
| 4013 | 74 |
| 75 int strips, rps; | |
| 76 int sot; | |
| 77 uint8_t* stripdata; | |
| 78 uint8_t* stripsizes; | |
| 79 int stripsize, stripoff; | |
|
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
80 LZWState *lzw; |
| 4013 | 81 } TiffContext; |
| 82 | |
| 83 static int tget_short(uint8_t **p, int le){ | |
| 84 int v = le ? LE_16(*p) : BE_16(*p); | |
| 85 *p += 2; | |
| 86 return v; | |
| 87 } | |
| 88 | |
| 89 static int tget_long(uint8_t **p, int le){ | |
| 90 int v = le ? LE_32(*p) : BE_32(*p); | |
| 91 *p += 4; | |
| 92 return v; | |
| 93 } | |
| 94 | |
| 95 static int tget(uint8_t **p, int type, int le){ | |
| 96 switch(type){ | |
| 97 case TIFF_BYTE : return *(*p)++; | |
| 98 case TIFF_SHORT: return tget_short(p, le); | |
| 99 case TIFF_LONG : return tget_long (p, le); | |
| 100 default : return -1; | |
| 101 } | |
| 102 } | |
| 103 | |
| 104 static int tiff_unpack_strip(TiffContext *s, uint8_t* dst, int stride, uint8_t *src, int size, int lines){ | |
| 105 int c, line, pixels, code; | |
| 106 uint8_t *ssrc = src; | |
| 107 int width = s->width * (s->bpp / 8); | |
| 108 #ifdef CONFIG_ZLIB | |
| 109 uint8_t *zbuf; unsigned long outlen; | |
| 110 | |
| 111 if(s->compr == TIFF_DEFLATE || s->compr == TIFF_ADOBE_DEFLATE){ | |
| 112 outlen = width * lines; | |
| 113 if(lines != s->height){ | |
| 114 av_log(s->avctx, AV_LOG_ERROR, "This decoder won't decode ZLib-packed TIFF with %i lines per strip\n", lines); | |
| 115 return -1; | |
| 116 } | |
| 117 zbuf = av_malloc(outlen); | |
| 118 if(uncompress(zbuf, &outlen, src, size) != Z_OK){ | |
| 119 av_log(s->avctx, AV_LOG_ERROR, "Uncompressing failed (%lu of %lu)\n", outlen, (unsigned long)width * lines); | |
| 120 av_free(zbuf); | |
| 121 return -1; | |
| 122 } | |
| 123 src = zbuf; | |
| 124 for(line = 0; line < lines; line++){ | |
| 125 memcpy(dst, src, width); | |
| 126 dst += stride; | |
| 127 src += width; | |
| 128 } | |
| 129 av_free(zbuf); | |
| 130 return 0; | |
| 131 } | |
| 132 #endif | |
|
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
133 if(s->compr == TIFF_LZW){ |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
134 if(ff_lzw_decode_init(s->lzw, 8, src, size, FF_LZW_TIFF) < 0){ |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
135 av_log(s->avctx, AV_LOG_ERROR, "Error initializing LZW decoder\n"); |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
136 return -1; |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
137 } |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
138 } |
| 4013 | 139 for(line = 0; line < lines; line++){ |
| 140 if(src - ssrc > size){ | |
| 141 av_log(s->avctx, AV_LOG_ERROR, "Source data overread\n"); | |
| 142 return -1; | |
| 143 } | |
| 144 switch(s->compr){ | |
| 145 case TIFF_RAW: | |
| 146 memcpy(dst, src, s->width * (s->bpp / 8)); | |
| 147 src += s->width * (s->bpp / 8); | |
| 148 break; | |
| 149 case TIFF_PACKBITS: | |
| 150 for(pixels = 0; pixels < width;){ | |
| 151 code = (int8_t)*src++; | |
| 152 if(code >= 0){ | |
| 153 code++; | |
| 154 if(pixels + code > width){ | |
| 155 av_log(s->avctx, AV_LOG_ERROR, "Copy went out of bounds\n"); | |
| 156 return -1; | |
| 157 } | |
| 158 memcpy(dst + pixels, src, code); | |
| 159 src += code; | |
| 160 pixels += code; | |
| 161 }else if(code != -128){ // -127..-1 | |
| 162 code = (-code) + 1; | |
| 163 if(pixels + code > width){ | |
| 164 av_log(s->avctx, AV_LOG_ERROR, "Run went out of bounds\n"); | |
| 165 return -1; | |
| 166 } | |
| 167 c = *src++; | |
| 168 memset(dst + pixels, c, code); | |
| 169 pixels += code; | |
| 170 } | |
| 171 } | |
| 172 break; | |
|
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
173 case TIFF_LZW: |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
174 pixels = ff_lzw_decode(s->lzw, dst, width); |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
175 if(pixels < width){ |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
176 av_log(s->avctx, AV_LOG_ERROR, "Decoded only %i bytes of %i\n", pixels, width); |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
177 return -1; |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
178 } |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
179 break; |
| 4013 | 180 } |
| 181 dst += stride; | |
| 182 } | |
| 183 return 0; | |
| 184 } | |
| 185 | |
| 186 | |
| 187 static int tiff_decode_tag(TiffContext *s, uint8_t *start, uint8_t *buf, uint8_t *end_buf, AVFrame *pic) | |
| 188 { | |
| 189 int tag, type, count, off, value = 0; | |
| 190 uint8_t *src, *dst; | |
| 191 int i, j, ssize, soff, stride; | |
| 4186 | 192 int *pal, *rp, *gp, *bp; |
| 4013 | 193 |
| 194 tag = tget_short(&buf, s->le); | |
| 195 type = tget_short(&buf, s->le); | |
| 196 count = tget_long(&buf, s->le); | |
| 197 off = tget_long(&buf, s->le); | |
| 198 | |
| 199 if(count == 1){ | |
| 200 switch(type){ | |
| 201 case TIFF_BYTE: | |
| 202 case TIFF_SHORT: | |
| 203 buf -= 4; | |
| 204 value = tget(&buf, type, s->le); | |
| 205 buf = NULL; | |
| 206 break; | |
| 207 case TIFF_LONG: | |
| 208 value = off; | |
| 209 buf = NULL; | |
| 210 break; | |
| 211 default: | |
| 212 value = -1; | |
| 213 buf = start + off; | |
| 214 } | |
| 215 }else{ | |
| 216 buf = start + off; | |
| 217 } | |
| 218 | |
| 219 if(buf && (buf < start || buf > end_buf)){ | |
| 220 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n"); | |
| 221 return -1; | |
| 222 } | |
| 223 | |
| 224 switch(tag){ | |
| 225 case TIFF_WIDTH: | |
| 226 s->width = value; | |
| 227 break; | |
| 228 case TIFF_HEIGHT: | |
| 229 s->height = value; | |
| 230 break; | |
| 231 case TIFF_BPP: | |
| 232 if(count == 1) s->bpp = value; | |
| 233 else{ | |
| 234 switch(type){ | |
| 235 case TIFF_BYTE: | |
| 4183 | 236 s->bpp = (off & 0xFF) + ((off >> 8) & 0xFF) + ((off >> 16) & 0xFF) + ((off >> 24) & 0xFF); |
| 4013 | 237 break; |
| 238 case TIFF_SHORT: | |
| 239 case TIFF_LONG: | |
| 4183 | 240 s->bpp = 0; |
| 241 for(i = 0; i < count; i++) s->bpp += tget(&buf, type, s->le); | |
| 4013 | 242 break; |
| 243 default: | |
| 244 s->bpp = -1; | |
| 245 } | |
| 246 } | |
| 4186 | 247 switch(s->bpp){ |
| 248 case 8: | |
| 249 s->avctx->pix_fmt = PIX_FMT_PAL8; | |
| 250 break; | |
| 251 case 24: | |
| 252 s->avctx->pix_fmt = PIX_FMT_RGB24; | |
| 253 break; | |
| 254 default: | |
| 255 av_log(s->avctx, AV_LOG_ERROR, "Only RGB24 is supported (this bpp=%i)\n", s->bpp); | |
| 4013 | 256 return -1; |
| 257 } | |
| 4186 | 258 if(s->width != s->avctx->width || s->height != s->avctx->height){ |
| 259 if(avcodec_check_dimensions(s->avctx, s->width, s->height)) | |
| 260 return -1; | |
| 261 avcodec_set_dimensions(s->avctx, s->width, s->height); | |
| 262 } | |
| 263 if(s->picture.data[0]) | |
| 264 s->avctx->release_buffer(s->avctx, &s->picture); | |
| 265 if(s->avctx->get_buffer(s->avctx, &s->picture) < 0){ | |
| 266 av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n"); | |
| 267 return -1; | |
| 268 } | |
| 269 if(s->bpp == 8){ | |
| 270 /* make default grayscale pal */ | |
| 271 pal = s->picture.data[1]; | |
| 272 for(i = 0; i < 256; i++) | |
| 273 pal[i] = i * 0x010101; | |
| 274 } | |
| 4013 | 275 break; |
| 276 case TIFF_COMPR: | |
| 277 s->compr = value; | |
| 278 switch(s->compr){ | |
| 279 case TIFF_RAW: | |
| 280 case TIFF_PACKBITS: | |
|
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
281 case TIFF_LZW: |
| 4013 | 282 break; |
| 283 case TIFF_DEFLATE: | |
| 284 case TIFF_ADOBE_DEFLATE: | |
| 285 #ifdef CONFIG_ZLIB | |
| 286 break; | |
| 287 #else | |
| 288 av_log(s->avctx, AV_LOG_ERROR, "Deflate: ZLib not compiled in\n"); | |
| 289 return -1; | |
| 290 #endif | |
| 291 case TIFF_G3: | |
| 292 av_log(s->avctx, AV_LOG_ERROR, "CCITT G3 compression is not supported\n"); | |
| 293 return -1; | |
| 294 case TIFF_G4: | |
| 295 av_log(s->avctx, AV_LOG_ERROR, "CCITT G4 compression is not supported\n"); | |
| 296 return -1; | |
| 297 case TIFF_CCITT_RLE: | |
| 298 av_log(s->avctx, AV_LOG_ERROR, "CCITT RLE compression is not supported\n"); | |
| 299 return -1; | |
| 4184 | 300 case TIFF_JPEG: |
| 301 case TIFF_NEWJPEG: | |
| 302 av_log(s->avctx, AV_LOG_ERROR, "JPEG compression is not supported\n"); | |
| 303 return -1; | |
| 4013 | 304 default: |
| 305 av_log(s->avctx, AV_LOG_ERROR, "Unknown compression method %i\n", s->compr); | |
| 306 return -1; | |
| 307 } | |
| 308 break; | |
| 309 case TIFF_ROWSPERSTRIP: | |
| 4185 | 310 if(value < 1){ |
| 4013 | 311 av_log(s->avctx, AV_LOG_ERROR, "Incorrect value of rows per strip\n"); |
| 312 return -1; | |
| 313 } | |
| 314 s->rps = value; | |
| 315 break; | |
| 316 case TIFF_STRIP_OFFS: | |
| 317 if(count == 1){ | |
| 318 s->stripdata = NULL; | |
| 319 s->stripoff = value; | |
| 320 }else | |
| 321 s->stripdata = start + off; | |
| 322 s->strips = count; | |
| 323 s->sot = type; | |
| 324 if(s->stripdata > end_buf){ | |
| 325 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n"); | |
| 326 return -1; | |
| 327 } | |
| 328 break; | |
| 329 case TIFF_STRIP_SIZE: | |
| 330 if(count == 1){ | |
| 331 s->stripsizes = NULL; | |
| 332 s->stripsize = value; | |
| 333 s->strips = 1; | |
| 334 }else{ | |
| 335 s->stripsizes = start + off; | |
| 336 } | |
| 337 s->strips = count; | |
| 338 if(s->stripsizes > end_buf){ | |
| 339 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n"); | |
| 340 return -1; | |
| 341 } | |
| 342 if(!pic->data[0]){ | |
| 343 av_log(s->avctx, AV_LOG_ERROR, "Picture initialization missing\n"); | |
| 344 return -1; | |
| 345 } | |
| 346 /* now we have the data and may start decoding */ | |
| 347 stride = pic->linesize[0]; | |
| 348 dst = pic->data[0]; | |
| 349 for(i = 0; i < s->height; i += s->rps){ | |
| 350 if(s->stripsizes) | |
| 351 ssize = tget(&s->stripsizes, type, s->le); | |
| 352 else | |
| 353 ssize = s->stripsize; | |
| 354 | |
| 355 if(s->stripdata){ | |
| 356 soff = tget(&s->stripdata, s->sot, s->le); | |
| 357 }else | |
| 358 soff = s->stripoff; | |
| 359 src = start + soff; | |
| 360 if(tiff_unpack_strip(s, dst, stride, src, ssize, FFMIN(s->rps, s->height - i)) < 0) | |
| 361 break; | |
| 362 dst += s->rps * stride; | |
| 363 } | |
| 364 break; | |
| 365 case TIFF_PREDICTOR: | |
| 366 if(!pic->data[0]){ | |
| 367 av_log(s->avctx, AV_LOG_ERROR, "Picture initialization missing\n"); | |
| 368 return -1; | |
| 369 } | |
| 370 if(value == 2){ | |
| 4079 | 371 src = pic->data[0]; |
| 4013 | 372 stride = pic->linesize[0]; |
| 373 soff = s->bpp >> 3; | |
| 374 ssize = s->width * soff; | |
| 375 for(i = 0; i < s->height; i++) { | |
| 376 for(j = soff; j < ssize; j++) | |
| 377 src[j] += src[j - soff]; | |
| 378 src += stride; | |
| 379 } | |
| 380 } | |
| 381 break; | |
| 4186 | 382 case TIFF_INVERT: |
| 383 switch(value){ | |
| 384 case 0: | |
| 385 s->invert = 1; | |
| 386 break; | |
| 387 case 1: | |
| 388 s->invert = 0; | |
| 389 break; | |
| 390 } | |
| 391 break; | |
| 392 case TIFF_PAL: | |
| 393 if(s->avctx->pix_fmt != PIX_FMT_PAL8){ | |
| 394 av_log(s->avctx, AV_LOG_ERROR, "Palette met but this is not palettized format\n"); | |
| 395 return -1; | |
| 396 } | |
| 397 pal = s->picture.data[1]; | |
| 398 off = (type == TIFF_SHORT) ? 2 : 1; | |
| 399 rp = buf; | |
| 400 gp = buf + count / 3 * off; | |
| 401 bp = buf + count / 3 * off * 2; | |
| 402 off = (type == TIFF_SHORT) ? 8 : 0; | |
| 403 for(i = 0; i < count / 3; i++){ | |
| 404 j = (tget(&rp, type, s->le) >> off) << 16; | |
| 405 j |= (tget(&gp, type, s->le) >> off) << 8; | |
| 406 j |= tget(&bp, type, s->le) >> off; | |
| 407 pal[i] = j; | |
| 408 } | |
| 4013 | 409 } |
| 410 return 0; | |
| 411 } | |
| 412 | |
| 413 static int decode_frame(AVCodecContext *avctx, | |
| 414 void *data, int *data_size, | |
| 415 uint8_t *buf, int buf_size) | |
| 416 { | |
| 417 TiffContext * const s = avctx->priv_data; | |
| 418 AVFrame *picture = data; | |
| 419 AVFrame * const p= (AVFrame*)&s->picture; | |
| 420 uint8_t *orig_buf = buf, *end_buf = buf + buf_size; | |
| 421 int id, le, off; | |
| 422 int i, entries; | |
| 423 | |
| 424 //parse image header | |
| 425 id = LE_16(buf); buf += 2; | |
| 426 if(id == 0x4949) le = 1; | |
| 427 else if(id == 0x4D4D) le = 0; | |
| 428 else{ | |
| 429 av_log(avctx, AV_LOG_ERROR, "TIFF header not found\n"); | |
| 430 return -1; | |
| 431 } | |
| 432 s->le = le; | |
| 4186 | 433 s->invert = 0; |
| 4013 | 434 // As TIFF 6.0 specification puts it "An arbitrary but carefully chosen number |
| 435 // that further identifies the file as a TIFF file" | |
| 436 if(tget_short(&buf, le) != 42){ | |
| 437 av_log(avctx, AV_LOG_ERROR, "The answer to life, universe and everything is not correct!\n"); | |
| 438 return -1; | |
| 439 } | |
| 440 /* parse image file directory */ | |
| 441 off = tget_long(&buf, le); | |
| 442 if(orig_buf + off + 14 >= end_buf){ | |
| 443 av_log(avctx, AV_LOG_ERROR, "IFD offset is greater than image size\n"); | |
| 444 return -1; | |
| 445 } | |
| 446 buf = orig_buf + off; | |
| 447 entries = tget_short(&buf, le); | |
| 448 for(i = 0; i < entries; i++){ | |
| 449 if(tiff_decode_tag(s, orig_buf, buf, end_buf, p) < 0) | |
| 450 return -1; | |
| 451 buf += 12; | |
| 452 } | |
| 453 | |
| 4186 | 454 if(s->invert){ |
| 455 uint8_t *src; | |
| 456 int j; | |
| 457 | |
| 458 src = s->picture.data[0]; | |
| 459 for(j = 0; j < s->height; j++){ | |
| 460 for(i = 0; i < s->picture.linesize[0]; i++) | |
| 461 src[i] = 255 - src[i]; | |
| 462 src += s->picture.linesize[0]; | |
| 463 } | |
| 464 } | |
| 4013 | 465 *picture= *(AVFrame*)&s->picture; |
| 466 *data_size = sizeof(AVPicture); | |
| 467 | |
| 468 return buf_size; | |
| 469 } | |
| 470 | |
| 471 static int tiff_init(AVCodecContext *avctx){ | |
| 472 TiffContext *s = avctx->priv_data; | |
| 473 | |
| 474 s->width = 0; | |
| 475 s->height = 0; | |
| 476 s->avctx = avctx; | |
| 477 avcodec_get_frame_defaults((AVFrame*)&s->picture); | |
| 478 avctx->coded_frame= (AVFrame*)&s->picture; | |
| 479 s->picture.data[0] = NULL; | |
|
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
480 ff_lzw_decode_open(&s->lzw); |
| 4013 | 481 |
| 482 return 0; | |
| 483 } | |
| 484 | |
| 485 static int tiff_end(AVCodecContext *avctx) | |
| 486 { | |
| 487 TiffContext * const s = avctx->priv_data; | |
| 488 | |
|
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
489 ff_lzw_decode_close(&s->lzw); |
| 4013 | 490 if(s->picture.data[0]) |
| 491 avctx->release_buffer(avctx, &s->picture); | |
| 492 return 0; | |
| 493 } | |
| 494 | |
| 495 AVCodec tiff_decoder = { | |
| 496 "tiff", | |
| 497 CODEC_TYPE_VIDEO, | |
| 498 CODEC_ID_TIFF, | |
| 499 sizeof(TiffContext), | |
| 500 tiff_init, | |
| 501 NULL, | |
| 502 tiff_end, | |
| 503 decode_frame, | |
| 504 0, | |
| 505 NULL | |
| 506 }; |
