943616869ba1d9fdc33d2ad9323bd6b432410437
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
;
46 int strips
, rps
, sstype
;
48 const uint8_t* stripdata
;
49 const uint8_t* stripsizes
;
50 int stripsize
, stripoff
;
54 static int tget_short(const uint8_t **p
, int le
){
55 int v
= le ?
AV_RL16(*p
) : AV_RB16(*p
);
60 static int tget_long(const uint8_t **p
, int le
){
61 int v
= le ?
AV_RL32(*p
) : AV_RB32(*p
);
66 static int tget(const uint8_t **p
, int type
, int le
){
68 case TIFF_BYTE
: return *(*p
)++;
69 case TIFF_SHORT
: return tget_short(p
, le
);
70 case TIFF_LONG
: return tget_long (p
, le
);
75 static int tiff_unpack_strip(TiffContext
*s
, uint8_t* dst
, int stride
, const uint8_t *src
, int size
, int lines
){
76 int c
, line
, pixels
, code
;
77 const uint8_t *ssrc
= src
;
78 int width
= s
->width
* s
->bpp
>> 3;
80 uint8_t *zbuf
; unsigned long outlen
;
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
);
91 for(line
= 0; line
< lines
; line
++){
92 memcpy(dst
, src
, width
);
100 if(s
->compr
== TIFF_LZW
){
101 if(ff_lzw_decode_init(s
->lzw
, 8, src
, size
, FF_LZW_TIFF
) < 0){
102 av_log(s
->avctx
, AV_LOG_ERROR
, "Error initializing LZW decoder\n");
106 for(line
= 0; line
< lines
; line
++){
107 if(src
- ssrc
> size
){
108 av_log(s
->avctx
, AV_LOG_ERROR
, "Source data overread\n");
113 memcpy(dst
, src
, width
);
117 for(pixels
= 0; pixels
< width
;){
118 code
= (int8_t)*src
++;
121 if(pixels
+ code
> width
){
122 av_log(s
->avctx
, AV_LOG_ERROR
, "Copy went out of bounds\n");
125 memcpy(dst
+ pixels
, src
, code
);
128 }else if(code
!= -128){ // -127..-1
130 if(pixels
+ code
> width
){
131 av_log(s
->avctx
, AV_LOG_ERROR
, "Run went out of bounds\n");
135 memset(dst
+ pixels
, c
, code
);
141 pixels
= ff_lzw_decode(s
->lzw
, dst
, width
);
143 av_log(s
->avctx
, AV_LOG_ERROR
, "Decoded only %i bytes of %i\n", pixels
, width
);
154 static int tiff_decode_tag(TiffContext
*s
, const uint8_t *start
, const uint8_t *buf
, const uint8_t *end_buf
)
156 int tag
, type
, count
, off
, value
= 0;
159 const uint8_t *rp
, *gp
, *bp
;
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
);
171 value
= tget(&buf
, type
, s
->le
);
187 }else if(type_sizes
[type
] * count
<= 4){
193 if(buf
&& (buf
< start
|| buf
> end_buf
)){
194 av_log(s
->avctx
, AV_LOG_ERROR
, "Tag referencing position outside the image\n");
206 if(count
== 1) s
->bpp
= value
;
210 s
->bpp
= (off
& 0xFF) + ((off
>> 8) & 0xFF) + ((off
>> 16) & 0xFF) + ((off
>> 24) & 0xFF);
215 for(i
= 0; i
< count
; i
++) s
->bpp
+= tget(&buf
, type
, s
->le
);
223 s
->avctx
->pix_fmt
= PIX_FMT_MONOBLACK
;
226 s
->avctx
->pix_fmt
= PIX_FMT_PAL8
;
229 s
->avctx
->pix_fmt
= PIX_FMT_RGB24
;
233 s
->avctx
->pix_fmt
= PIX_FMT_GRAY16BE
;
235 av_log(s
->avctx
, AV_LOG_ERROR
, "This format is not supported (bpp=%i)\n", s
->bpp
);
240 av_log(s
->avctx
, AV_LOG_ERROR
, "This format is not supported (bpp=%i)\n", s
->bpp
);
243 if(s
->width
!= s
->avctx
->width
|| s
->height
!= s
->avctx
->height
){
244 if(avcodec_check_dimensions(s
->avctx
, s
->width
, s
->height
))
246 avcodec_set_dimensions(s
->avctx
, s
->width
, s
->height
);
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");
255 /* make default grayscale pal */
256 pal
= (uint32_t *) s
->picture
.data
[1];
257 for(i
= 0; i
< 256; i
++)
258 pal
[i
] = i
* 0x010101;
270 case TIFF_ADOBE_DEFLATE
:
274 av_log(s
->avctx
, AV_LOG_ERROR
, "Deflate: ZLib not compiled in\n");
278 av_log(s
->avctx
, AV_LOG_ERROR
, "CCITT G3 compression is not supported\n");
281 av_log(s
->avctx
, AV_LOG_ERROR
, "CCITT G4 compression is not supported\n");
284 av_log(s
->avctx
, AV_LOG_ERROR
, "CCITT RLE compression is not supported\n");
288 av_log(s
->avctx
, AV_LOG_ERROR
, "JPEG compression is not supported\n");
291 av_log(s
->avctx
, AV_LOG_ERROR
, "Unknown compression method %i\n", s
->compr
);
295 case TIFF_ROWSPERSTRIP
:
296 if(type
== TIFF_LONG
&& value
== -1)
297 value
= s
->avctx
->height
;
299 av_log(s
->avctx
, AV_LOG_ERROR
, "Incorrect value of rows per strip\n");
304 case TIFF_STRIP_OFFS
:
309 s
->stripdata
= start
+ off
;
311 if(s
->strips
== 1) s
->rps
= s
->height
;
313 if(s
->stripdata
> end_buf
){
314 av_log(s
->avctx
, AV_LOG_ERROR
, "Tag referencing position outside the image\n");
318 case TIFF_STRIP_SIZE
:
320 s
->stripsizes
= NULL
;
321 s
->stripsize
= value
;
324 s
->stripsizes
= start
+ off
;
328 if(s
->stripsizes
> end_buf
){
329 av_log(s
->avctx
, AV_LOG_ERROR
, "Tag referencing position outside the image\n");
334 s
->predictor
= value
;
348 av_log(s
->avctx
, AV_LOG_ERROR
, "Color mode %d is not supported\n", value
);
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");
357 pal
= (uint32_t *) s
->picture
.data
[1];
358 off
= type_sizes
[type
];
360 gp
= buf
+ count
/ 3 * off
;
361 bp
= buf
+ count
/ 3 * off
* 2;
362 off
= (type_sizes
[type
] - 1) << 3;
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
;
372 av_log(s
->avctx
, AV_LOG_ERROR
, "Planar format is not supported\n");
380 static int decode_frame(AVCodecContext
*avctx
,
381 void *data
, int *data_size
,
382 const uint8_t *buf
, int buf_size
)
384 TiffContext
* const s
= avctx
->priv_data
;
385 AVFrame
*picture
= data
;
386 AVFrame
* const p
= (AVFrame
*)&s
->picture
;
387 const uint8_t *orig_buf
= buf
, *end_buf
= buf
+ buf_size
;
390 int stride
, soff
, ssize
;
394 id
= AV_RL16(buf
); buf
+= 2;
395 if(id
== 0x4949) le
= 1;
396 else if(id
== 0x4D4D) le
= 0;
398 av_log(avctx
, AV_LOG_ERROR
, "TIFF header not found\n");
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");
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");
416 buf
= orig_buf
+ off
;
417 entries
= tget_short(&buf
, le
);
418 for(i
= 0; i
< entries
; i
++){
419 if(tiff_decode_tag(s
, orig_buf
, buf
, end_buf
) < 0)
423 if(!s
->stripdata
&& !s
->stripoff
){
424 av_log(avctx
, AV_LOG_ERROR
, "Image data is missing\n");
427 /* now we have the data and may start decoding */
429 av_log(s
->avctx
, AV_LOG_ERROR
, "Picture initialization missing\n");
432 if(s
->strips
== 1 && !s
->stripsize
){
433 av_log(avctx
, AV_LOG_WARNING
, "Image data size missing\n");
434 s
->stripsize
= buf_size
- s
->stripoff
;
436 stride
= p
->linesize
[0];
438 for(i
= 0; i
< s
->height
; i
+= s
->rps
){
440 ssize
= tget(&s
->stripsizes
, s
->sstype
, s
->le
);
442 ssize
= s
->stripsize
;
445 soff
= tget(&s
->stripdata
, s
->sot
, s
->le
);
448 if(tiff_unpack_strip(s
, dst
, stride
, orig_buf
+ soff
, ssize
, FFMIN(s
->rps
, s
->height
- i
)) < 0)
450 dst
+= s
->rps
* stride
;
452 if(s
->predictor
== 2){
455 ssize
= s
->width
* soff
;
456 for(i
= 0; i
< s
->height
; i
++) {
457 for(j
= soff
; j
< ssize
; j
++)
458 dst
[j
] += dst
[j
- soff
];
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];
474 *picture
= *(AVFrame
*)&s
->picture
;
475 *data_size
= sizeof(AVPicture
);
480 static av_cold
int tiff_init(AVCodecContext
*avctx
){
481 TiffContext
*s
= avctx
->priv_data
;
486 avcodec_get_frame_defaults((AVFrame
*)&s
->picture
);
487 avctx
->coded_frame
= (AVFrame
*)&s
->picture
;
488 s
->picture
.data
[0] = NULL
;
489 ff_lzw_decode_open(&s
->lzw
);
494 static av_cold
int tiff_end(AVCodecContext
*avctx
)
496 TiffContext
* const s
= avctx
->priv_data
;
498 ff_lzw_decode_close(&s
->lzw
);
499 if(s
->picture
.data
[0])
500 avctx
->release_buffer(avctx
, &s
->picture
);
504 AVCodec tiff_decoder
= {
515 .long_name
= NULL_IF_CONFIG_SMALL("TIFF image"),