Mercurial > libavcodec.hg
annotate flicvideo.c @ 5395:87d908152cb7 libavcodec
increase buffer size of LAME MP3 encoder
The previous size lead to A/V sync issues
Patch by Andreas ªÓman %andreas AA olebyn PP nu%
Original thread:
Date: Jul 21, 2007 9:53 AM
Subject: [FFmpeg-devel] [PATCH] lame buffer shortage
author | gpoirier |
---|---|
date | Tue, 24 Jul 2007 09:59:54 +0000 |
parents | 2b72f9bc4f06 |
children | cdc40afde7b8 |
rev | line source |
---|---|
1624 | 1 /* |
2 * FLI/FLC Animation Video Decoder | |
1759
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
3 * Copyright (C) 2003, 2004 the ffmpeg project |
1624 | 4 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3071
diff
changeset
|
5 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3071
diff
changeset
|
6 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3071
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
1624 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3071
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
1624 | 11 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3071
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
1624 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3071
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2967
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
1624 | 20 */ |
21 | |
22 /** | |
23 * @file flic.c | |
24 * Autodesk Animator FLI/FLC Video Decoder | |
25 * by Mike Melanson (melanson@pcisys.net) | |
26 * for more information on the .fli/.flc file format and all of its many | |
27 * variations, visit: | |
28 * http://www.compuphase.com/flic.htm | |
29 * | |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
30 * This decoder outputs PAL8/RGB555/RGB565 and maybe one day RGB24 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
31 * colorspace data, depending on the FLC. To use this decoder, be |
1624 | 32 * sure that your demuxer sends the FLI file header to the decoder via |
33 * the extradata chunk in AVCodecContext. The chunk should be 128 bytes | |
34 * large. The only exception is for FLI files from the game "Magic Carpet", | |
35 * in which the header is only 12 bytes. | |
36 */ | |
37 | |
38 #include <stdio.h> | |
39 #include <stdlib.h> | |
40 #include <string.h> | |
41 #include <unistd.h> | |
42 | |
43 #include "avcodec.h" | |
44 #include "bswap.h" | |
45 | |
46 #define FLI_256_COLOR 4 | |
47 #define FLI_DELTA 7 | |
48 #define FLI_COLOR 11 | |
49 #define FLI_LC 12 | |
50 #define FLI_BLACK 13 | |
51 #define FLI_BRUN 15 | |
52 #define FLI_COPY 16 | |
53 #define FLI_MINI 18 | |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
54 #define FLI_DTA_BRUN 25 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
55 #define FLI_DTA_COPY 26 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
56 #define FLI_DTA_LC 27 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
57 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
58 #define FLI_TYPE_CODE (0xAF11) |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
59 #define FLC_FLX_TYPE_CODE (0xAF12) |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
60 #define FLC_DTA_TYPE_CODE (0xAF44) /* Marks an "Extended FLC" comes from Dave's Targa Animator (DTA) */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
61 #define FLC_MAGIC_CARPET_SYNTHETIC_TYPE_CODE (0xAF13) |
1624 | 62 |
2825
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
63 #define CHECK_PIXEL_PTR(n) \ |
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
64 if (pixel_ptr + n > pixel_limit) { \ |
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
65 av_log (s->avctx, AV_LOG_INFO, "Problem: pixel_ptr >= pixel_limit (%d >= %d)\n", \ |
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
66 pixel_ptr + n, pixel_limit); \ |
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
67 return -1; \ |
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
68 } \ |
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
69 |
1624 | 70 typedef struct FlicDecodeContext { |
71 AVCodecContext *avctx; | |
72 AVFrame frame; | |
73 | |
74 unsigned int palette[256]; | |
75 int new_palette; | |
76 int fli_type; /* either 0xAF11 or 0xAF12, affects palette resolution */ | |
77 } FlicDecodeContext; | |
78 | |
79 static int flic_decode_init(AVCodecContext *avctx) | |
80 { | |
4827 | 81 FlicDecodeContext *s = avctx->priv_data; |
1624 | 82 unsigned char *fli_header = (unsigned char *)avctx->extradata; |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
83 int depth; |
1624 | 84 |
85 s->avctx = avctx; | |
86 | |
4364 | 87 s->fli_type = AV_RL16(&fli_header[4]); /* Might be overridden if a Magic Carpet FLC */ |
88 depth = AV_RL16(&fli_header[12]); | |
2967 | 89 |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
90 if (depth == 0) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
91 depth = 8; /* Some FLC generators set depth to zero, when they mean 8Bpp. Fix up here */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
92 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
93 |
1624 | 94 if (s->avctx->extradata_size == 12) { |
95 /* special case for magic carpet FLIs */ | |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
96 s->fli_type = FLC_MAGIC_CARPET_SYNTHETIC_TYPE_CODE; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
97 } else if (s->avctx->extradata_size != 128) { |
1759
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
98 av_log(avctx, AV_LOG_ERROR, "Expected extradata of 12 or 128 bytes\n"); |
1624 | 99 return -1; |
100 } | |
101 | |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
102 if ((s->fli_type == FLC_FLX_TYPE_CODE) && (depth == 16)) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
103 depth = 15; /* Original Autodesk FLX's say the depth is 16Bpp when it is really 15Bpp */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
104 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
105 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
106 switch (depth) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
107 case 8 : avctx->pix_fmt = PIX_FMT_PAL8; break; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
108 case 15 : avctx->pix_fmt = PIX_FMT_RGB555; break; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
109 case 16 : avctx->pix_fmt = PIX_FMT_RGB565; break; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
110 case 24 : avctx->pix_fmt = PIX_FMT_BGR24; /* Supposedly BGR, but havent any files to test with */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
111 av_log(avctx, AV_LOG_ERROR, "24Bpp FLC/FLX is unsupported due to no test files.\n"); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
112 return -1; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
113 break; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
114 default : |
4627 | 115 av_log(avctx, AV_LOG_ERROR, "Unknown FLC/FLX depth of %d Bpp is unsupported.\n",depth); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
116 return -1; |
2967 | 117 } |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
118 |
1759
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
119 s->frame.data[0] = NULL; |
1624 | 120 s->new_palette = 0; |
121 | |
122 return 0; | |
123 } | |
124 | |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
125 static int flic_decode_frame_8BPP(AVCodecContext *avctx, |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
126 void *data, int *data_size, |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
127 uint8_t *buf, int buf_size) |
1624 | 128 { |
4827 | 129 FlicDecodeContext *s = avctx->priv_data; |
1624 | 130 |
131 int stream_ptr = 0; | |
132 int stream_ptr_after_color_chunk; | |
133 int pixel_ptr; | |
134 int palette_ptr; | |
135 unsigned char palette_idx1; | |
136 unsigned char palette_idx2; | |
137 | |
138 unsigned int frame_size; | |
139 int num_chunks; | |
140 | |
141 unsigned int chunk_size; | |
142 int chunk_type; | |
143 | |
144 int i, j; | |
145 | |
146 int color_packets; | |
147 int color_changes; | |
148 int color_shift; | |
149 unsigned char r, g, b; | |
150 | |
151 int lines; | |
152 int compressed_lines; | |
153 int starting_line; | |
154 signed short line_packets; | |
155 int y_ptr; | |
4199 | 156 int byte_run; |
1624 | 157 int pixel_skip; |
158 int pixel_countdown; | |
159 unsigned char *pixels; | |
2825
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
160 int pixel_limit; |
2967 | 161 |
1624 | 162 s->frame.reference = 1; |
1759
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
163 s->frame.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE; |
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
164 if (avctx->reget_buffer(avctx, &s->frame) < 0) { |
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
165 av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n"); |
1624 | 166 return -1; |
167 } | |
168 | |
169 pixels = s->frame.data[0]; | |
2825
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
170 pixel_limit = s->avctx->height * s->frame.linesize[0]; |
1624 | 171 |
4364 | 172 frame_size = AV_RL32(&buf[stream_ptr]); |
1624 | 173 stream_ptr += 6; /* skip the magic number */ |
4364 | 174 num_chunks = AV_RL16(&buf[stream_ptr]); |
1624 | 175 stream_ptr += 10; /* skip padding */ |
176 | |
177 frame_size -= 16; | |
178 | |
179 /* iterate through the chunks */ | |
180 while ((frame_size > 0) && (num_chunks > 0)) { | |
4364 | 181 chunk_size = AV_RL32(&buf[stream_ptr]); |
1624 | 182 stream_ptr += 4; |
4364 | 183 chunk_type = AV_RL16(&buf[stream_ptr]); |
1624 | 184 stream_ptr += 2; |
185 | |
186 switch (chunk_type) { | |
187 case FLI_256_COLOR: | |
188 case FLI_COLOR: | |
189 stream_ptr_after_color_chunk = stream_ptr + chunk_size - 6; | |
190 | |
2967 | 191 /* check special case: If this file is from the Magic Carpet |
192 * game and uses 6-bit colors even though it reports 256-color | |
1624 | 193 * chunks in a 0xAF12-type file (fli_type is set to 0xAF13 during |
194 * initialization) */ | |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
195 if ((chunk_type == FLI_256_COLOR) && (s->fli_type != FLC_MAGIC_CARPET_SYNTHETIC_TYPE_CODE)) |
1624 | 196 color_shift = 0; |
197 else | |
198 color_shift = 2; | |
199 /* set up the palette */ | |
4364 | 200 color_packets = AV_RL16(&buf[stream_ptr]); |
1624 | 201 stream_ptr += 2; |
202 palette_ptr = 0; | |
203 for (i = 0; i < color_packets; i++) { | |
204 /* first byte is how many colors to skip */ | |
205 palette_ptr += buf[stream_ptr++]; | |
206 | |
207 /* next byte indicates how many entries to change */ | |
208 color_changes = buf[stream_ptr++]; | |
209 | |
210 /* if there are 0 color changes, there are actually 256 */ | |
211 if (color_changes == 0) | |
212 color_changes = 256; | |
213 | |
214 for (j = 0; j < color_changes; j++) { | |
4045 | 215 unsigned int entry; |
1624 | 216 |
217 /* wrap around, for good measure */ | |
2422 | 218 if ((unsigned)palette_ptr >= 256) |
1624 | 219 palette_ptr = 0; |
220 | |
221 r = buf[stream_ptr++] << color_shift; | |
222 g = buf[stream_ptr++] << color_shift; | |
223 b = buf[stream_ptr++] << color_shift; | |
4045 | 224 entry = (r << 16) | (g << 8) | b; |
225 if (s->palette[palette_ptr] != entry) | |
226 s->new_palette = 1; | |
227 s->palette[palette_ptr++] = entry; | |
1624 | 228 } |
229 } | |
230 | |
231 /* color chunks sometimes have weird 16-bit alignment issues; | |
232 * therefore, take the hardline approach and set the stream_ptr | |
233 * to the value calculated w.r.t. the size specified by the color | |
234 * chunk header */ | |
235 stream_ptr = stream_ptr_after_color_chunk; | |
236 | |
237 break; | |
238 | |
239 case FLI_DELTA: | |
240 y_ptr = 0; | |
4364 | 241 compressed_lines = AV_RL16(&buf[stream_ptr]); |
1624 | 242 stream_ptr += 2; |
243 while (compressed_lines > 0) { | |
4364 | 244 line_packets = AV_RL16(&buf[stream_ptr]); |
1624 | 245 stream_ptr += 2; |
4234
e560d163e7a8
Implement DELTA_FLI opcodes correctly. Patch by Steven Johnson
alex
parents:
4233
diff
changeset
|
246 if ((line_packets & 0xC000) == 0xC000) { |
e560d163e7a8
Implement DELTA_FLI opcodes correctly. Patch by Steven Johnson
alex
parents:
4233
diff
changeset
|
247 // line skip opcode |
1624 | 248 line_packets = -line_packets; |
1759
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
249 y_ptr += line_packets * s->frame.linesize[0]; |
4234
e560d163e7a8
Implement DELTA_FLI opcodes correctly. Patch by Steven Johnson
alex
parents:
4233
diff
changeset
|
250 } else if ((line_packets & 0xC000) == 0x4000) { |
e560d163e7a8
Implement DELTA_FLI opcodes correctly. Patch by Steven Johnson
alex
parents:
4233
diff
changeset
|
251 av_log(avctx, AV_LOG_ERROR, "Undefined opcode (%x) in DELTA_FLI\n", line_packets); |
e560d163e7a8
Implement DELTA_FLI opcodes correctly. Patch by Steven Johnson
alex
parents:
4233
diff
changeset
|
252 } else if ((line_packets & 0xC000) == 0x8000) { |
e560d163e7a8
Implement DELTA_FLI opcodes correctly. Patch by Steven Johnson
alex
parents:
4233
diff
changeset
|
253 // "last byte" opcode |
e560d163e7a8
Implement DELTA_FLI opcodes correctly. Patch by Steven Johnson
alex
parents:
4233
diff
changeset
|
254 pixels[y_ptr + s->frame.linesize[0] - 1] = line_packets & 0xff; |
1624 | 255 } else { |
256 compressed_lines--; | |
257 pixel_ptr = y_ptr; | |
258 pixel_countdown = s->avctx->width; | |
259 for (i = 0; i < line_packets; i++) { | |
260 /* account for the skip bytes */ | |
261 pixel_skip = buf[stream_ptr++]; | |
262 pixel_ptr += pixel_skip; | |
263 pixel_countdown -= pixel_skip; | |
4199 | 264 byte_run = (signed char)(buf[stream_ptr++]); |
1624 | 265 if (byte_run < 0) { |
266 byte_run = -byte_run; | |
267 palette_idx1 = buf[stream_ptr++]; | |
268 palette_idx2 = buf[stream_ptr++]; | |
2825
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
269 CHECK_PIXEL_PTR(byte_run); |
1624 | 270 for (j = 0; j < byte_run; j++, pixel_countdown -= 2) { |
271 pixels[pixel_ptr++] = palette_idx1; | |
272 pixels[pixel_ptr++] = palette_idx2; | |
273 } | |
274 } else { | |
2825
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
275 CHECK_PIXEL_PTR(byte_run * 2); |
1624 | 276 for (j = 0; j < byte_run * 2; j++, pixel_countdown--) { |
277 palette_idx1 = buf[stream_ptr++]; | |
278 pixels[pixel_ptr++] = palette_idx1; | |
279 } | |
280 } | |
281 } | |
282 | |
283 y_ptr += s->frame.linesize[0]; | |
284 } | |
285 } | |
286 break; | |
287 | |
288 case FLI_LC: | |
289 /* line compressed */ | |
4364 | 290 starting_line = AV_RL16(&buf[stream_ptr]); |
1624 | 291 stream_ptr += 2; |
292 y_ptr = 0; | |
1759
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
293 y_ptr += starting_line * s->frame.linesize[0]; |
1624 | 294 |
4364 | 295 compressed_lines = AV_RL16(&buf[stream_ptr]); |
1624 | 296 stream_ptr += 2; |
297 while (compressed_lines > 0) { | |
298 pixel_ptr = y_ptr; | |
299 pixel_countdown = s->avctx->width; | |
300 line_packets = buf[stream_ptr++]; | |
301 if (line_packets > 0) { | |
302 for (i = 0; i < line_packets; i++) { | |
303 /* account for the skip bytes */ | |
304 pixel_skip = buf[stream_ptr++]; | |
305 pixel_ptr += pixel_skip; | |
306 pixel_countdown -= pixel_skip; | |
4199 | 307 byte_run = (signed char)(buf[stream_ptr++]); |
1624 | 308 if (byte_run > 0) { |
2825
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
309 CHECK_PIXEL_PTR(byte_run); |
1624 | 310 for (j = 0; j < byte_run; j++, pixel_countdown--) { |
311 palette_idx1 = buf[stream_ptr++]; | |
312 pixels[pixel_ptr++] = palette_idx1; | |
313 } | |
4233
5e05fadc93d1
support byte_run=0 case in DELTA_FLI (this case means only skip pixels)
alex
parents:
4232
diff
changeset
|
314 } else if (byte_run < 0) { |
1624 | 315 byte_run = -byte_run; |
316 palette_idx1 = buf[stream_ptr++]; | |
2825
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
317 CHECK_PIXEL_PTR(byte_run); |
1624 | 318 for (j = 0; j < byte_run; j++, pixel_countdown--) { |
319 pixels[pixel_ptr++] = palette_idx1; | |
320 } | |
321 } | |
322 } | |
323 } | |
324 | |
325 y_ptr += s->frame.linesize[0]; | |
326 compressed_lines--; | |
327 } | |
328 break; | |
329 | |
330 case FLI_BLACK: | |
331 /* set the whole frame to color 0 (which is usually black) */ | |
332 memset(pixels, 0, | |
333 s->frame.linesize[0] * s->avctx->height); | |
334 break; | |
335 | |
336 case FLI_BRUN: | |
337 /* Byte run compression: This chunk type only occurs in the first | |
338 * FLI frame and it will update the entire frame. */ | |
339 y_ptr = 0; | |
340 for (lines = 0; lines < s->avctx->height; lines++) { | |
341 pixel_ptr = y_ptr; | |
342 /* disregard the line packets; instead, iterate through all | |
343 * pixels on a row */ | |
344 stream_ptr++; | |
345 pixel_countdown = s->avctx->width; | |
346 while (pixel_countdown > 0) { | |
4199 | 347 byte_run = (signed char)(buf[stream_ptr++]); |
1624 | 348 if (byte_run > 0) { |
349 palette_idx1 = buf[stream_ptr++]; | |
2825
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
350 CHECK_PIXEL_PTR(byte_run); |
1624 | 351 for (j = 0; j < byte_run; j++) { |
352 pixels[pixel_ptr++] = palette_idx1; | |
353 pixel_countdown--; | |
354 if (pixel_countdown < 0) | |
4539 | 355 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) at line %d\n", |
356 pixel_countdown, lines); | |
1624 | 357 } |
358 } else { /* copy bytes if byte_run < 0 */ | |
359 byte_run = -byte_run; | |
2825
faa53103dde0
tinfoil patch: make sure that pixel pointer does not go out of bounds
melanson
parents:
2422
diff
changeset
|
360 CHECK_PIXEL_PTR(byte_run); |
1624 | 361 for (j = 0; j < byte_run; j++) { |
362 palette_idx1 = buf[stream_ptr++]; | |
363 pixels[pixel_ptr++] = palette_idx1; | |
364 pixel_countdown--; | |
365 if (pixel_countdown < 0) | |
4539 | 366 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) at line %d\n", |
367 pixel_countdown, lines); | |
1624 | 368 } |
369 } | |
370 } | |
371 | |
372 y_ptr += s->frame.linesize[0]; | |
373 } | |
374 break; | |
375 | |
376 case FLI_COPY: | |
1759
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
377 /* copy the chunk (uncompressed frame) */ |
1624 | 378 if (chunk_size - 6 > s->avctx->width * s->avctx->height) { |
1759
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
379 av_log(avctx, AV_LOG_ERROR, "In chunk FLI_COPY : source data (%d bytes) " \ |
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
380 "bigger than image, skipping chunk\n", chunk_size - 6); |
1624 | 381 stream_ptr += chunk_size - 6; |
382 } else { | |
383 for (y_ptr = 0; y_ptr < s->frame.linesize[0] * s->avctx->height; | |
384 y_ptr += s->frame.linesize[0]) { | |
385 memcpy(&pixels[y_ptr], &buf[stream_ptr], | |
386 s->avctx->width); | |
387 stream_ptr += s->avctx->width; | |
388 } | |
389 } | |
390 break; | |
391 | |
392 case FLI_MINI: | |
393 /* some sort of a thumbnail? disregard this chunk... */ | |
394 stream_ptr += chunk_size - 6; | |
395 break; | |
396 | |
397 default: | |
1759
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
398 av_log(avctx, AV_LOG_ERROR, "Unrecognized chunk type: %d\n", chunk_type); |
1624 | 399 break; |
400 } | |
401 | |
402 frame_size -= chunk_size; | |
403 num_chunks--; | |
404 } | |
405 | |
406 /* by the end of the chunk, the stream ptr should equal the frame | |
407 * size (minus 1, possibly); if it doesn't, issue a warning */ | |
408 if ((stream_ptr != buf_size) && (stream_ptr != buf_size - 1)) | |
1759
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
409 av_log(avctx, AV_LOG_ERROR, "Processed FLI chunk where chunk size = %d " \ |
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
410 "and final chunk ptr = %d\n", buf_size, stream_ptr); |
1624 | 411 |
412 /* make the palette available on the way out */ | |
4045 | 413 memcpy(s->frame.data[1], s->palette, AVPALETTE_SIZE); |
414 if (s->new_palette) { | |
1624 | 415 s->frame.palette_has_changed = 1; |
416 s->new_palette = 0; | |
417 } | |
418 | |
419 *data_size=sizeof(AVFrame); | |
420 *(AVFrame*)data = s->frame; | |
421 | |
422 return buf_size; | |
423 } | |
424 | |
3071
cc0357a90e8f
make some functions static (patch by Dieter < freebsd at sopwith.solgatos.com >)
aurel
parents:
3036
diff
changeset
|
425 static int flic_decode_frame_15_16BPP(AVCodecContext *avctx, |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
426 void *data, int *data_size, |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
427 uint8_t *buf, int buf_size) |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
428 { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
429 /* Note, the only difference between the 15Bpp and 16Bpp */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
430 /* Format is the pixel format, the packets are processed the same. */ |
4827 | 431 FlicDecodeContext *s = avctx->priv_data; |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
432 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
433 int stream_ptr = 0; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
434 int pixel_ptr; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
435 unsigned char palette_idx1; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
436 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
437 unsigned int frame_size; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
438 int num_chunks; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
439 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
440 unsigned int chunk_size; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
441 int chunk_type; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
442 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
443 int i, j; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
444 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
445 int lines; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
446 int compressed_lines; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
447 signed short line_packets; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
448 int y_ptr; |
4199 | 449 int byte_run; |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
450 int pixel_skip; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
451 int pixel_countdown; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
452 unsigned char *pixels; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
453 int pixel; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
454 int pixel_limit; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
455 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
456 s->frame.reference = 1; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
457 s->frame.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
458 if (avctx->reget_buffer(avctx, &s->frame) < 0) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
459 av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n"); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
460 return -1; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
461 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
462 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
463 pixels = s->frame.data[0]; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
464 pixel_limit = s->avctx->height * s->frame.linesize[0]; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
465 |
4364 | 466 frame_size = AV_RL32(&buf[stream_ptr]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
467 stream_ptr += 6; /* skip the magic number */ |
4364 | 468 num_chunks = AV_RL16(&buf[stream_ptr]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
469 stream_ptr += 10; /* skip padding */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
470 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
471 frame_size -= 16; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
472 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
473 /* iterate through the chunks */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
474 while ((frame_size > 0) && (num_chunks > 0)) { |
4364 | 475 chunk_size = AV_RL32(&buf[stream_ptr]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
476 stream_ptr += 4; |
4364 | 477 chunk_type = AV_RL16(&buf[stream_ptr]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
478 stream_ptr += 2; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
479 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
480 switch (chunk_type) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
481 case FLI_256_COLOR: |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
482 case FLI_COLOR: |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
483 /* For some reason, it seems that non-paletised flics do include one of these */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
484 /* chunks in their first frame. Why i do not know, it seems rather extraneous */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
485 /* av_log(avctx, AV_LOG_ERROR, "Unexpected Palette chunk %d in non-paletised FLC\n",chunk_type);*/ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
486 stream_ptr = stream_ptr + chunk_size - 6; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
487 break; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
488 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
489 case FLI_DELTA: |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
490 case FLI_DTA_LC: |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
491 y_ptr = 0; |
4364 | 492 compressed_lines = AV_RL16(&buf[stream_ptr]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
493 stream_ptr += 2; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
494 while (compressed_lines > 0) { |
4364 | 495 line_packets = AV_RL16(&buf[stream_ptr]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
496 stream_ptr += 2; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
497 if (line_packets < 0) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
498 line_packets = -line_packets; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
499 y_ptr += line_packets * s->frame.linesize[0]; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
500 } else { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
501 compressed_lines--; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
502 pixel_ptr = y_ptr; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
503 pixel_countdown = s->avctx->width; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
504 for (i = 0; i < line_packets; i++) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
505 /* account for the skip bytes */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
506 pixel_skip = buf[stream_ptr++]; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
507 pixel_ptr += (pixel_skip*2); /* Pixel is 2 bytes wide */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
508 pixel_countdown -= pixel_skip; |
4199 | 509 byte_run = (signed char)(buf[stream_ptr++]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
510 if (byte_run < 0) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
511 byte_run = -byte_run; |
4364 | 512 pixel = AV_RL16(&buf[stream_ptr]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
513 stream_ptr += 2; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
514 CHECK_PIXEL_PTR(byte_run); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
515 for (j = 0; j < byte_run; j++, pixel_countdown -= 2) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
516 *((signed short*)(&pixels[pixel_ptr])) = pixel; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
517 pixel_ptr += 2; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
518 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
519 } else { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
520 CHECK_PIXEL_PTR(byte_run); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
521 for (j = 0; j < byte_run; j++, pixel_countdown--) { |
4364 | 522 *((signed short*)(&pixels[pixel_ptr])) = AV_RL16(&buf[stream_ptr]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
523 stream_ptr += 2; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
524 pixel_ptr += 2; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
525 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
526 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
527 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
528 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
529 y_ptr += s->frame.linesize[0]; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
530 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
531 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
532 break; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
533 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
534 case FLI_LC: |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
535 av_log(avctx, AV_LOG_ERROR, "Unexpected FLI_LC chunk in non-paletised FLC\n"); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
536 stream_ptr = stream_ptr + chunk_size - 6; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
537 break; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
538 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
539 case FLI_BLACK: |
4235 | 540 /* set the whole frame to 0x0000 which is black in both 15Bpp and 16Bpp modes. */ |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
541 memset(pixels, 0x0000, |
4232 | 542 s->frame.linesize[0] * s->avctx->height); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
543 break; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
544 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
545 case FLI_BRUN: |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
546 y_ptr = 0; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
547 for (lines = 0; lines < s->avctx->height; lines++) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
548 pixel_ptr = y_ptr; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
549 /* disregard the line packets; instead, iterate through all |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
550 * pixels on a row */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
551 stream_ptr++; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
552 pixel_countdown = (s->avctx->width * 2); |
2967 | 553 |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
554 while (pixel_countdown > 0) { |
4199 | 555 byte_run = (signed char)(buf[stream_ptr++]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
556 if (byte_run > 0) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
557 palette_idx1 = buf[stream_ptr++]; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
558 CHECK_PIXEL_PTR(byte_run); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
559 for (j = 0; j < byte_run; j++) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
560 pixels[pixel_ptr++] = palette_idx1; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
561 pixel_countdown--; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
562 if (pixel_countdown < 0) |
4539 | 563 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) (linea%d)\n", |
564 pixel_countdown, lines); | |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
565 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
566 } else { /* copy bytes if byte_run < 0 */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
567 byte_run = -byte_run; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
568 CHECK_PIXEL_PTR(byte_run); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
569 for (j = 0; j < byte_run; j++) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
570 palette_idx1 = buf[stream_ptr++]; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
571 pixels[pixel_ptr++] = palette_idx1; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
572 pixel_countdown--; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
573 if (pixel_countdown < 0) |
4539 | 574 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) at line %d\n", |
575 pixel_countdown, lines); | |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
576 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
577 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
578 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
579 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
580 /* Now FLX is strange, in that it is "byte" as opposed to "pixel" run length compressed. |
5127 | 581 * This does not give us any good oportunity to perform word endian conversion |
582 * during decompression. So if it is required (i.e., this is not a LE target, we do | |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
583 * a second pass over the line here, swapping the bytes. |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
584 */ |
5154
b683b5f78fab
replace endian detection hack with #ifdef WORDS_BIGENDIAN
mru
parents:
5129
diff
changeset
|
585 #ifdef WORDS_BIGENDIAN |
5155 | 586 pixel_ptr = y_ptr; |
587 pixel_countdown = s->avctx->width; | |
588 while (pixel_countdown > 0) { | |
4364 | 589 *((signed short*)(&pixels[pixel_ptr])) = AV_RL16(&buf[pixel_ptr]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
590 pixel_ptr += 2; |
5155 | 591 } |
5154
b683b5f78fab
replace endian detection hack with #ifdef WORDS_BIGENDIAN
mru
parents:
5129
diff
changeset
|
592 #endif |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
593 y_ptr += s->frame.linesize[0]; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
594 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
595 break; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
596 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
597 case FLI_DTA_BRUN: |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
598 y_ptr = 0; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
599 for (lines = 0; lines < s->avctx->height; lines++) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
600 pixel_ptr = y_ptr; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
601 /* disregard the line packets; instead, iterate through all |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
602 * pixels on a row */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
603 stream_ptr++; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
604 pixel_countdown = s->avctx->width; /* Width is in pixels, not bytes */ |
2967 | 605 |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
606 while (pixel_countdown > 0) { |
4199 | 607 byte_run = (signed char)(buf[stream_ptr++]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
608 if (byte_run > 0) { |
4364 | 609 pixel = AV_RL16(&buf[stream_ptr]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
610 stream_ptr += 2; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
611 CHECK_PIXEL_PTR(byte_run); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
612 for (j = 0; j < byte_run; j++) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
613 *((signed short*)(&pixels[pixel_ptr])) = pixel; |
2967 | 614 pixel_ptr += 2; |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
615 pixel_countdown--; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
616 if (pixel_countdown < 0) |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
617 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d)\n", |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
618 pixel_countdown); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
619 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
620 } else { /* copy pixels if byte_run < 0 */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
621 byte_run = -byte_run; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
622 CHECK_PIXEL_PTR(byte_run); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
623 for (j = 0; j < byte_run; j++) { |
4364 | 624 *((signed short*)(&pixels[pixel_ptr])) = AV_RL16(&buf[stream_ptr]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
625 stream_ptr += 2; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
626 pixel_ptr += 2; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
627 pixel_countdown--; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
628 if (pixel_countdown < 0) |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
629 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d)\n", |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
630 pixel_countdown); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
631 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
632 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
633 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
634 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
635 y_ptr += s->frame.linesize[0]; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
636 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
637 break; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
638 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
639 case FLI_COPY: |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
640 case FLI_DTA_COPY: |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
641 /* copy the chunk (uncompressed frame) */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
642 if (chunk_size - 6 > (unsigned int)(s->avctx->width * s->avctx->height)*2) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
643 av_log(avctx, AV_LOG_ERROR, "In chunk FLI_COPY : source data (%d bytes) " \ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
644 "bigger than image, skipping chunk\n", chunk_size - 6); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
645 stream_ptr += chunk_size - 6; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
646 } else { |
2967 | 647 |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
648 for (y_ptr = 0; y_ptr < s->frame.linesize[0] * s->avctx->height; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
649 y_ptr += s->frame.linesize[0]) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
650 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
651 pixel_countdown = s->avctx->width; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
652 pixel_ptr = 0; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
653 while (pixel_countdown > 0) { |
4364 | 654 *((signed short*)(&pixels[y_ptr + pixel_ptr])) = AV_RL16(&buf[stream_ptr+pixel_ptr]); |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
655 pixel_ptr += 2; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
656 pixel_countdown--; |
2967 | 657 } |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
658 stream_ptr += s->avctx->width*2; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
659 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
660 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
661 break; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
662 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
663 case FLI_MINI: |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
664 /* some sort of a thumbnail? disregard this chunk... */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
665 stream_ptr += chunk_size - 6; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
666 break; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
667 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
668 default: |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
669 av_log(avctx, AV_LOG_ERROR, "Unrecognized chunk type: %d\n", chunk_type); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
670 break; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
671 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
672 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
673 frame_size -= chunk_size; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
674 num_chunks--; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
675 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
676 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
677 /* by the end of the chunk, the stream ptr should equal the frame |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
678 * size (minus 1, possibly); if it doesn't, issue a warning */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
679 if ((stream_ptr != buf_size) && (stream_ptr != buf_size - 1)) |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
680 av_log(avctx, AV_LOG_ERROR, "Processed FLI chunk where chunk size = %d " \ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
681 "and final chunk ptr = %d\n", buf_size, stream_ptr); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
682 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
683 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
684 *data_size=sizeof(AVFrame); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
685 *(AVFrame*)data = s->frame; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
686 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
687 return buf_size; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
688 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
689 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
690 static int flic_decode_frame_24BPP(AVCodecContext *avctx, |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
691 void *data, int *data_size, |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
692 uint8_t *buf, int buf_size) |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
693 { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
694 av_log(avctx, AV_LOG_ERROR, "24Bpp FLC Unsupported due to lack of test files.\n"); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
695 return -1; |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
696 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
697 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
698 static int flic_decode_frame(AVCodecContext *avctx, |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
699 void *data, int *data_size, |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
700 uint8_t *buf, int buf_size) |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
701 { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
702 if (avctx->pix_fmt == PIX_FMT_PAL8) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
703 return flic_decode_frame_8BPP(avctx, data, data_size, |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
704 buf, buf_size); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
705 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
706 else if ((avctx->pix_fmt == PIX_FMT_RGB555) || |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
707 (avctx->pix_fmt == PIX_FMT_RGB565)) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
708 return flic_decode_frame_15_16BPP(avctx, data, data_size, |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
709 buf, buf_size); |
2967 | 710 } |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
711 else if (avctx->pix_fmt == PIX_FMT_BGR24) { |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
712 return flic_decode_frame_24BPP(avctx, data, data_size, |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
713 buf, buf_size); |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
714 } |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
715 |
5127 | 716 /* Should not get here, ever as the pix_fmt is processed */ |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
717 /* in flic_decode_init and the above if should deal with */ |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
718 /* the finite set of possibilites allowable by here. */ |
5127 | 719 /* But in case we do, just error out. */ |
720 av_log(avctx, AV_LOG_ERROR, "Unknown FLC format, my science cannot explain how this happened.\n"); | |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
721 return -1; |
2967 | 722 } |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
723 |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
724 |
1624 | 725 static int flic_decode_end(AVCodecContext *avctx) |
726 { | |
727 FlicDecodeContext *s = avctx->priv_data; | |
728 | |
1759
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
729 if (s->frame.data[0]) |
e73a3b86565f
Use reget buffer instead of copying from prev frame
rtognimp
parents:
1624
diff
changeset
|
730 avctx->release_buffer(avctx, &s->frame); |
1624 | 731 |
732 return 0; | |
733 } | |
734 | |
735 AVCodec flic_decoder = { | |
736 "flic", | |
737 CODEC_TYPE_VIDEO, | |
738 CODEC_ID_FLIC, | |
739 sizeof(FlicDecodeContext), | |
740 flic_decode_init, | |
741 NULL, | |
742 flic_decode_end, | |
743 flic_decode_frame, | |
744 CODEC_CAP_DR1, | |
2907
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
745 NULL, |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
746 NULL, |
f7114e03d8dd
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
2825
diff
changeset
|
747 NULL, |
1624 | 748 NULL |
749 }; |