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