annotate tiff.c @ 4187:46f12596304f libavcodec

Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
author kostya
date Mon, 13 Nov 2006 11:20:50 +0000
parents 14fe1e8d337c
children 57b22f48a6a6
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 *
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
21 */
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
22 #include "avcodec.h"
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
23 #ifdef CONFIG_ZLIB
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
24 #include <zlib.h>
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
25 #endif
4080
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
26 #include "lzw.h"
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
27
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
28 /* abridged list of TIFF tags */
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
29 enum TiffTags{
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
30 TIFF_WIDTH = 0x100,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
31 TIFF_HEIGHT,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
32 TIFF_BPP,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
33 TIFF_COMPR,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
34 TIFF_INVERT = 0x106,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
35 TIFF_STRIP_OFFS = 0x111,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
36 TIFF_ROWSPERSTRIP = 0x116,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
37 TIFF_STRIP_SIZE,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
38 TIFF_XPOS = 0x11E,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
39 TIFF_YPOS = 0x11F,
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
40 TIFF_PREDICTOR = 0x13D,
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
41 TIFF_PAL = 0x140
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
42 };
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
43
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
44 enum TiffCompr{
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
45 TIFF_RAW = 1,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
46 TIFF_CCITT_RLE,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
47 TIFF_G3,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
48 TIFF_G4,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
49 TIFF_LZW,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
50 TIFF_JPEG,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
51 TIFF_NEWJPEG,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
52 TIFF_ADOBE_DEFLATE,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
53 TIFF_PACKBITS = 0x8005,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
54 TIFF_DEFLATE = 0x80B2
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
55 };
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
56
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
57 enum TiffTypes{
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
58 TIFF_BYTE = 1,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
59 TIFF_STRING,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
60 TIFF_SHORT,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
61 TIFF_LONG,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
62 TIFF_LONGLONG
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
63 };
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
64
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
65 typedef struct TiffContext {
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
66 AVCodecContext *avctx;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
67 AVFrame picture;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
68
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
69 int width, height;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
70 unsigned int bpp;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
71 int le;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
72 int compr;
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
73 int invert;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
74
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
75 int strips, rps;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
76 int sot;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
77 uint8_t* stripdata;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
78 uint8_t* stripsizes;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
79 int stripsize, stripoff;
4080
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
80 LZWState *lzw;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
81 } TiffContext;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
82
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
83 static int tget_short(uint8_t **p, int le){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
84 int v = le ? LE_16(*p) : BE_16(*p);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
85 *p += 2;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
86 return v;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
87 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
88
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
89 static int tget_long(uint8_t **p, int le){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
90 int v = le ? LE_32(*p) : BE_32(*p);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
91 *p += 4;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
92 return v;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
93 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
94
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
95 static int tget(uint8_t **p, int type, int le){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
96 switch(type){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
97 case TIFF_BYTE : return *(*p)++;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
98 case TIFF_SHORT: return tget_short(p, le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
99 case TIFF_LONG : return tget_long (p, le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
100 default : return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
101 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
102 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
103
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
104 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
105 int c, line, pixels, code;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
106 uint8_t *ssrc = src;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
107 int width = s->width * (s->bpp / 8);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
108 #ifdef CONFIG_ZLIB
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
109 uint8_t *zbuf; unsigned long outlen;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
110
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
111 if(s->compr == TIFF_DEFLATE || s->compr == TIFF_ADOBE_DEFLATE){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
112 outlen = width * lines;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
113 if(lines != s->height){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
114 av_log(s->avctx, AV_LOG_ERROR, "This decoder won't decode ZLib-packed TIFF with %i lines per strip\n", lines);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
115 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
116 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
117 zbuf = av_malloc(outlen);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
118 if(uncompress(zbuf, &outlen, src, size) != Z_OK){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
119 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
120 av_free(zbuf);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
121 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
122 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
123 src = zbuf;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
124 for(line = 0; line < lines; line++){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
125 memcpy(dst, src, width);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
126 dst += stride;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
127 src += width;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
128 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
129 av_free(zbuf);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
130 return 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
131 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
132 #endif
4080
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
133 if(s->compr == TIFF_LZW){
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
134 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
135 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
136 return -1;
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
137 }
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
138 }
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
139 for(line = 0; line < lines; line++){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
140 if(src - ssrc > size){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
141 av_log(s->avctx, AV_LOG_ERROR, "Source data overread\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
142 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
143 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
144 switch(s->compr){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
145 case TIFF_RAW:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
146 memcpy(dst, src, s->width * (s->bpp / 8));
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
147 src += s->width * (s->bpp / 8);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
148 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
149 case TIFF_PACKBITS:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
150 for(pixels = 0; pixels < width;){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
151 code = (int8_t)*src++;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
152 if(code >= 0){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
153 code++;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
154 if(pixels + code > width){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
155 av_log(s->avctx, AV_LOG_ERROR, "Copy went out of bounds\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
156 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
157 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
158 memcpy(dst + pixels, src, code);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
159 src += code;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
160 pixels += code;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
161 }else if(code != -128){ // -127..-1
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
162 code = (-code) + 1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
163 if(pixels + code > width){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
164 av_log(s->avctx, AV_LOG_ERROR, "Run went out of bounds\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
165 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
166 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
167 c = *src++;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
168 memset(dst + pixels, c, code);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
169 pixels += code;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
170 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
171 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
172 break;
4080
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
173 case TIFF_LZW:
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
174 pixels = ff_lzw_decode(s->lzw, dst, width);
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
175 if(pixels < width){
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
176 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
177 return -1;
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
178 }
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
179 break;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
180 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
181 dst += stride;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
182 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
183 return 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
184 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
185
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
186
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
187 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
188 {
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
189 int tag, type, count, off, value = 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
190 uint8_t *src, *dst;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
191 int i, j, ssize, soff, stride;
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
192 int *pal, *rp, *gp, *bp;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
193
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
194 tag = tget_short(&buf, s->le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
195 type = tget_short(&buf, s->le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
196 count = tget_long(&buf, s->le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
197 off = tget_long(&buf, s->le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
198
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
199 if(count == 1){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
200 switch(type){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
201 case TIFF_BYTE:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
202 case TIFF_SHORT:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
203 buf -= 4;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
204 value = tget(&buf, type, s->le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
205 buf = NULL;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
206 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
207 case TIFF_LONG:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
208 value = off;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
209 buf = NULL;
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 value = -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
213 buf = start + off;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
214 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
215 }else{
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
216 buf = start + off;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
217 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
218
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
219 if(buf && (buf < start || buf > end_buf)){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
220 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
221 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
222 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
223
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
224 switch(tag){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
225 case TIFF_WIDTH:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
226 s->width = value;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
227 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
228 case TIFF_HEIGHT:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
229 s->height = value;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
230 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
231 case TIFF_BPP:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
232 if(count == 1) s->bpp = value;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
233 else{
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
234 switch(type){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
235 case TIFF_BYTE:
4183
c70922cdf2ee Correctly detect 4-component images
kostya
parents: 4080
diff changeset
236 s->bpp = (off & 0xFF) + ((off >> 8) & 0xFF) + ((off >> 16) & 0xFF) + ((off >> 24) & 0xFF);
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
237 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
238 case TIFF_SHORT:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
239 case TIFF_LONG:
4183
c70922cdf2ee Correctly detect 4-component images
kostya
parents: 4080
diff changeset
240 s->bpp = 0;
c70922cdf2ee Correctly detect 4-component images
kostya
parents: 4080
diff changeset
241 for(i = 0; i < count; i++) s->bpp += tget(&buf, type, s->le);
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
242 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
243 default:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
244 s->bpp = -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
245 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
246 }
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
247 switch(s->bpp){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
248 case 8:
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
249 s->avctx->pix_fmt = PIX_FMT_PAL8;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
250 break;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
251 case 24:
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
252 s->avctx->pix_fmt = PIX_FMT_RGB24;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
253 break;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
254 default:
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
255 av_log(s->avctx, AV_LOG_ERROR, "Only RGB24 is supported (this bpp=%i)\n", s->bpp);
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
256 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
257 }
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
258 if(s->width != s->avctx->width || s->height != s->avctx->height){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
259 if(avcodec_check_dimensions(s->avctx, s->width, s->height))
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
260 return -1;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
261 avcodec_set_dimensions(s->avctx, s->width, s->height);
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
262 }
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
263 if(s->picture.data[0])
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
264 s->avctx->release_buffer(s->avctx, &s->picture);
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
265 if(s->avctx->get_buffer(s->avctx, &s->picture) < 0){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
266 av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n");
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
267 return -1;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
268 }
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
269 if(s->bpp == 8){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
270 /* make default grayscale pal */
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
271 pal = s->picture.data[1];
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
272 for(i = 0; i < 256; i++)
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
273 pal[i] = i * 0x010101;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
274 }
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
275 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
276 case TIFF_COMPR:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
277 s->compr = value;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
278 switch(s->compr){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
279 case TIFF_RAW:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
280 case TIFF_PACKBITS:
4080
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
281 case TIFF_LZW:
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
282 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
283 case TIFF_DEFLATE:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
284 case TIFF_ADOBE_DEFLATE:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
285 #ifdef CONFIG_ZLIB
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
286 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
287 #else
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
288 av_log(s->avctx, AV_LOG_ERROR, "Deflate: ZLib not compiled in\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
289 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
290 #endif
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
291 case TIFF_G3:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
292 av_log(s->avctx, AV_LOG_ERROR, "CCITT G3 compression is not supported\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
293 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
294 case TIFF_G4:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
295 av_log(s->avctx, AV_LOG_ERROR, "CCITT G4 compression is not supported\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
296 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
297 case TIFF_CCITT_RLE:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
298 av_log(s->avctx, AV_LOG_ERROR, "CCITT RLE compression is not supported\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
299 return -1;
4184
cfaa5d84641e Warn about JPEG in TIFF
kostya
parents: 4183
diff changeset
300 case TIFF_JPEG:
cfaa5d84641e Warn about JPEG in TIFF
kostya
parents: 4183
diff changeset
301 case TIFF_NEWJPEG:
cfaa5d84641e Warn about JPEG in TIFF
kostya
parents: 4183
diff changeset
302 av_log(s->avctx, AV_LOG_ERROR, "JPEG compression is not supported\n");
cfaa5d84641e Warn about JPEG in TIFF
kostya
parents: 4183
diff changeset
303 return -1;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
304 default:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
305 av_log(s->avctx, AV_LOG_ERROR, "Unknown compression method %i\n", s->compr);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
306 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
307 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
308 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
309 case TIFF_ROWSPERSTRIP:
4185
7120f779d313 Rows per strip may be >= height
kostya
parents: 4184
diff changeset
310 if(value < 1){
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
311 av_log(s->avctx, AV_LOG_ERROR, "Incorrect value of rows per strip\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
312 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
313 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
314 s->rps = value;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
315 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
316 case TIFF_STRIP_OFFS:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
317 if(count == 1){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
318 s->stripdata = NULL;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
319 s->stripoff = value;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
320 }else
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
321 s->stripdata = start + off;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
322 s->strips = count;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
323 s->sot = type;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
324 if(s->stripdata > end_buf){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
325 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
326 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
327 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
328 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
329 case TIFF_STRIP_SIZE:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
330 if(count == 1){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
331 s->stripsizes = NULL;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
332 s->stripsize = value;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
333 s->strips = 1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
334 }else{
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
335 s->stripsizes = start + off;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
336 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
337 s->strips = count;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
338 if(s->stripsizes > end_buf){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
339 av_log(s->avctx, AV_LOG_ERROR, "Tag referencing position outside the image\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
340 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
341 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
342 if(!pic->data[0]){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
343 av_log(s->avctx, AV_LOG_ERROR, "Picture initialization missing\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
344 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
345 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
346 /* now we have the data and may start decoding */
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
347 stride = pic->linesize[0];
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
348 dst = pic->data[0];
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
349 for(i = 0; i < s->height; i += s->rps){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
350 if(s->stripsizes)
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
351 ssize = tget(&s->stripsizes, type, s->le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
352 else
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
353 ssize = s->stripsize;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
354
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
355 if(s->stripdata){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
356 soff = tget(&s->stripdata, s->sot, s->le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
357 }else
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
358 soff = s->stripoff;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
359 src = start + soff;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
360 if(tiff_unpack_strip(s, dst, stride, src, ssize, FFMIN(s->rps, s->height - i)) < 0)
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
361 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
362 dst += s->rps * stride;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
363 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
364 break;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
365 case TIFF_PREDICTOR:
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
366 if(!pic->data[0]){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
367 av_log(s->avctx, AV_LOG_ERROR, "Picture initialization missing\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
368 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
369 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
370 if(value == 2){
4079
00a0b18cfb92 10l predictor should not skip first line
kostya
parents: 4013
diff changeset
371 src = pic->data[0];
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
372 stride = pic->linesize[0];
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
373 soff = s->bpp >> 3;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
374 ssize = s->width * soff;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
375 for(i = 0; i < s->height; i++) {
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
376 for(j = soff; j < ssize; j++)
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
377 src[j] += src[j - soff];
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
378 src += stride;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
379 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
380 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
381 break;
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
382 case TIFF_INVERT:
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
383 switch(value){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
384 case 0:
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
385 s->invert = 1;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
386 break;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
387 case 1:
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
388 s->invert = 0;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
389 break;
4187
46f12596304f Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents: 4186
diff changeset
390 case 2:
46f12596304f Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents: 4186
diff changeset
391 case 3:
46f12596304f Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents: 4186
diff changeset
392 break;
46f12596304f Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents: 4186
diff changeset
393 default:
46f12596304f Print error message for unsupported mode (RGB planar,CMYK,YCrCb)
kostya
parents: 4186
diff changeset
394 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
395 return -1;
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
396 }
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
397 break;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
398 case TIFF_PAL:
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
399 if(s->avctx->pix_fmt != PIX_FMT_PAL8){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
400 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
401 return -1;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
402 }
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
403 pal = s->picture.data[1];
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
404 off = (type == TIFF_SHORT) ? 2 : 1;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
405 rp = buf;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
406 gp = buf + count / 3 * off;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
407 bp = buf + count / 3 * off * 2;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
408 off = (type == TIFF_SHORT) ? 8 : 0;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
409 for(i = 0; i < count / 3; i++){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
410 j = (tget(&rp, type, s->le) >> off) << 16;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
411 j |= (tget(&gp, type, s->le) >> off) << 8;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
412 j |= tget(&bp, type, s->le) >> off;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
413 pal[i] = j;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
414 }
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
415 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
416 return 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
417 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
418
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
419 static int decode_frame(AVCodecContext *avctx,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
420 void *data, int *data_size,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
421 uint8_t *buf, int buf_size)
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
422 {
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
423 TiffContext * const s = avctx->priv_data;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
424 AVFrame *picture = data;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
425 AVFrame * const p= (AVFrame*)&s->picture;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
426 uint8_t *orig_buf = buf, *end_buf = buf + buf_size;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
427 int id, le, off;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
428 int i, entries;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
429
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
430 //parse image header
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
431 id = LE_16(buf); buf += 2;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
432 if(id == 0x4949) le = 1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
433 else if(id == 0x4D4D) le = 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
434 else{
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
435 av_log(avctx, AV_LOG_ERROR, "TIFF header not found\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
436 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
437 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
438 s->le = le;
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
439 s->invert = 0;
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
440 // As TIFF 6.0 specification puts it "An arbitrary but carefully chosen number
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
441 // that further identifies the file as a TIFF file"
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
442 if(tget_short(&buf, le) != 42){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
443 av_log(avctx, AV_LOG_ERROR, "The answer to life, universe and everything is not correct!\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
444 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
445 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
446 /* parse image file directory */
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
447 off = tget_long(&buf, le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
448 if(orig_buf + off + 14 >= end_buf){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
449 av_log(avctx, AV_LOG_ERROR, "IFD offset is greater than image size\n");
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
450 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
451 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
452 buf = orig_buf + off;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
453 entries = tget_short(&buf, le);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
454 for(i = 0; i < entries; i++){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
455 if(tiff_decode_tag(s, orig_buf, buf, end_buf, p) < 0)
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
456 return -1;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
457 buf += 12;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
458 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
459
4186
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
460 if(s->invert){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
461 uint8_t *src;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
462 int j;
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
463
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
464 src = s->picture.data[0];
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
465 for(j = 0; j < s->height; j++){
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
466 for(i = 0; i < s->picture.linesize[0]; i++)
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
467 src[i] = 255 - src[i];
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
468 src += s->picture.linesize[0];
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
469 }
14fe1e8d337c 8-bit images support for TIFF
kostya
parents: 4185
diff changeset
470 }
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
471 *picture= *(AVFrame*)&s->picture;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
472 *data_size = sizeof(AVPicture);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
473
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
474 return buf_size;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
475 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
476
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
477 static int tiff_init(AVCodecContext *avctx){
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
478 TiffContext *s = avctx->priv_data;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
479
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
480 s->width = 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
481 s->height = 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
482 s->avctx = avctx;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
483 avcodec_get_frame_defaults((AVFrame*)&s->picture);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
484 avctx->coded_frame= (AVFrame*)&s->picture;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
485 s->picture.data[0] = NULL;
4080
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
486 ff_lzw_decode_open(&s->lzw);
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
487
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
488 return 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
489 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
490
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
491 static int tiff_end(AVCodecContext *avctx)
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
492 {
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
493 TiffContext * const s = avctx->priv_data;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
494
4080
f426c81afc9e LZW decoder as separate module plus TIFF LZW support
kostya
parents: 4079
diff changeset
495 ff_lzw_decode_close(&s->lzw);
4013
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
496 if(s->picture.data[0])
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
497 avctx->release_buffer(avctx, &s->picture);
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
498 return 0;
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
499 }
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
500
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
501 AVCodec tiff_decoder = {
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
502 "tiff",
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
503 CODEC_TYPE_VIDEO,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
504 CODEC_ID_TIFF,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
505 sizeof(TiffContext),
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
506 tiff_init,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
507 NULL,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
508 tiff_end,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
509 decode_frame,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
510 0,
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
511 NULL
aace6b74fddc TIFF decoder
kostya
parents:
diff changeset
512 };