Mercurial > libavcodec.hg
annotate tiff.c @ 10303:8a49525f2b1e libavcodec
Make TIFF decoder load compression options only for corresponding codec
| author | kostya |
|---|---|
| date | Mon, 28 Sep 2009 05:15:27 +0000 |
| parents | a1654cd1b5b9 |
| children | 370d05e51d90 |
| 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 |
|
8718
e9d9d946f213
Use full internal pathname in doxygen @file directives.
diego
parents:
8590
diff
changeset
|
24 * @file libavcodec/tiff.c |
|
4782
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" |
| 8590 | 28 #if CONFIG_ZLIB |
| 4013 | 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" |
| 8491 | 33 #include "faxcompr.h" |
| 4013 | 34 |
| 4190 | 35 |
| 4013 | 36 typedef struct TiffContext { |
| 37 AVCodecContext *avctx; | |
| 38 AVFrame picture; | |
| 39 | |
| 40 int width, height; | |
| 41 unsigned int bpp; | |
| 42 int le; | |
| 43 int compr; | |
| 4186 | 44 int invert; |
| 8491 | 45 int fax_opts; |
|
8429
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
46 int predictor; |
|
10264
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
47 int fill_order; |
| 4013 | 48 |
|
8429
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
49 int strips, rps, sstype; |
| 4013 | 50 int sot; |
| 6256 | 51 const uint8_t* stripdata; |
| 52 const uint8_t* stripsizes; | |
| 4013 | 53 int stripsize, stripoff; |
|
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
54 LZWState *lzw; |
| 4013 | 55 } TiffContext; |
| 56 | |
| 6256 | 57 static int tget_short(const uint8_t **p, int le){ |
| 4364 | 58 int v = le ? AV_RL16(*p) : AV_RB16(*p); |
| 4013 | 59 *p += 2; |
| 60 return v; | |
| 61 } | |
| 62 | |
| 6256 | 63 static int tget_long(const uint8_t **p, int le){ |
| 4364 | 64 int v = le ? AV_RL32(*p) : AV_RB32(*p); |
| 4013 | 65 *p += 4; |
| 66 return v; | |
| 67 } | |
| 68 | |
| 6256 | 69 static int tget(const uint8_t **p, int type, int le){ |
| 4013 | 70 switch(type){ |
| 71 case TIFF_BYTE : return *(*p)++; | |
| 72 case TIFF_SHORT: return tget_short(p, le); | |
| 73 case TIFF_LONG : return tget_long (p, le); | |
| 74 default : return -1; | |
| 75 } | |
| 76 } | |
| 77 | |
|
10299
a1654cd1b5b9
Do not compile ZLib data uncompressing function in TIFF decoder when ZLib is
kostya
parents:
10296
diff
changeset
|
78 #if CONFIG_ZLIB |
|
10296
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
79 static int tiff_uncompress(uint8_t *dst, unsigned long *len, const uint8_t *src, int size) |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
80 { |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
81 z_stream zstream; |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
82 int zret; |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
83 |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
84 memset(&zstream, 0, sizeof(zstream)); |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
85 zstream.next_in = src; |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
86 zstream.avail_in = size; |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
87 zstream.next_out = dst; |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
88 zstream.avail_out = *len; |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
89 zret = inflateInit(&zstream); |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
90 if (zret != Z_OK) { |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
91 av_log(NULL, AV_LOG_ERROR, "Inflate init error: %d\n", zret); |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
92 return zret; |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
93 } |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
94 zret = inflate(&zstream, Z_SYNC_FLUSH); |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
95 inflateEnd(&zstream); |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
96 *len = zstream.total_out; |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
97 return zret == Z_STREAM_END ? Z_OK : zret; |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
98 } |
|
10299
a1654cd1b5b9
Do not compile ZLib data uncompressing function in TIFF decoder when ZLib is
kostya
parents:
10296
diff
changeset
|
99 #endif |
|
10296
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
100 |
| 6256 | 101 static int tiff_unpack_strip(TiffContext *s, uint8_t* dst, int stride, const uint8_t *src, int size, int lines){ |
| 4013 | 102 int c, line, pixels, code; |
| 6256 | 103 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
|
104 int width = s->width * s->bpp >> 3; |
| 8590 | 105 #if CONFIG_ZLIB |
| 4013 | 106 uint8_t *zbuf; unsigned long outlen; |
| 107 | |
| 108 if(s->compr == TIFF_DEFLATE || s->compr == TIFF_ADOBE_DEFLATE){ | |
|
10296
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
109 int ret; |
| 4013 | 110 outlen = width * lines; |
| 111 zbuf = av_malloc(outlen); | |
|
10296
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
112 ret = tiff_uncompress(zbuf, &outlen, src, size); |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
113 if(ret != Z_OK){ |
|
a919d9583abd
Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,
kostya
parents:
10264
diff
changeset
|
114 av_log(s->avctx, AV_LOG_ERROR, "Uncompressing failed (%lu of %lu) with error %d\n", outlen, (unsigned long)width * lines, ret); |
| 4013 | 115 av_free(zbuf); |
| 116 return -1; | |
| 117 } | |
| 118 src = zbuf; | |
| 119 for(line = 0; line < lines; line++){ | |
| 120 memcpy(dst, src, width); | |
| 121 dst += stride; | |
| 122 src += width; | |
| 123 } | |
| 124 av_free(zbuf); | |
| 125 return 0; | |
| 126 } | |
| 127 #endif | |
|
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
128 if(s->compr == TIFF_LZW){ |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
129 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
|
130 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
|
131 return -1; |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
132 } |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
133 } |
| 8491 | 134 if(s->compr == TIFF_CCITT_RLE || s->compr == TIFF_G3 || s->compr == TIFF_G4){ |
| 135 int i, ret = 0; | |
| 136 uint8_t *src2 = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE); | |
| 137 | |
| 138 if(!src2 || (unsigned)size + FF_INPUT_BUFFER_PADDING_SIZE < (unsigned)size){ | |
| 139 av_log(s->avctx, AV_LOG_ERROR, "Error allocating temporary buffer\n"); | |
| 140 return -1; | |
| 141 } | |
|
10264
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
142 if(!s->fill_order){ |
|
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
143 memcpy(src2, src, size); |
|
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
144 }else{ |
|
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
145 for(i = 0; i < size; i++) |
|
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
146 src2[i] = ff_reverse[src[i]]; |
|
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
147 } |
| 8491 | 148 memset(src2+size, 0, FF_INPUT_BUFFER_PADDING_SIZE); |
| 149 if(s->compr == TIFF_G3 && !(s->fax_opts & 1)) | |
| 150 s->compr = TIFF_CCITT_RLE; | |
| 151 switch(s->compr){ | |
| 152 case TIFF_CCITT_RLE: | |
| 153 case TIFF_G3: | |
| 154 case TIFF_G4: | |
| 155 ret = ff_ccitt_unpack(s->avctx, src2, size, dst, lines, stride, s->compr); | |
| 156 break; | |
| 157 } | |
| 158 av_free(src2); | |
| 159 return ret; | |
| 160 } | |
| 4013 | 161 for(line = 0; line < lines; line++){ |
| 162 if(src - ssrc > size){ | |
| 163 av_log(s->avctx, AV_LOG_ERROR, "Source data overread\n"); | |
| 164 return -1; | |
| 165 } | |
| 166 switch(s->compr){ | |
| 167 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
|
168 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
|
169 src += width; |
| 4013 | 170 break; |
| 171 case TIFF_PACKBITS: | |
| 172 for(pixels = 0; pixels < width;){ | |
| 173 code = (int8_t)*src++; | |
| 174 if(code >= 0){ | |
| 175 code++; | |
| 176 if(pixels + code > width){ | |
| 177 av_log(s->avctx, AV_LOG_ERROR, "Copy went out of bounds\n"); | |
| 178 return -1; | |
| 179 } | |
| 180 memcpy(dst + pixels, src, code); | |
| 181 src += code; | |
| 182 pixels += code; | |
| 183 }else if(code != -128){ // -127..-1 | |
| 184 code = (-code) + 1; | |
| 185 if(pixels + code > width){ | |
| 186 av_log(s->avctx, AV_LOG_ERROR, "Run went out of bounds\n"); | |
| 187 return -1; | |
| 188 } | |
| 189 c = *src++; | |
| 190 memset(dst + pixels, c, code); | |
| 191 pixels += code; | |
| 192 } | |
| 193 } | |
| 194 break; | |
|
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
195 case TIFF_LZW: |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
196 pixels = ff_lzw_decode(s->lzw, dst, width); |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
197 if(pixels < width){ |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
198 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
|
199 return -1; |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
200 } |
|
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
201 break; |
| 4013 | 202 } |
| 203 dst += stride; | |
| 204 } | |
| 205 return 0; | |
| 206 } | |
| 207 | |
| 208 | |
|
8429
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
209 static int tiff_decode_tag(TiffContext *s, const uint8_t *start, const uint8_t *buf, const uint8_t *end_buf) |
| 4013 | 210 { |
| 211 int tag, type, count, off, value = 0; | |
|
8429
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
212 int i, j; |
| 5261 | 213 uint32_t *pal; |
| 6256 | 214 const uint8_t *rp, *gp, *bp; |
| 4013 | 215 |
| 216 tag = tget_short(&buf, s->le); | |
| 217 type = tget_short(&buf, s->le); | |
| 218 count = tget_long(&buf, s->le); | |
| 219 off = tget_long(&buf, s->le); | |
| 220 | |
| 221 if(count == 1){ | |
| 222 switch(type){ | |
| 223 case TIFF_BYTE: | |
| 224 case TIFF_SHORT: | |
| 225 buf -= 4; | |
| 226 value = tget(&buf, type, s->le); | |
| 227 buf = NULL; | |
| 228 break; | |
| 229 case TIFF_LONG: | |
| 230 value = off; | |
| 231 buf = NULL; | |
| 232 break; | |
|
8366
3bbfd02865d7
4l: TIFF stores short strings inside tag, do not interpret it is as an offset
kostya
parents:
7040
diff
changeset
|
233 case TIFF_STRING: |
|
3bbfd02865d7
4l: TIFF stores short strings inside tag, do not interpret it is as an offset
kostya
parents:
7040
diff
changeset
|
234 if(count <= 4){ |
|
3bbfd02865d7
4l: TIFF stores short strings inside tag, do not interpret it is as an offset
kostya
parents:
7040
diff
changeset
|
235 buf -= 4; |
|
3bbfd02865d7
4l: TIFF stores short strings inside tag, do not interpret it is as an offset
kostya
parents:
7040
diff
changeset
|
236 break; |
|
3bbfd02865d7
4l: TIFF stores short strings inside tag, do not interpret it is as an offset
kostya
parents:
7040
diff
changeset
|
237 } |
| 4013 | 238 default: |
| 239 value = -1; | |
| 240 buf = start + off; | |
| 241 } | |
| 4190 | 242 }else if(type_sizes[type] * count <= 4){ |
| 243 buf -= 4; | |
| 4013 | 244 }else{ |
| 245 buf = start + off; | |
| 246 } | |
| 247 | |
| 248 if(buf && (buf < start || buf > end_buf)){ | |
| 249 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n"); | |
| 250 return -1; | |
| 251 } | |
| 252 | |
| 253 switch(tag){ | |
| 254 case TIFF_WIDTH: | |
| 255 s->width = value; | |
| 256 break; | |
| 257 case TIFF_HEIGHT: | |
| 258 s->height = value; | |
| 259 break; | |
| 260 case TIFF_BPP: | |
| 261 if(count == 1) s->bpp = value; | |
| 262 else{ | |
| 263 switch(type){ | |
| 264 case TIFF_BYTE: | |
| 4183 | 265 s->bpp = (off & 0xFF) + ((off >> 8) & 0xFF) + ((off >> 16) & 0xFF) + ((off >> 24) & 0xFF); |
| 4013 | 266 break; |
| 267 case TIFF_SHORT: | |
| 268 case TIFF_LONG: | |
| 4183 | 269 s->bpp = 0; |
| 270 for(i = 0; i < count; i++) s->bpp += tget(&buf, type, s->le); | |
| 4013 | 271 break; |
| 272 default: | |
| 273 s->bpp = -1; | |
| 274 } | |
| 275 } | |
|
9784
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
276 if(count > 4){ |
|
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
277 av_log(s->avctx, AV_LOG_ERROR, "This format is not supported (bpp=%d, %d components)\n", s->bpp, count); |
|
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
278 return -1; |
|
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
279 } |
|
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
280 switch(s->bpp*10 + count){ |
|
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
281 case 11: |
| 8427 | 282 s->avctx->pix_fmt = PIX_FMT_MONOBLACK; |
| 283 break; | |
|
9784
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
284 case 81: |
| 4186 | 285 s->avctx->pix_fmt = PIX_FMT_PAL8; |
| 286 break; | |
|
9784
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
287 case 243: |
| 4186 | 288 s->avctx->pix_fmt = PIX_FMT_RGB24; |
| 289 break; | |
|
9784
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
290 case 161: |
|
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
291 s->avctx->pix_fmt = PIX_FMT_GRAY16BE; |
| 4193 | 292 break; |
|
9784
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
293 case 324: |
|
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
294 s->avctx->pix_fmt = PIX_FMT_RGBA; |
|
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
295 break; |
|
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
296 case 483: |
|
2142607ddc2e
Check combined depth and number of components in TIFF decoder, thus eliminating
kostya
parents:
9611
diff
changeset
|
297 s->avctx->pix_fmt = s->le ? PIX_FMT_RGB48LE : PIX_FMT_RGB48BE; |
|
9611
8074df653392
Add 32-bit RGB support to TIFF decoder and extend a bit 'unsupported format' message
kostya
parents:
9553
diff
changeset
|
298 break; |
| 4186 | 299 default: |
|
9611
8074df653392
Add 32-bit RGB support to TIFF decoder and extend a bit 'unsupported format' message
kostya
parents:
9553
diff
changeset
|
300 av_log(s->avctx, AV_LOG_ERROR, "This format is not supported (bpp=%d, %d components)\n", s->bpp, count); |
| 4013 | 301 return -1; |
| 302 } | |
| 4186 | 303 if(s->width != s->avctx->width || s->height != s->avctx->height){ |
| 304 if(avcodec_check_dimensions(s->avctx, s->width, s->height)) | |
| 305 return -1; | |
| 306 avcodec_set_dimensions(s->avctx, s->width, s->height); | |
| 307 } | |
| 308 if(s->picture.data[0]) | |
| 309 s->avctx->release_buffer(s->avctx, &s->picture); | |
| 310 if(s->avctx->get_buffer(s->avctx, &s->picture) < 0){ | |
| 311 av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n"); | |
| 312 return -1; | |
| 313 } | |
| 314 if(s->bpp == 8){ | |
| 315 /* make default grayscale pal */ | |
| 5261 | 316 pal = (uint32_t *) s->picture.data[1]; |
| 4186 | 317 for(i = 0; i < 256; i++) |
| 318 pal[i] = i * 0x010101; | |
| 319 } | |
| 4013 | 320 break; |
| 321 case TIFF_COMPR: | |
| 322 s->compr = value; | |
|
8429
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
323 s->predictor = 0; |
| 4013 | 324 switch(s->compr){ |
| 325 case TIFF_RAW: | |
| 326 case TIFF_PACKBITS: | |
|
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
327 case TIFF_LZW: |
| 8491 | 328 case TIFF_CCITT_RLE: |
| 329 break; | |
| 330 case TIFF_G3: | |
| 331 case TIFF_G4: | |
| 332 s->fax_opts = 0; | |
| 4013 | 333 break; |
| 334 case TIFF_DEFLATE: | |
| 335 case TIFF_ADOBE_DEFLATE: | |
| 8590 | 336 #if CONFIG_ZLIB |
| 4013 | 337 break; |
| 338 #else | |
| 339 av_log(s->avctx, AV_LOG_ERROR, "Deflate: ZLib not compiled in\n"); | |
| 340 return -1; | |
| 341 #endif | |
| 4184 | 342 case TIFF_JPEG: |
| 343 case TIFF_NEWJPEG: | |
| 344 av_log(s->avctx, AV_LOG_ERROR, "JPEG compression is not supported\n"); | |
| 345 return -1; | |
| 4013 | 346 default: |
| 347 av_log(s->avctx, AV_LOG_ERROR, "Unknown compression method %i\n", s->compr); | |
| 348 return -1; | |
| 349 } | |
| 350 break; | |
| 351 case TIFF_ROWSPERSTRIP: | |
| 8428 | 352 if(type == TIFF_LONG && value == -1) |
| 353 value = s->avctx->height; | |
| 4185 | 354 if(value < 1){ |
| 4013 | 355 av_log(s->avctx, AV_LOG_ERROR, "Incorrect value of rows per strip\n"); |
| 356 return -1; | |
| 357 } | |
| 358 s->rps = value; | |
| 359 break; | |
| 360 case TIFF_STRIP_OFFS: | |
| 361 if(count == 1){ | |
| 362 s->stripdata = NULL; | |
| 363 s->stripoff = value; | |
| 364 }else | |
| 365 s->stripdata = start + off; | |
| 366 s->strips = count; | |
|
4405
48952197d91f
Some TIFFs do not set rows per strip for single strip.
kostya
parents:
4364
diff
changeset
|
367 if(s->strips == 1) s->rps = s->height; |
| 4013 | 368 s->sot = type; |
| 369 if(s->stripdata > end_buf){ | |
| 370 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n"); | |
| 371 return -1; | |
| 372 } | |
| 373 break; | |
| 374 case TIFF_STRIP_SIZE: | |
| 375 if(count == 1){ | |
| 376 s->stripsizes = NULL; | |
| 377 s->stripsize = value; | |
| 378 s->strips = 1; | |
| 379 }else{ | |
| 380 s->stripsizes = start + off; | |
| 381 } | |
| 382 s->strips = count; | |
|
8429
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
383 s->sstype = type; |
| 4013 | 384 if(s->stripsizes > end_buf){ |
| 385 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n"); | |
| 386 return -1; | |
| 387 } | |
| 388 break; | |
| 389 case TIFF_PREDICTOR: | |
|
8429
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
390 s->predictor = value; |
| 4013 | 391 break; |
| 4186 | 392 case TIFF_INVERT: |
| 393 switch(value){ | |
| 394 case 0: | |
| 395 s->invert = 1; | |
| 396 break; | |
| 397 case 1: | |
| 398 s->invert = 0; | |
| 399 break; | |
|
4187
46f12596304f
Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents:
4186
diff
changeset
|
400 case 2: |
|
46f12596304f
Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents:
4186
diff
changeset
|
401 case 3: |
|
46f12596304f
Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents:
4186
diff
changeset
|
402 break; |
|
46f12596304f
Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents:
4186
diff
changeset
|
403 default: |
|
46f12596304f
Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents:
4186
diff
changeset
|
404 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
|
405 return -1; |
| 4186 | 406 } |
| 407 break; | |
|
10264
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
408 case TIFF_FILL_ORDER: |
|
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
409 if(value < 1 || value > 2){ |
|
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
410 av_log(s->avctx, AV_LOG_ERROR, "Unknown FillOrder value %d, trying default one\n", value); |
|
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
411 value = 1; |
|
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
412 } |
|
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
413 s->fill_order = value - 1; |
|
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
414 break; |
| 4186 | 415 case TIFF_PAL: |
| 416 if(s->avctx->pix_fmt != PIX_FMT_PAL8){ | |
| 417 av_log(s->avctx, AV_LOG_ERROR, "Palette met but this is not palettized format\n"); | |
| 418 return -1; | |
| 419 } | |
| 5261 | 420 pal = (uint32_t *) s->picture.data[1]; |
| 4190 | 421 off = type_sizes[type]; |
| 4186 | 422 rp = buf; |
| 423 gp = buf + count / 3 * off; | |
| 424 bp = buf + count / 3 * off * 2; | |
| 4190 | 425 off = (type_sizes[type] - 1) << 3; |
| 4186 | 426 for(i = 0; i < count / 3; i++){ |
| 427 j = (tget(&rp, type, s->le) >> off) << 16; | |
| 428 j |= (tget(&gp, type, s->le) >> off) << 8; | |
| 429 j |= tget(&bp, type, s->le) >> off; | |
| 430 pal[i] = j; | |
| 431 } | |
| 4192 | 432 break; |
| 433 case TIFF_PLANAR: | |
| 434 if(value == 2){ | |
| 435 av_log(s->avctx, AV_LOG_ERROR, "Planar format is not supported\n"); | |
| 436 return -1; | |
| 437 } | |
| 438 break; | |
| 8491 | 439 case TIFF_T4OPTIONS: |
|
10303
8a49525f2b1e
Make TIFF decoder load compression options only for corresponding codec
kostya
parents:
10299
diff
changeset
|
440 if(s->compr == TIFF_G3) |
|
8a49525f2b1e
Make TIFF decoder load compression options only for corresponding codec
kostya
parents:
10299
diff
changeset
|
441 s->fax_opts = value; |
|
8a49525f2b1e
Make TIFF decoder load compression options only for corresponding codec
kostya
parents:
10299
diff
changeset
|
442 break; |
| 8491 | 443 case TIFF_T6OPTIONS: |
|
10303
8a49525f2b1e
Make TIFF decoder load compression options only for corresponding codec
kostya
parents:
10299
diff
changeset
|
444 if(s->compr == TIFF_G4) |
|
8a49525f2b1e
Make TIFF decoder load compression options only for corresponding codec
kostya
parents:
10299
diff
changeset
|
445 s->fax_opts = value; |
| 8491 | 446 break; |
| 4013 | 447 } |
| 448 return 0; | |
| 449 } | |
| 450 | |
| 451 static int decode_frame(AVCodecContext *avctx, | |
| 452 void *data, int *data_size, | |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
8718
diff
changeset
|
453 AVPacket *avpkt) |
| 4013 | 454 { |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
8718
diff
changeset
|
455 const uint8_t *buf = avpkt->data; |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
8718
diff
changeset
|
456 int buf_size = avpkt->size; |
| 4013 | 457 TiffContext * const s = avctx->priv_data; |
| 458 AVFrame *picture = data; | |
| 459 AVFrame * const p= (AVFrame*)&s->picture; | |
| 6256 | 460 const uint8_t *orig_buf = buf, *end_buf = buf + buf_size; |
| 4013 | 461 int id, le, off; |
|
8429
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
462 int i, j, entries; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
463 int stride, soff, ssize; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
464 uint8_t *dst; |
| 4013 | 465 |
| 466 //parse image header | |
| 4364 | 467 id = AV_RL16(buf); buf += 2; |
| 4013 | 468 if(id == 0x4949) le = 1; |
| 469 else if(id == 0x4D4D) le = 0; | |
| 470 else{ | |
| 471 av_log(avctx, AV_LOG_ERROR, "TIFF header not found\n"); | |
| 472 return -1; | |
| 473 } | |
| 474 s->le = le; | |
| 4186 | 475 s->invert = 0; |
| 5962 | 476 s->compr = TIFF_RAW; |
|
10264
f9efc2bd005d
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
kostya
parents:
9812
diff
changeset
|
477 s->fill_order = 0; |
| 4013 | 478 // As TIFF 6.0 specification puts it "An arbitrary but carefully chosen number |
| 479 // that further identifies the file as a TIFF file" | |
| 480 if(tget_short(&buf, le) != 42){ | |
| 481 av_log(avctx, AV_LOG_ERROR, "The answer to life, universe and everything is not correct!\n"); | |
| 482 return -1; | |
| 483 } | |
| 484 /* parse image file directory */ | |
| 485 off = tget_long(&buf, le); | |
| 486 if(orig_buf + off + 14 >= end_buf){ | |
| 487 av_log(avctx, AV_LOG_ERROR, "IFD offset is greater than image size\n"); | |
| 488 return -1; | |
| 489 } | |
| 490 buf = orig_buf + off; | |
| 491 entries = tget_short(&buf, le); | |
| 492 for(i = 0; i < entries; i++){ | |
|
8429
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
493 if(tiff_decode_tag(s, orig_buf, buf, end_buf) < 0) |
| 4013 | 494 return -1; |
| 495 buf += 12; | |
| 496 } | |
|
8429
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
497 if(!s->stripdata && !s->stripoff){ |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
498 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
|
499 return -1; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
500 } |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
501 /* 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
|
502 if(!p->data[0]){ |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
503 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
|
504 return -1; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
505 } |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
506 if(s->strips == 1 && !s->stripsize){ |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
507 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
|
508 s->stripsize = buf_size - s->stripoff; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
509 } |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
510 stride = p->linesize[0]; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
511 dst = p->data[0]; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
512 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
|
513 if(s->stripsizes) |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
514 ssize = tget(&s->stripsizes, s->sstype, s->le); |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
515 else |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
516 ssize = s->stripsize; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
517 |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
518 if(s->stripdata){ |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
519 soff = tget(&s->stripdata, s->sot, s->le); |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
520 }else |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
521 soff = s->stripoff; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
522 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
|
523 break; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
524 dst += s->rps * stride; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
525 } |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
526 if(s->predictor == 2){ |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
527 dst = p->data[0]; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
528 soff = s->bpp >> 3; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
529 ssize = s->width * soff; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
530 for(i = 0; i < s->height; i++) { |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
531 for(j = soff; j < ssize; j++) |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
532 dst[j] += dst[j - soff]; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
533 dst += stride; |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
534 } |
|
b3ecaba81501
Decode TIFF image only after all tags have been decoded
kostya
parents:
8428
diff
changeset
|
535 } |
| 4013 | 536 |
| 4186 | 537 if(s->invert){ |
| 538 uint8_t *src; | |
| 539 int j; | |
| 540 | |
| 541 src = s->picture.data[0]; | |
| 542 for(j = 0; j < s->height; j++){ | |
| 543 for(i = 0; i < s->picture.linesize[0]; i++) | |
| 544 src[i] = 255 - src[i]; | |
| 545 src += s->picture.linesize[0]; | |
| 546 } | |
| 547 } | |
| 4013 | 548 *picture= *(AVFrame*)&s->picture; |
| 549 *data_size = sizeof(AVPicture); | |
| 550 | |
| 551 return buf_size; | |
| 552 } | |
| 553 | |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6256
diff
changeset
|
554 static av_cold int tiff_init(AVCodecContext *avctx){ |
| 4013 | 555 TiffContext *s = avctx->priv_data; |
| 556 | |
| 557 s->width = 0; | |
| 558 s->height = 0; | |
| 559 s->avctx = avctx; | |
| 560 avcodec_get_frame_defaults((AVFrame*)&s->picture); | |
| 561 avctx->coded_frame= (AVFrame*)&s->picture; | |
|
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
562 ff_lzw_decode_open(&s->lzw); |
| 8491 | 563 ff_ccitt_unpack_init(); |
| 4013 | 564 |
| 565 return 0; | |
| 566 } | |
| 567 | |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6256
diff
changeset
|
568 static av_cold int tiff_end(AVCodecContext *avctx) |
| 4013 | 569 { |
| 570 TiffContext * const s = avctx->priv_data; | |
| 571 | |
|
4080
f426c81afc9e
LZW decoder as separate module plus TIFF LZW support
kostya
parents:
4079
diff
changeset
|
572 ff_lzw_decode_close(&s->lzw); |
| 4013 | 573 if(s->picture.data[0]) |
| 574 avctx->release_buffer(avctx, &s->picture); | |
| 575 return 0; | |
| 576 } | |
| 577 | |
| 578 AVCodec tiff_decoder = { | |
| 579 "tiff", | |
| 580 CODEC_TYPE_VIDEO, | |
| 581 CODEC_ID_TIFF, | |
| 582 sizeof(TiffContext), | |
| 583 tiff_init, | |
| 584 NULL, | |
| 585 tiff_end, | |
| 586 decode_frame, | |
|
9812
58d29c191e5a
tiff image decoder uses get_buffer, set CODEC_CAP_DR1
bcoudurier
parents:
9784
diff
changeset
|
587 CODEC_CAP_DR1, |
| 6722 | 588 NULL, |
|
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6722
diff
changeset
|
589 .long_name = NULL_IF_CONFIG_SMALL("TIFF image"), |
| 4013 | 590 }; |
