3 * Copyright (c) 2006 Konstantin Shishkov
5 * This file is part of FFmpeg.
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.
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.
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
25 * @author Konstantin Shishkov
35 typedef struct TiffContext
{
36 AVCodecContext
*avctx
;
47 const uint8_t* stripdata
;
48 const uint8_t* stripsizes
;
49 int stripsize
, stripoff
;
53 static int tget_short(const uint8_t **p
, int le
){
54 int v
= le
? AV_RL16(*p
) : AV_RB16(*p
);
59 static int tget_long(const uint8_t **p
, int le
){
60 int v
= le
? AV_RL32(*p
) : AV_RB32(*p
);
65 static int tget(const uint8_t **p
, int type
, int le
){
67 case TIFF_BYTE
: return *(*p
)++;
68 case TIFF_SHORT
: return tget_short(p
, le
);
69 case TIFF_LONG
: return tget_long (p
, le
);
74 static int tiff_unpack_strip(TiffContext
*s
, uint8_t* dst
, int stride
, const uint8_t *src
, int size
, int lines
){
75 int c
, line
, pixels
, code
;
76 const uint8_t *ssrc
= src
;
77 int width
= s
->width
* (s
->bpp
/ 8);
79 uint8_t *zbuf
; unsigned long outlen
;
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
);
90 for(line
= 0; line
< lines
; line
++){
91 memcpy(dst
, src
, width
);
99 if(s
->compr
== TIFF_LZW
){
100 if(ff_lzw_decode_init(s
->lzw
, 8, src
, size
, FF_LZW_TIFF
) < 0){
101 av_log(s
->avctx
, AV_LOG_ERROR
, "Error initializing LZW decoder\n");
105 for(line
= 0; line
< lines
; line
++){
106 if(src
- ssrc
> size
){
107 av_log(s
->avctx
, AV_LOG_ERROR
, "Source data overread\n");
112 memcpy(dst
, src
, s
->width
* (s
->bpp
/ 8));
113 src
+= s
->width
* (s
->bpp
/ 8);
116 for(pixels
= 0; pixels
< width
;){
117 code
= (int8_t)*src
++;
120 if(pixels
+ code
> width
){
121 av_log(s
->avctx
, AV_LOG_ERROR
, "Copy went out of bounds\n");
124 memcpy(dst
+ pixels
, src
, code
);
127 }else if(code
!= -128){ // -127..-1
129 if(pixels
+ code
> width
){
130 av_log(s
->avctx
, AV_LOG_ERROR
, "Run went out of bounds\n");
134 memset(dst
+ pixels
, c
, code
);
140 pixels
= ff_lzw_decode(s
->lzw
, dst
, width
);
142 av_log(s
->avctx
, AV_LOG_ERROR
, "Decoded only %i bytes of %i\n", pixels
, width
);
153 static int tiff_decode_tag(TiffContext
*s
, const uint8_t *start
, const uint8_t *buf
, const uint8_t *end_buf
, AVFrame
*pic
)
155 int tag
, type
, count
, off
, value
= 0;
158 int i
, j
, ssize
, soff
, stride
;
160 const uint8_t *rp
, *gp
, *bp
;
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
);
172 value
= tget(&buf
, type
, s
->le
);
183 }else if(type_sizes
[type
] * count
<= 4){
189 if(buf
&& (buf
< start
|| buf
> end_buf
)){
190 av_log(s
->avctx
, AV_LOG_ERROR
, "Tag referencing position outside the image\n");
202 if(count
== 1) s
->bpp
= value
;
206 s
->bpp
= (off
& 0xFF) + ((off
>> 8) & 0xFF) + ((off
>> 16) & 0xFF) + ((off
>> 24) & 0xFF);
211 for(i
= 0; i
< count
; i
++) s
->bpp
+= tget(&buf
, type
, s
->le
);
219 s
->avctx
->pix_fmt
= PIX_FMT_PAL8
;
222 s
->avctx
->pix_fmt
= PIX_FMT_RGB24
;
226 s
->avctx
->pix_fmt
= PIX_FMT_GRAY16BE
;
228 av_log(s
->avctx
, AV_LOG_ERROR
, "This format is not supported (bpp=%i)\n", s
->bpp
);
233 av_log(s
->avctx
, AV_LOG_ERROR
, "This format is not supported (bpp=%i)\n", s
->bpp
);
236 if(s
->width
!= s
->avctx
->width
|| s
->height
!= s
->avctx
->height
){
237 if(avcodec_check_dimensions(s
->avctx
, s
->width
, s
->height
))
239 avcodec_set_dimensions(s
->avctx
, s
->width
, s
->height
);
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");
248 /* make default grayscale pal */
249 pal
= (uint32_t *) s
->picture
.data
[1];
250 for(i
= 0; i
< 256; i
++)
251 pal
[i
] = i
* 0x010101;
262 case TIFF_ADOBE_DEFLATE
:
266 av_log(s
->avctx
, AV_LOG_ERROR
, "Deflate: ZLib not compiled in\n");
270 av_log(s
->avctx
, AV_LOG_ERROR
, "CCITT G3 compression is not supported\n");
273 av_log(s
->avctx
, AV_LOG_ERROR
, "CCITT G4 compression is not supported\n");
276 av_log(s
->avctx
, AV_LOG_ERROR
, "CCITT RLE compression is not supported\n");
280 av_log(s
->avctx
, AV_LOG_ERROR
, "JPEG compression is not supported\n");
283 av_log(s
->avctx
, AV_LOG_ERROR
, "Unknown compression method %i\n", s
->compr
);
287 case TIFF_ROWSPERSTRIP
:
289 av_log(s
->avctx
, AV_LOG_ERROR
, "Incorrect value of rows per strip\n");
294 case TIFF_STRIP_OFFS
:
299 s
->stripdata
= start
+ off
;
301 if(s
->strips
== 1) s
->rps
= s
->height
;
303 if(s
->stripdata
> end_buf
){
304 av_log(s
->avctx
, AV_LOG_ERROR
, "Tag referencing position outside the image\n");
308 case TIFF_STRIP_SIZE
:
310 s
->stripsizes
= NULL
;
311 s
->stripsize
= value
;
314 s
->stripsizes
= start
+ off
;
317 if(s
->stripsizes
> end_buf
){
318 av_log(s
->avctx
, AV_LOG_ERROR
, "Tag referencing position outside the image\n");
322 av_log(s
->avctx
, AV_LOG_ERROR
, "Picture initialization missing\n");
325 /* now we have the data and may start decoding */
326 stride
= pic
->linesize
[0];
328 for(i
= 0; i
< s
->height
; i
+= s
->rps
){
330 ssize
= tget(&s
->stripsizes
, type
, s
->le
);
332 ssize
= s
->stripsize
;
335 soff
= tget(&s
->stripdata
, s
->sot
, s
->le
);
339 if(tiff_unpack_strip(s
, dst
, stride
, src
, ssize
, FFMIN(s
->rps
, s
->height
- i
)) < 0)
341 dst
+= s
->rps
* stride
;
346 av_log(s
->avctx
, AV_LOG_ERROR
, "Picture initialization missing\n");
351 stride
= pic
->linesize
[0];
353 ssize
= s
->width
* soff
;
354 for(i
= 0; i
< s
->height
; i
++) {
355 for(j
= soff
; j
< ssize
; j
++)
356 dst
[j
] += dst
[j
- soff
];
373 av_log(s
->avctx
, AV_LOG_ERROR
, "Color mode %d is not supported\n", value
);
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");
382 pal
= (uint32_t *) s
->picture
.data
[1];
383 off
= type_sizes
[type
];
385 gp
= buf
+ count
/ 3 * off
;
386 bp
= buf
+ count
/ 3 * off
* 2;
387 off
= (type_sizes
[type
] - 1) << 3;
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
;
397 av_log(s
->avctx
, AV_LOG_ERROR
, "Planar format is not supported\n");
405 static int decode_frame(AVCodecContext
*avctx
,
406 void *data
, int *data_size
,
407 const uint8_t *buf
, int buf_size
)
409 TiffContext
* const s
= avctx
->priv_data
;
410 AVFrame
*picture
= data
;
411 AVFrame
* const p
= (AVFrame
*)&s
->picture
;
412 const uint8_t *orig_buf
= buf
, *end_buf
= buf
+ buf_size
;
417 id
= AV_RL16(buf
); buf
+= 2;
418 if(id
== 0x4949) le
= 1;
419 else if(id
== 0x4D4D) le
= 0;
421 av_log(avctx
, AV_LOG_ERROR
, "TIFF header not found\n");
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");
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");
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)
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];
458 *picture
= *(AVFrame
*)&s
->picture
;
459 *data_size
= sizeof(AVPicture
);
464 static av_cold
int tiff_init(AVCodecContext
*avctx
){
465 TiffContext
*s
= avctx
->priv_data
;
470 avcodec_get_frame_defaults((AVFrame
*)&s
->picture
);
471 avctx
->coded_frame
= (AVFrame
*)&s
->picture
;
472 s
->picture
.data
[0] = NULL
;
473 ff_lzw_decode_open(&s
->lzw
);
478 static av_cold
int tiff_end(AVCodecContext
*avctx
)
480 TiffContext
* const s
= avctx
->priv_data
;
482 ff_lzw_decode_close(&s
->lzw
);
483 if(s
->picture
.data
[0])
484 avctx
->release_buffer(avctx
, &s
->picture
);
488 AVCodec tiff_decoder
= {
499 .long_name
= NULL_IF_CONFIG_SMALL("TIFF image"),