Mercurial > libavcodec.hg
annotate tiff.c @ 7058:819e52ba3125 libavcodec
simplify
author | michael |
---|---|
date | Tue, 17 Jun 2008 13:46:59 +0000 |
parents | e943e1409077 |
children | 3bbfd02865d7 |
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 */ | |
4782
bca8924ed36c
Add some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.
diego
parents:
4774
diff
changeset
|
21 |
bca8924ed36c
Add some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.
diego
parents:
4774
diff
changeset
|
22 /** |
bca8924ed36c
Add some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.
diego
parents:
4774
diff
changeset
|
23 * TIFF image decoder |
bca8924ed36c
Add some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.
diego
parents:
4774
diff
changeset
|
24 * @file tiff.c |
bca8924ed36c
Add some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.
diego
parents:
4774
diff
changeset
|
25 * @author Konstantin Shishkov |
bca8924ed36c
Add some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.
diego
parents:
4774
diff
changeset
|
26 */ |
4013 | 27 #include "avcodec.h" |
28 #ifdef CONFIG_ZLIB | |
29 #include <zlib.h> | |
30 #endif | |
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
31 #include "lzw.h" |
4774
0860efc2f02b
tiff encoder by (Bartlomiej Wolowiec b.wolowiec students mimuw edu pl)
michael
parents:
4405
diff
changeset
|
32 #include "tiff.h" |
4013 | 33 |
4190 | 34 |
4013 | 35 typedef struct TiffContext { |
36 AVCodecContext *avctx; | |
37 AVFrame picture; | |
38 | |
39 int width, height; | |
40 unsigned int bpp; | |
41 int le; | |
42 int compr; | |
4186 | 43 int invert; |
4013 | 44 |
45 int strips, rps; | |
46 int sot; | |
6256 | 47 const uint8_t* stripdata; |
48 const uint8_t* stripsizes; | |
4013 | 49 int stripsize, stripoff; |
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
50 LZWState *lzw; |
4013 | 51 } TiffContext; |
52 | |
6256 | 53 static int tget_short(const uint8_t **p, int le){ |
4364 | 54 int v = le ? AV_RL16(*p) : AV_RB16(*p); |
4013 | 55 *p += 2; |
56 return v; | |
57 } | |
58 | |
6256 | 59 static int tget_long(const uint8_t **p, int le){ |
4364 | 60 int v = le ? AV_RL32(*p) : AV_RB32(*p); |
4013 | 61 *p += 4; |
62 return v; | |
63 } | |
64 | |
6256 | 65 static int tget(const uint8_t **p, int type, int le){ |
4013 | 66 switch(type){ |
67 case TIFF_BYTE : return *(*p)++; | |
68 case TIFF_SHORT: return tget_short(p, le); | |
69 case TIFF_LONG : return tget_long (p, le); | |
70 default : return -1; | |
71 } | |
72 } | |
73 | |
6256 | 74 static int tiff_unpack_strip(TiffContext *s, uint8_t* dst, int stride, const uint8_t *src, int size, int lines){ |
4013 | 75 int c, line, pixels, code; |
6256 | 76 const uint8_t *ssrc = src; |
4013 | 77 int width = s->width * (s->bpp / 8); |
78 #ifdef CONFIG_ZLIB | |
79 uint8_t *zbuf; unsigned long outlen; | |
80 | |
81 if(s->compr == TIFF_DEFLATE || s->compr == TIFF_ADOBE_DEFLATE){ | |
82 outlen = width * lines; | |
83 zbuf = av_malloc(outlen); | |
84 if(uncompress(zbuf, &outlen, src, size) != Z_OK){ | |
85 av_log(s->avctx, AV_LOG_ERROR, "Uncompressing failed (%lu of %lu)\n", outlen, (unsigned long)width * lines); | |
86 av_free(zbuf); | |
87 return -1; | |
88 } | |
89 src = zbuf; | |
90 for(line = 0; line < lines; line++){ | |
91 memcpy(dst, src, width); | |
92 dst += stride; | |
93 src += width; | |
94 } | |
95 av_free(zbuf); | |
96 return 0; | |
97 } | |
98 #endif | |
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
99 if(s->compr == TIFF_LZW){ |
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
100 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
|
101 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
|
102 return -1; |
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
103 } |
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
104 } |
4013 | 105 for(line = 0; line < lines; line++){ |
106 if(src - ssrc > size){ | |
107 av_log(s->avctx, AV_LOG_ERROR, "Source data overread\n"); | |
108 return -1; | |
109 } | |
110 switch(s->compr){ | |
111 case TIFF_RAW: | |
112 memcpy(dst, src, s->width * (s->bpp / 8)); | |
113 src += s->width * (s->bpp / 8); | |
114 break; | |
115 case TIFF_PACKBITS: | |
116 for(pixels = 0; pixels < width;){ | |
117 code = (int8_t)*src++; | |
118 if(code >= 0){ | |
119 code++; | |
120 if(pixels + code > width){ | |
121 av_log(s->avctx, AV_LOG_ERROR, "Copy went out of bounds\n"); | |
122 return -1; | |
123 } | |
124 memcpy(dst + pixels, src, code); | |
125 src += code; | |
126 pixels += code; | |
127 }else if(code != -128){ // -127..-1 | |
128 code = (-code) + 1; | |
129 if(pixels + code > width){ | |
130 av_log(s->avctx, AV_LOG_ERROR, "Run went out of bounds\n"); | |
131 return -1; | |
132 } | |
133 c = *src++; | |
134 memset(dst + pixels, c, code); | |
135 pixels += code; | |
136 } | |
137 } | |
138 break; | |
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
139 case TIFF_LZW: |
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
140 pixels = ff_lzw_decode(s->lzw, dst, width); |
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
141 if(pixels < width){ |
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
142 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
|
143 return -1; |
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
144 } |
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
145 break; |
4013 | 146 } |
147 dst += stride; | |
148 } | |
149 return 0; | |
150 } | |
151 | |
152 | |
6256 | 153 static int tiff_decode_tag(TiffContext *s, const uint8_t *start, const uint8_t *buf, const uint8_t *end_buf, AVFrame *pic) |
4013 | 154 { |
155 int tag, type, count, off, value = 0; | |
6256 | 156 const uint8_t *src; |
157 uint8_t *dst; | |
4013 | 158 int i, j, ssize, soff, stride; |
5261 | 159 uint32_t *pal; |
6256 | 160 const uint8_t *rp, *gp, *bp; |
4013 | 161 |
162 tag = tget_short(&buf, s->le); | |
163 type = tget_short(&buf, s->le); | |
164 count = tget_long(&buf, s->le); | |
165 off = tget_long(&buf, s->le); | |
166 | |
167 if(count == 1){ | |
168 switch(type){ | |
169 case TIFF_BYTE: | |
170 case TIFF_SHORT: | |
171 buf -= 4; | |
172 value = tget(&buf, type, s->le); | |
173 buf = NULL; | |
174 break; | |
175 case TIFF_LONG: | |
176 value = off; | |
177 buf = NULL; | |
178 break; | |
179 default: | |
180 value = -1; | |
181 buf = start + off; | |
182 } | |
4190 | 183 }else if(type_sizes[type] * count <= 4){ |
184 buf -= 4; | |
4013 | 185 }else{ |
186 buf = start + off; | |
187 } | |
188 | |
189 if(buf && (buf < start || buf > end_buf)){ | |
190 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n"); | |
191 return -1; | |
192 } | |
193 | |
194 switch(tag){ | |
195 case TIFF_WIDTH: | |
196 s->width = value; | |
197 break; | |
198 case TIFF_HEIGHT: | |
199 s->height = value; | |
200 break; | |
201 case TIFF_BPP: | |
202 if(count == 1) s->bpp = value; | |
203 else{ | |
204 switch(type){ | |
205 case TIFF_BYTE: | |
4183 | 206 s->bpp = (off & 0xFF) + ((off >> 8) & 0xFF) + ((off >> 16) & 0xFF) + ((off >> 24) & 0xFF); |
4013 | 207 break; |
208 case TIFF_SHORT: | |
209 case TIFF_LONG: | |
4183 | 210 s->bpp = 0; |
211 for(i = 0; i < count; i++) s->bpp += tget(&buf, type, s->le); | |
4013 | 212 break; |
213 default: | |
214 s->bpp = -1; | |
215 } | |
216 } | |
4186 | 217 switch(s->bpp){ |
218 case 8: | |
219 s->avctx->pix_fmt = PIX_FMT_PAL8; | |
220 break; | |
221 case 24: | |
222 s->avctx->pix_fmt = PIX_FMT_RGB24; | |
223 break; | |
4193 | 224 case 16: |
225 if(count == 1){ | |
226 s->avctx->pix_fmt = PIX_FMT_GRAY16BE; | |
227 }else{ | |
228 av_log(s->avctx, AV_LOG_ERROR, "This format is not supported (bpp=%i)\n", s->bpp); | |
229 return -1; | |
230 } | |
231 break; | |
4186 | 232 default: |
4191 | 233 av_log(s->avctx, AV_LOG_ERROR, "This format is not supported (bpp=%i)\n", s->bpp); |
4013 | 234 return -1; |
235 } | |
4186 | 236 if(s->width != s->avctx->width || s->height != s->avctx->height){ |
237 if(avcodec_check_dimensions(s->avctx, s->width, s->height)) | |
238 return -1; | |
239 avcodec_set_dimensions(s->avctx, s->width, s->height); | |
240 } | |
241 if(s->picture.data[0]) | |
242 s->avctx->release_buffer(s->avctx, &s->picture); | |
243 if(s->avctx->get_buffer(s->avctx, &s->picture) < 0){ | |
244 av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n"); | |
245 return -1; | |
246 } | |
247 if(s->bpp == 8){ | |
248 /* make default grayscale pal */ | |
5261 | 249 pal = (uint32_t *) s->picture.data[1]; |
4186 | 250 for(i = 0; i < 256; i++) |
251 pal[i] = i * 0x010101; | |
252 } | |
4013 | 253 break; |
254 case TIFF_COMPR: | |
255 s->compr = value; | |
256 switch(s->compr){ | |
257 case TIFF_RAW: | |
258 case TIFF_PACKBITS: | |
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
259 case TIFF_LZW: |
4013 | 260 break; |
261 case TIFF_DEFLATE: | |
262 case TIFF_ADOBE_DEFLATE: | |
263 #ifdef CONFIG_ZLIB | |
264 break; | |
265 #else | |
266 av_log(s->avctx, AV_LOG_ERROR, "Deflate: ZLib not compiled in\n"); | |
267 return -1; | |
268 #endif | |
269 case TIFF_G3: | |
270 av_log(s->avctx, AV_LOG_ERROR, "CCITT G3 compression is not supported\n"); | |
271 return -1; | |
272 case TIFF_G4: | |
273 av_log(s->avctx, AV_LOG_ERROR, "CCITT G4 compression is not supported\n"); | |
274 return -1; | |
275 case TIFF_CCITT_RLE: | |
276 av_log(s->avctx, AV_LOG_ERROR, "CCITT RLE compression is not supported\n"); | |
277 return -1; | |
4184 | 278 case TIFF_JPEG: |
279 case TIFF_NEWJPEG: | |
280 av_log(s->avctx, AV_LOG_ERROR, "JPEG compression is not supported\n"); | |
281 return -1; | |
4013 | 282 default: |
283 av_log(s->avctx, AV_LOG_ERROR, "Unknown compression method %i\n", s->compr); | |
284 return -1; | |
285 } | |
286 break; | |
287 case TIFF_ROWSPERSTRIP: | |
4185 | 288 if(value < 1){ |
4013 | 289 av_log(s->avctx, AV_LOG_ERROR, "Incorrect value of rows per strip\n"); |
290 return -1; | |
291 } | |
292 s->rps = value; | |
293 break; | |
294 case TIFF_STRIP_OFFS: | |
295 if(count == 1){ | |
296 s->stripdata = NULL; | |
297 s->stripoff = value; | |
298 }else | |
299 s->stripdata = start + off; | |
300 s->strips = count; | |
4405
48952197d91f
Some TIFFs do not set rows per strip for single strip.
kostya
parents:
4364
diff
changeset
|
301 if(s->strips == 1) s->rps = s->height; |
4013 | 302 s->sot = type; |
303 if(s->stripdata > end_buf){ | |
304 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n"); | |
305 return -1; | |
306 } | |
307 break; | |
308 case TIFF_STRIP_SIZE: | |
309 if(count == 1){ | |
310 s->stripsizes = NULL; | |
311 s->stripsize = value; | |
312 s->strips = 1; | |
313 }else{ | |
314 s->stripsizes = start + off; | |
315 } | |
316 s->strips = count; | |
317 if(s->stripsizes > end_buf){ | |
318 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n"); | |
319 return -1; | |
320 } | |
321 if(!pic->data[0]){ | |
322 av_log(s->avctx, AV_LOG_ERROR, "Picture initialization missing\n"); | |
323 return -1; | |
324 } | |
325 /* now we have the data and may start decoding */ | |
326 stride = pic->linesize[0]; | |
327 dst = pic->data[0]; | |
328 for(i = 0; i < s->height; i += s->rps){ | |
329 if(s->stripsizes) | |
330 ssize = tget(&s->stripsizes, type, s->le); | |
331 else | |
332 ssize = s->stripsize; | |
333 | |
334 if(s->stripdata){ | |
335 soff = tget(&s->stripdata, s->sot, s->le); | |
336 }else | |
337 soff = s->stripoff; | |
338 src = start + soff; | |
339 if(tiff_unpack_strip(s, dst, stride, src, ssize, FFMIN(s->rps, s->height - i)) < 0) | |
340 break; | |
341 dst += s->rps * stride; | |
342 } | |
343 break; | |
344 case TIFF_PREDICTOR: | |
345 if(!pic->data[0]){ | |
346 av_log(s->avctx, AV_LOG_ERROR, "Picture initialization missing\n"); | |
347 return -1; | |
348 } | |
349 if(value == 2){ | |
6256 | 350 dst = pic->data[0]; |
4013 | 351 stride = pic->linesize[0]; |
352 soff = s->bpp >> 3; | |
353 ssize = s->width * soff; | |
354 for(i = 0; i < s->height; i++) { | |
355 for(j = soff; j < ssize; j++) | |
6256 | 356 dst[j] += dst[j - soff]; |
357 dst += stride; | |
4013 | 358 } |
359 } | |
360 break; | |
4186 | 361 case TIFF_INVERT: |
362 switch(value){ | |
363 case 0: | |
364 s->invert = 1; | |
365 break; | |
366 case 1: | |
367 s->invert = 0; | |
368 break; | |
4187
46f12596304f
Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents:
4186
diff
changeset
|
369 case 2: |
46f12596304f
Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents:
4186
diff
changeset
|
370 case 3: |
46f12596304f
Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents:
4186
diff
changeset
|
371 break; |
46f12596304f
Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents:
4186
diff
changeset
|
372 default: |
46f12596304f
Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents:
4186
diff
changeset
|
373 av_log(s->avctx, AV_LOG_ERROR, "Color mode %d is not supported\n", value); |
46f12596304f
Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents:
4186
diff
changeset
|
374 return -1; |
4186 | 375 } |
376 break; | |
377 case TIFF_PAL: | |
378 if(s->avctx->pix_fmt != PIX_FMT_PAL8){ | |
379 av_log(s->avctx, AV_LOG_ERROR, "Palette met but this is not palettized format\n"); | |
380 return -1; | |
381 } | |
5261 | 382 pal = (uint32_t *) s->picture.data[1]; |
4190 | 383 off = type_sizes[type]; |
4186 | 384 rp = buf; |
385 gp = buf + count / 3 * off; | |
386 bp = buf + count / 3 * off * 2; | |
4190 | 387 off = (type_sizes[type] - 1) << 3; |
4186 | 388 for(i = 0; i < count / 3; i++){ |
389 j = (tget(&rp, type, s->le) >> off) << 16; | |
390 j |= (tget(&gp, type, s->le) >> off) << 8; | |
391 j |= tget(&bp, type, s->le) >> off; | |
392 pal[i] = j; | |
393 } | |
4192 | 394 break; |
395 case TIFF_PLANAR: | |
396 if(value == 2){ | |
397 av_log(s->avctx, AV_LOG_ERROR, "Planar format is not supported\n"); | |
398 return -1; | |
399 } | |
400 break; | |
4013 | 401 } |
402 return 0; | |
403 } | |
404 | |
405 static int decode_frame(AVCodecContext *avctx, | |
406 void *data, int *data_size, | |
6256 | 407 const uint8_t *buf, int buf_size) |
4013 | 408 { |
409 TiffContext * const s = avctx->priv_data; | |
410 AVFrame *picture = data; | |
411 AVFrame * const p= (AVFrame*)&s->picture; | |
6256 | 412 const uint8_t *orig_buf = buf, *end_buf = buf + buf_size; |
4013 | 413 int id, le, off; |
414 int i, entries; | |
415 | |
416 //parse image header | |
4364 | 417 id = AV_RL16(buf); buf += 2; |
4013 | 418 if(id == 0x4949) le = 1; |
419 else if(id == 0x4D4D) le = 0; | |
420 else{ | |
421 av_log(avctx, AV_LOG_ERROR, "TIFF header not found\n"); | |
422 return -1; | |
423 } | |
424 s->le = le; | |
4186 | 425 s->invert = 0; |
5962 | 426 s->compr = TIFF_RAW; |
4013 | 427 // As TIFF 6.0 specification puts it "An arbitrary but carefully chosen number |
428 // that further identifies the file as a TIFF file" | |
429 if(tget_short(&buf, le) != 42){ | |
430 av_log(avctx, AV_LOG_ERROR, "The answer to life, universe and everything is not correct!\n"); | |
431 return -1; | |
432 } | |
433 /* parse image file directory */ | |
434 off = tget_long(&buf, le); | |
435 if(orig_buf + off + 14 >= end_buf){ | |
436 av_log(avctx, AV_LOG_ERROR, "IFD offset is greater than image size\n"); | |
437 return -1; | |
438 } | |
439 buf = orig_buf + off; | |
440 entries = tget_short(&buf, le); | |
441 for(i = 0; i < entries; i++){ | |
442 if(tiff_decode_tag(s, orig_buf, buf, end_buf, p) < 0) | |
443 return -1; | |
444 buf += 12; | |
445 } | |
446 | |
4186 | 447 if(s->invert){ |
448 uint8_t *src; | |
449 int j; | |
450 | |
451 src = s->picture.data[0]; | |
452 for(j = 0; j < s->height; j++){ | |
453 for(i = 0; i < s->picture.linesize[0]; i++) | |
454 src[i] = 255 - src[i]; | |
455 src += s->picture.linesize[0]; | |
456 } | |
457 } | |
4013 | 458 *picture= *(AVFrame*)&s->picture; |
459 *data_size = sizeof(AVPicture); | |
460 | |
461 return buf_size; | |
462 } | |
463 | |
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6256
diff
changeset
|
464 static av_cold int tiff_init(AVCodecContext *avctx){ |
4013 | 465 TiffContext *s = avctx->priv_data; |
466 | |
467 s->width = 0; | |
468 s->height = 0; | |
469 s->avctx = avctx; | |
470 avcodec_get_frame_defaults((AVFrame*)&s->picture); | |
471 avctx->coded_frame= (AVFrame*)&s->picture; | |
472 s->picture.data[0] = NULL; | |
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
473 ff_lzw_decode_open(&s->lzw); |
4013 | 474 |
475 return 0; | |
476 } | |
477 | |
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6256
diff
changeset
|
478 static av_cold int tiff_end(AVCodecContext *avctx) |
4013 | 479 { |
480 TiffContext * const s = avctx->priv_data; | |
481 | |
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
482 ff_lzw_decode_close(&s->lzw); |
4013 | 483 if(s->picture.data[0]) |
484 avctx->release_buffer(avctx, &s->picture); | |
485 return 0; | |
486 } | |
487 | |
488 AVCodec tiff_decoder = { | |
489 "tiff", | |
490 CODEC_TYPE_VIDEO, | |
491 CODEC_ID_TIFF, | |
492 sizeof(TiffContext), | |
493 tiff_init, | |
494 NULL, | |
495 tiff_end, | |
496 decode_frame, | |
497 0, | |
6722 | 498 NULL, |
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6722
diff
changeset
|
499 .long_name = NULL_IF_CONFIG_SMALL("TIFF image"), |
4013 | 500 }; |