annotate tiff.c @ 5215:2b72f9bc4f06 libavcodec

license header consistency cosmetics
author diego
date Thu, 05 Jul 2007 10:40:25 +0000
parents bca8924ed36c
children f2eaf5afe6ae
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
1 /*
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
2 * TIFF image decoder
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
3 * Copyright (c) 2006 Konstantin Shishkov
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
4 *
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
5 * This file is part of FFmpeg.
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
6 *
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
11 *
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
15 * Lesser General Public License for more details.
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
16 *
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
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
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
27 #include "avcodec.h"
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
28 #ifdef CONFIG_ZLIB
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
29 #include <zlib.h>
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
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
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
33
4190
405f8395eedc Use table for determining type sizes
kostya
parents: 4188
diff changeset
34
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
35 typedef struct TiffContext {
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
36 AVCodecContext *avctx;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
37 AVFrame picture;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
38
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
39 int width, height;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
40 unsigned int bpp;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
41 int le;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
42 int compr;
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
43 int invert;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
44
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
45 int strips, rps;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
46 int sot;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
47 uint8_t* stripdata;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
48 uint8_t* stripsizes;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
49 int stripsize, stripoff;
4080
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
50 LZWState *lzw;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
51 } TiffContext;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
52
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
53 static int tget_short(uint8_t **p, int le){
4364
05e932ddaaa9 rename BE/LE_8/16/32 to AV_RL/B_8/16/32
alex
parents: 4193
diff changeset
54 int v = le ? AV_RL16(*p) : AV_RB16(*p);
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
55 *p += 2;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
56 return v;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
57 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
58
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
59 static int tget_long(uint8_t **p, int le){
4364
05e932ddaaa9 rename BE/LE_8/16/32 to AV_RL/B_8/16/32
alex
parents: 4193
diff changeset
60 int v = le ? AV_RL32(*p) : AV_RB32(*p);
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
61 *p += 4;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
62 return v;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
63 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
64
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
65 static int tget(uint8_t **p, int type, int le){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
66 switch(type){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
67 case TIFF_BYTE : return *(*p)++;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
68 case TIFF_SHORT: return tget_short(p, le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
69 case TIFF_LONG : return tget_long (p, le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
70 default : return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
71 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
72 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
73
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
74 static int tiff_unpack_strip(TiffContext *s, uint8_t* dst, int stride, uint8_t *src, int size, int lines){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
75 int c, line, pixels, code;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
76 uint8_t *ssrc = src;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
77 int width = s->width * (s->bpp / 8);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
78 #ifdef CONFIG_ZLIB
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
79 uint8_t *zbuf; unsigned long outlen;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
80
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
81 if(s->compr == TIFF_DEFLATE || s->compr == TIFF_ADOBE_DEFLATE){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
82 outlen = width * lines;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
83 zbuf = av_malloc(outlen);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
84 if(uncompress(zbuf, &outlen, src, size) != Z_OK){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
85 av_log(s->avctx, AV_LOG_ERROR, "Uncompressing failed (%lu of %lu)\n", outlen, (unsigned long)width * lines);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
86 av_free(zbuf);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
87 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
88 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
89 src = zbuf;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
90 for(line = 0; line < lines; line++){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
91 memcpy(dst, src, width);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
92 dst += stride;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
93 src += width;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
94 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
95 av_free(zbuf);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
96 return 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
97 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
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
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
105 for(line = 0; line < lines; line++){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
106 if(src - ssrc > size){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
107 av_log(s->avctx, AV_LOG_ERROR, "Source data overread\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
108 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
109 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
110 switch(s->compr){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
111 case TIFF_RAW:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
112 memcpy(dst, src, s->width * (s->bpp / 8));
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
113 src += s->width * (s->bpp / 8);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
114 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
115 case TIFF_PACKBITS:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
116 for(pixels = 0; pixels < width;){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
117 code = (int8_t)*src++;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
118 if(code >= 0){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
119 code++;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
120 if(pixels + code > width){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
121 av_log(s->avctx, AV_LOG_ERROR, "Copy went out of bounds\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
122 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
123 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
124 memcpy(dst + pixels, src, code);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
125 src += code;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
126 pixels += code;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
127 }else if(code != -128){ // -127..-1
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
128 code = (-code) + 1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
129 if(pixels + code > width){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
130 av_log(s->avctx, AV_LOG_ERROR, "Run went out of bounds\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
131 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
132 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
133 c = *src++;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
134 memset(dst + pixels, c, code);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
135 pixels += code;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
136 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
137 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
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
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
146 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
147 dst += stride;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
148 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
149 return 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
150 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
151
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
152
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
153 static int tiff_decode_tag(TiffContext *s, uint8_t *start, uint8_t *buf, uint8_t *end_buf, AVFrame *pic)
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
154 {
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
155 int tag, type, count, off, value = 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
156 uint8_t *src, *dst;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
157 int i, j, ssize, soff, stride;
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
158 int *pal, *rp, *gp, *bp;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
159
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
160 tag = tget_short(&buf, s->le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
161 type = tget_short(&buf, s->le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
162 count = tget_long(&buf, s->le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
163 off = tget_long(&buf, s->le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
164
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
165 if(count == 1){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
166 switch(type){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
167 case TIFF_BYTE:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
168 case TIFF_SHORT:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
169 buf -= 4;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
170 value = tget(&buf, type, s->le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
171 buf = NULL;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
172 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
173 case TIFF_LONG:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
174 value = off;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
175 buf = NULL;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
176 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
177 default:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
178 value = -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
179 buf = start + off;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
180 }
4190
405f8395eedc Use table for determining type sizes
kostya
parents: 4188
diff changeset
181 }else if(type_sizes[type] * count <= 4){
405f8395eedc Use table for determining type sizes
kostya
parents: 4188
diff changeset
182 buf -= 4;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
183 }else{
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
184 buf = start + off;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
185 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
186
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
187 if(buf && (buf < start || buf > end_buf)){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
188 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
189 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
190 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
191
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
192 switch(tag){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
193 case TIFF_WIDTH:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
194 s->width = value;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
195 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
196 case TIFF_HEIGHT:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
197 s->height = value;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
198 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
199 case TIFF_BPP:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
200 if(count == 1) s->bpp = value;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
201 else{
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
202 switch(type){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
203 case TIFF_BYTE:
4183
c70922cdf2ee Correctly detect 4-component images
kostya
parents: 4080
diff changeset
204 s->bpp = (off & 0xFF) + ((off >> 8) & 0xFF) + ((off >> 16) & 0xFF) + ((off >> 24) & 0xFF);
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
205 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
206 case TIFF_SHORT:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
207 case TIFF_LONG:
4183
c70922cdf2ee Correctly detect 4-component images
kostya
parents: 4080
diff changeset
208 s->bpp = 0;
c70922cdf2ee Correctly detect 4-component images
kostya
parents: 4080
diff changeset
209 for(i = 0; i < count; i++) s->bpp += tget(&buf, type, s->le);
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
210 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
211 default:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
212 s->bpp = -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
213 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
214 }
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
215 switch(s->bpp){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
216 case 8:
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
217 s->avctx->pix_fmt = PIX_FMT_PAL8;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
218 break;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
219 case 24:
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
220 s->avctx->pix_fmt = PIX_FMT_RGB24;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
221 break;
4193
cdefe220b007 Support for 16-bit grayscale
kostya
parents: 4192
diff changeset
222 case 16:
cdefe220b007 Support for 16-bit grayscale
kostya
parents: 4192
diff changeset
223 if(count == 1){
cdefe220b007 Support for 16-bit grayscale
kostya
parents: 4192
diff changeset
224 s->avctx->pix_fmt = PIX_FMT_GRAY16BE;
cdefe220b007 Support for 16-bit grayscale
kostya
parents: 4192
diff changeset
225 }else{
cdefe220b007 Support for 16-bit grayscale
kostya
parents: 4192
diff changeset
226 av_log(s->avctx, AV_LOG_ERROR, "This format is not supported (bpp=%i)\n", s->bpp);
cdefe220b007 Support for 16-bit grayscale
kostya
parents: 4192
diff changeset
227 return -1;
cdefe220b007 Support for 16-bit grayscale
kostya
parents: 4192
diff changeset
228 }
cdefe220b007 Support for 16-bit grayscale
kostya
parents: 4192
diff changeset
229 break;
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
230 default:
4191
c9867abab7e6 Update error message
kostya
parents: 4190
diff changeset
231 av_log(s->avctx, AV_LOG_ERROR, "This format is not supported (bpp=%i)\n", s->bpp);
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
232 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
233 }
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
234 if(s->width != s->avctx->width || s->height != s->avctx->height){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
235 if(avcodec_check_dimensions(s->avctx, s->width, s->height))
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
236 return -1;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
237 avcodec_set_dimensions(s->avctx, s->width, s->height);
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
238 }
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
239 if(s->picture.data[0])
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
240 s->avctx->release_buffer(s->avctx, &s->picture);
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
241 if(s->avctx->get_buffer(s->avctx, &s->picture) < 0){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
242 av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n");
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
243 return -1;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
244 }
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
245 if(s->bpp == 8){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
246 /* make default grayscale pal */
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
247 pal = s->picture.data[1];
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
248 for(i = 0; i < 256; i++)
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
249 pal[i] = i * 0x010101;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
250 }
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
251 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
252 case TIFF_COMPR:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
253 s->compr = value;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
254 switch(s->compr){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
255 case TIFF_RAW:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
256 case TIFF_PACKBITS:
4080
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
257 case TIFF_LZW:
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
258 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
259 case TIFF_DEFLATE:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
260 case TIFF_ADOBE_DEFLATE:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
261 #ifdef CONFIG_ZLIB
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
262 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
263 #else
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
264 av_log(s->avctx, AV_LOG_ERROR, "Deflate: ZLib not compiled in\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
265 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
266 #endif
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
267 case TIFF_G3:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
268 av_log(s->avctx, AV_LOG_ERROR, "CCITT G3 compression is not supported\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
269 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
270 case TIFF_G4:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
271 av_log(s->avctx, AV_LOG_ERROR, "CCITT G4 compression is not supported\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
272 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
273 case TIFF_CCITT_RLE:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
274 av_log(s->avctx, AV_LOG_ERROR, "CCITT RLE compression is not supported\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
275 return -1;
4184
cfaa5d84641e Warn about JPEG in TIFF
kostya
parents: 4183
diff changeset
276 case TIFF_JPEG:
cfaa5d84641e Warn about JPEG in TIFF
kostya
parents: 4183
diff changeset
277 case TIFF_NEWJPEG:
cfaa5d84641e Warn about JPEG in TIFF
kostya
parents: 4183
diff changeset
278 av_log(s->avctx, AV_LOG_ERROR, "JPEG compression is not supported\n");
cfaa5d84641e Warn about JPEG in TIFF
kostya
parents: 4183
diff changeset
279 return -1;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
280 default:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
281 av_log(s->avctx, AV_LOG_ERROR, "Unknown compression method %i\n", s->compr);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
282 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
283 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
284 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
285 case TIFF_ROWSPERSTRIP:
4185
7120f779d313 Rows per strip may be >= height
kostya
parents: 4184
diff changeset
286 if(value < 1){
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
287 av_log(s->avctx, AV_LOG_ERROR, "Incorrect value of rows per strip\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
288 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
289 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
290 s->rps = value;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
291 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
292 case TIFF_STRIP_OFFS:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
293 if(count == 1){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
294 s->stripdata = NULL;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
295 s->stripoff = value;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
296 }else
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
297 s->stripdata = start + off;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
298 s->strips = count;
4405
48952197d91f Some TIFFs do not set rows per strip for single strip.
kostya
parents: 4364
diff changeset
299 if(s->strips == 1) s->rps = s->height;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
300 s->sot = type;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
301 if(s->stripdata > end_buf){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
302 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
303 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
304 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
305 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
306 case TIFF_STRIP_SIZE:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
307 if(count == 1){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
308 s->stripsizes = NULL;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
309 s->stripsize = value;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
310 s->strips = 1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
311 }else{
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
312 s->stripsizes = start + off;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
313 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
314 s->strips = count;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
315 if(s->stripsizes > end_buf){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
316 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
317 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
318 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
319 if(!pic->data[0]){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
320 av_log(s->avctx, AV_LOG_ERROR, "Picture initialization missing\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
321 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
322 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
323 /* now we have the data and may start decoding */
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
324 stride = pic->linesize[0];
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
325 dst = pic->data[0];
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
326 for(i = 0; i < s->height; i += s->rps){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
327 if(s->stripsizes)
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
328 ssize = tget(&s->stripsizes, type, s->le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
329 else
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
330 ssize = s->stripsize;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
331
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
332 if(s->stripdata){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
333 soff = tget(&s->stripdata, s->sot, s->le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
334 }else
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
335 soff = s->stripoff;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
336 src = start + soff;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
337 if(tiff_unpack_strip(s, dst, stride, src, ssize, FFMIN(s->rps, s->height - i)) < 0)
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
338 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
339 dst += s->rps * stride;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
340 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
341 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
342 case TIFF_PREDICTOR:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
343 if(!pic->data[0]){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
344 av_log(s->avctx, AV_LOG_ERROR, "Picture initialization missing\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
345 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
346 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
347 if(value == 2){
4079
00a0b18cfb92 10l predictor should not skip first line
kostya
parents: 4013
diff changeset
348 src = pic->data[0];
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
349 stride = pic->linesize[0];
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
350 soff = s->bpp >> 3;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
351 ssize = s->width * soff;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
352 for(i = 0; i < s->height; i++) {
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
353 for(j = soff; j < ssize; j++)
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
354 src[j] += src[j - soff];
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
355 src += stride;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
356 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
357 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
358 break;
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
359 case TIFF_INVERT:
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
360 switch(value){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
361 case 0:
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
362 s->invert = 1;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
363 break;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
364 case 1:
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
365 s->invert = 0;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
366 break;
4187
46f12596304f Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents: 4186
diff changeset
367 case 2:
46f12596304f Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents: 4186
diff changeset
368 case 3:
46f12596304f Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents: 4186
diff changeset
369 break;
46f12596304f Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents: 4186
diff changeset
370 default:
46f12596304f Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents: 4186
diff changeset
371 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
372 return -1;
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
373 }
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
374 break;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
375 case TIFF_PAL:
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
376 if(s->avctx->pix_fmt != PIX_FMT_PAL8){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
377 av_log(s->avctx, AV_LOG_ERROR, "Palette met but this is not palettized format\n");
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
378 return -1;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
379 }
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
380 pal = s->picture.data[1];
4190
405f8395eedc Use table for determining type sizes
kostya
parents: 4188
diff changeset
381 off = type_sizes[type];
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
382 rp = buf;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
383 gp = buf + count / 3 * off;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
384 bp = buf + count / 3 * off * 2;
4190
405f8395eedc Use table for determining type sizes
kostya
parents: 4188
diff changeset
385 off = (type_sizes[type] - 1) << 3;
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
386 for(i = 0; i < count / 3; i++){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
387 j = (tget(&rp, type, s->le) >> off) << 16;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
388 j |= (tget(&gp, type, s->le) >> off) << 8;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
389 j |= tget(&bp, type, s->le) >> off;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
390 pal[i] = j;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
391 }
4192
42e870000702 Give error about planar RGB
kostya
parents: 4191
diff changeset
392 break;
42e870000702 Give error about planar RGB
kostya
parents: 4191
diff changeset
393 case TIFF_PLANAR:
42e870000702 Give error about planar RGB
kostya
parents: 4191
diff changeset
394 if(value == 2){
42e870000702 Give error about planar RGB
kostya
parents: 4191
diff changeset
395 av_log(s->avctx, AV_LOG_ERROR, "Planar format is not supported\n");
42e870000702 Give error about planar RGB
kostya
parents: 4191
diff changeset
396 return -1;
42e870000702 Give error about planar RGB
kostya
parents: 4191
diff changeset
397 }
42e870000702 Give error about planar RGB
kostya
parents: 4191
diff changeset
398 break;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
399 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
400 return 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
401 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
402
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
403 static int decode_frame(AVCodecContext *avctx,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
404 void *data, int *data_size,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
405 uint8_t *buf, int buf_size)
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
406 {
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
407 TiffContext * const s = avctx->priv_data;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
408 AVFrame *picture = data;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
409 AVFrame * const p= (AVFrame*)&s->picture;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
410 uint8_t *orig_buf = buf, *end_buf = buf + buf_size;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
411 int id, le, off;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
412 int i, entries;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
413
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
414 //parse image header
4364
05e932ddaaa9 rename BE/LE_8/16/32 to AV_RL/B_8/16/32
alex
parents: 4193
diff changeset
415 id = AV_RL16(buf); buf += 2;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
416 if(id == 0x4949) le = 1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
417 else if(id == 0x4D4D) le = 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
418 else{
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
419 av_log(avctx, AV_LOG_ERROR, "TIFF header not found\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
420 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
421 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
422 s->le = le;
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
423 s->invert = 0;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
424 // As TIFF 6.0 specification puts it "An arbitrary but carefully chosen number
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
425 // that further identifies the file as a TIFF file"
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
426 if(tget_short(&buf, le) != 42){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
427 av_log(avctx, AV_LOG_ERROR, "The answer to life, universe and everything is not correct!\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
428 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
429 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
430 /* parse image file directory */
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
431 off = tget_long(&buf, le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
432 if(orig_buf + off + 14 >= end_buf){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
433 av_log(avctx, AV_LOG_ERROR, "IFD offset is greater than image size\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
434 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
435 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
436 buf = orig_buf + off;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
437 entries = tget_short(&buf, le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
438 for(i = 0; i < entries; i++){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
439 if(tiff_decode_tag(s, orig_buf, buf, end_buf, p) < 0)
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
440 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
441 buf += 12;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
442 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
443
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
444 if(s->invert){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
445 uint8_t *src;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
446 int j;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
447
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
448 src = s->picture.data[0];
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
449 for(j = 0; j < s->height; j++){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
450 for(i = 0; i < s->picture.linesize[0]; i++)
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
451 src[i] = 255 - src[i];
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
452 src += s->picture.linesize[0];
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
453 }
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
454 }
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
455 *picture= *(AVFrame*)&s->picture;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
456 *data_size = sizeof(AVPicture);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
457
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
458 return buf_size;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
459 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
460
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
461 static int tiff_init(AVCodecContext *avctx){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
462 TiffContext *s = avctx->priv_data;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
463
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
464 s->width = 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
465 s->height = 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
466 s->avctx = avctx;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
467 avcodec_get_frame_defaults((AVFrame*)&s->picture);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
468 avctx->coded_frame= (AVFrame*)&s->picture;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
469 s->picture.data[0] = NULL;
4080
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
470 ff_lzw_decode_open(&s->lzw);
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
471
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
472 return 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
473 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
474
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
475 static int tiff_end(AVCodecContext *avctx)
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
476 {
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
477 TiffContext * const s = avctx->priv_data;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
478
4080
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
479 ff_lzw_decode_close(&s->lzw);
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
480 if(s->picture.data[0])
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
481 avctx->release_buffer(avctx, &s->picture);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
482 return 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
483 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
484
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
485 AVCodec tiff_decoder = {
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
486 "tiff",
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
487 CODEC_TYPE_VIDEO,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
488 CODEC_ID_TIFF,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
489 sizeof(TiffContext),
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
490 tiff_init,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
491 NULL,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
492 tiff_end,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
493 decode_frame,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
494 0,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
495 NULL
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
496 };