Mercurial > libavcodec.hg
annotate vqavideo.c @ 5470:fea6732bc199 libavcodec
dnxhd 120 progressive support
author | bcoudurier |
---|---|
date | Sat, 04 Aug 2007 13:26:29 +0000 |
parents | 2b72f9bc4f06 |
children | d256d072f23d |
rev | line source |
---|---|
1496 | 1 /* |
2 * Westwood Studios VQA Video Decoder | |
3 * Copyright (C) 2003 the ffmpeg project | |
4 * | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3799
diff
changeset
|
5 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3799
diff
changeset
|
6 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3799
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
1496 | 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:
3799
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
1496 | 11 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3799
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
1496 | 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:
3799
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 |
1496 | 20 */ |
21 | |
22 /** | |
23 * @file vqavideo.c | |
24 * VQA Video Decoder by Mike Melanson (melanson@pcisys.net) | |
4243 | 25 * For more information about the VQA format, visit: |
26 * http://wiki.multimedia.cx/index.php?title=VQA | |
1496 | 27 * |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
28 * The VQA video decoder outputs PAL8 or RGB555 colorspace data, depending |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
29 * on the type of data in the file. |
1496 | 30 * |
31 * This decoder needs the 42-byte VQHD header from the beginning | |
32 * of the VQA file passed through the extradata field. The VQHD header | |
33 * is laid out as: | |
34 * | |
35 * bytes 0-3 chunk fourcc: 'VQHD' | |
36 * bytes 4-7 chunk size in big-endian format, should be 0x0000002A | |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
37 * bytes 8-49 VQHD chunk data |
1496 | 38 * |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
39 * Bytes 8-49 are what this decoder expects to see. |
1496 | 40 * |
41 * Briefly, VQA is a vector quantized animation format that operates in a | |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
42 * VGA palettized colorspace. It operates on pixel vectors (blocks) |
1496 | 43 * of either 4x2 or 4x4 in size. Compressed VQA chunks can contain vector |
44 * codebooks, palette information, and code maps for rendering vectors onto | |
45 * frames. Any of these components can also be compressed with a run-length | |
46 * encoding (RLE) algorithm commonly referred to as "format80". | |
47 * | |
48 * VQA takes a novel approach to rate control. Each group of n frames | |
49 * (usually, n = 8) relies on a different vector codebook. Rather than | |
50 * transporting an entire codebook every 8th frame, the new codebook is | |
51 * broken up into 8 pieces and sent along with the compressed video chunks | |
52 * for each of the 8 frames preceding the 8 frames which require the | |
53 * codebook. A full codebook is also sent on the very first frame of a | |
54 * file. This is an interesting technique, although it makes random file | |
55 * seeking difficult despite the fact that the frames are all intracoded. | |
56 * | |
57 * V1,2 VQA uses 12-bit codebook indices. If the 12-bit indices were | |
58 * packed into bytes and then RLE compressed, bytewise, the results would | |
59 * be poor. That is why the coding method divides each index into 2 parts, | |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
60 * the top 4 bits and the bottom 8 bits, then RL encodes the 4-bit pieces |
1496 | 61 * together and the 8-bit pieces together. If most of the vectors are |
62 * clustered into one group of 256 vectors, most of the 4-bit index pieces | |
63 * should be the same. | |
64 */ | |
65 | |
66 #include <stdio.h> | |
67 #include <stdlib.h> | |
68 #include <string.h> | |
69 #include <unistd.h> | |
70 | |
71 #include "avcodec.h" | |
72 #include "dsputil.h" | |
73 | |
74 #define PALETTE_COUNT 256 | |
75 #define VQA_HEADER_SIZE 0x2A | |
76 #define CHUNK_PREAMBLE_SIZE 8 | |
77 | |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
78 /* allocate the maximum vector space, regardless of the file version: |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
79 * (0xFF00 codebook vectors + 0x100 solid pixel vectors) * (4x4 pixels/block) */ |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
80 #define MAX_CODEBOOK_VECTORS 0xFF00 |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
81 #define SOLID_PIXEL_VECTORS 0x100 |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
82 #define MAX_VECTORS (MAX_CODEBOOK_VECTORS + SOLID_PIXEL_VECTORS) |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
83 #define MAX_CODEBOOK_SIZE (MAX_VECTORS * 4 * 4) |
1496 | 84 |
1881
39ad6cd5d4a6
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
1598
diff
changeset
|
85 #define CBF0_TAG MKBETAG('C', 'B', 'F', '0') |
39ad6cd5d4a6
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
1598
diff
changeset
|
86 #define CBFZ_TAG MKBETAG('C', 'B', 'F', 'Z') |
39ad6cd5d4a6
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
1598
diff
changeset
|
87 #define CBP0_TAG MKBETAG('C', 'B', 'P', '0') |
39ad6cd5d4a6
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
1598
diff
changeset
|
88 #define CBPZ_TAG MKBETAG('C', 'B', 'P', 'Z') |
39ad6cd5d4a6
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
1598
diff
changeset
|
89 #define CPL0_TAG MKBETAG('C', 'P', 'L', '0') |
39ad6cd5d4a6
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
1598
diff
changeset
|
90 #define CPLZ_TAG MKBETAG('C', 'P', 'L', 'Z') |
39ad6cd5d4a6
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
1598
diff
changeset
|
91 #define VPTZ_TAG MKBETAG('V', 'P', 'T', 'Z') |
1496 | 92 |
93 #define VQA_DEBUG 0 | |
94 | |
95 #if VQA_DEBUG | |
96 #define vqa_debug printf | |
97 #else | |
98 static inline void vqa_debug(const char *format, ...) { } | |
99 #endif | |
100 | |
101 typedef struct VqaContext { | |
102 | |
103 AVCodecContext *avctx; | |
104 DSPContext dsp; | |
105 AVFrame frame; | |
106 | |
107 unsigned char *buf; | |
108 int size; | |
109 | |
3799
81638b2fbeba
palette (if we memcpy it into AVFrame) must be uint32_t
michael
parents:
3036
diff
changeset
|
110 uint32_t palette[PALETTE_COUNT]; |
1496 | 111 |
112 int width; /* width of a frame */ | |
113 int height; /* height of a frame */ | |
114 int vector_width; /* width of individual vector */ | |
115 int vector_height; /* height of individual vector */ | |
116 int vqa_version; /* this should be either 1, 2 or 3 */ | |
117 | |
118 unsigned char *codebook; /* the current codebook */ | |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
119 int codebook_size; |
1496 | 120 unsigned char *next_codebook_buffer; /* accumulator for next codebook */ |
121 int next_codebook_buffer_index; | |
122 | |
123 unsigned char *decode_buffer; | |
124 int decode_buffer_size; | |
125 | |
126 /* number of frames to go before replacing codebook */ | |
127 int partial_countdown; | |
128 int partial_count; | |
129 | |
130 } VqaContext; | |
131 | |
132 static int vqa_decode_init(AVCodecContext *avctx) | |
133 { | |
4827 | 134 VqaContext *s = avctx->priv_data; |
1496 | 135 unsigned char *vqa_header; |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
136 int i, j, codebook_index;; |
1496 | 137 |
138 s->avctx = avctx; | |
139 avctx->pix_fmt = PIX_FMT_PAL8; | |
140 dsputil_init(&s->dsp, avctx); | |
141 | |
142 /* make sure the extradata made it */ | |
143 if (s->avctx->extradata_size != VQA_HEADER_SIZE) { | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
144 av_log(s->avctx, AV_LOG_ERROR, " VQA video: expected extradata size of %d\n", VQA_HEADER_SIZE); |
1496 | 145 return -1; |
146 } | |
147 | |
148 /* load up the VQA parameters from the header */ | |
149 vqa_header = (unsigned char *)s->avctx->extradata; | |
150 s->vqa_version = vqa_header[0]; | |
4364 | 151 s->width = AV_RL16(&vqa_header[6]); |
152 s->height = AV_RL16(&vqa_header[8]); | |
2422 | 153 if(avcodec_check_dimensions(avctx, s->width, s->height)){ |
154 s->width= s->height= 0; | |
155 return -1; | |
156 } | |
1496 | 157 s->vector_width = vqa_header[10]; |
158 s->vector_height = vqa_header[11]; | |
159 s->partial_count = s->partial_countdown = vqa_header[13]; | |
160 | |
161 /* the vector dimensions have to meet very stringent requirements */ | |
162 if ((s->vector_width != 4) || | |
163 ((s->vector_height != 2) && (s->vector_height != 4))) { | |
164 /* return without further initialization */ | |
165 return -1; | |
166 } | |
167 | |
168 /* allocate codebooks */ | |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
169 s->codebook_size = MAX_CODEBOOK_SIZE; |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
170 s->codebook = av_malloc(s->codebook_size); |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
171 s->next_codebook_buffer = av_malloc(s->codebook_size); |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
172 |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
173 /* initialize the solid-color vectors */ |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
174 if (s->vector_height == 4) { |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
175 codebook_index = 0xFF00 * 16; |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
176 for (i = 0; i < 256; i++) |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
177 for (j = 0; j < 16; j++) |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
178 s->codebook[codebook_index++] = i; |
1496 | 179 } else { |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
180 codebook_index = 0xF00 * 8; |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
181 for (i = 0; i < 256; i++) |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
182 for (j = 0; j < 8; j++) |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
183 s->codebook[codebook_index++] = i; |
1496 | 184 } |
185 s->next_codebook_buffer_index = 0; | |
186 | |
187 /* allocate decode buffer */ | |
188 s->decode_buffer_size = (s->width / s->vector_width) * | |
189 (s->height / s->vector_height) * 2; | |
190 s->decode_buffer = av_malloc(s->decode_buffer_size); | |
191 | |
192 s->frame.data[0] = NULL; | |
193 | |
194 return 0; | |
195 } | |
196 | |
197 #define CHECK_COUNT() \ | |
198 if (dest_index + count > dest_size) { \ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
199 av_log(NULL, AV_LOG_ERROR, " VQA video: decode_format80 problem: next op would overflow dest_index\n"); \ |
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
200 av_log(NULL, AV_LOG_ERROR, " VQA video: current dest_index = %d, count = %d, dest_size = %d\n", \ |
1496 | 201 dest_index, count, dest_size); \ |
202 return; \ | |
203 } | |
204 | |
205 static void decode_format80(unsigned char *src, int src_size, | |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
206 unsigned char *dest, int dest_size, int check_size) { |
1496 | 207 |
208 int src_index = 0; | |
209 int dest_index = 0; | |
210 int count; | |
211 int src_pos; | |
212 unsigned char color; | |
213 int i; | |
214 | |
215 while (src_index < src_size) { | |
216 | |
217 vqa_debug(" opcode %02X: ", src[src_index]); | |
218 | |
219 /* 0x80 means that frame is finished */ | |
220 if (src[src_index] == 0x80) | |
221 return; | |
222 | |
223 if (dest_index >= dest_size) { | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
224 av_log(NULL, AV_LOG_ERROR, " VQA video: decode_format80 problem: dest_index (%d) exceeded dest_size (%d)\n", |
1496 | 225 dest_index, dest_size); |
226 return; | |
227 } | |
228 | |
229 if (src[src_index] == 0xFF) { | |
230 | |
231 src_index++; | |
4364 | 232 count = AV_RL16(&src[src_index]); |
1496 | 233 src_index += 2; |
4364 | 234 src_pos = AV_RL16(&src[src_index]); |
1496 | 235 src_index += 2; |
236 vqa_debug("(1) copy %X bytes from absolute pos %X\n", count, src_pos); | |
237 CHECK_COUNT(); | |
238 for (i = 0; i < count; i++) | |
239 dest[dest_index + i] = dest[src_pos + i]; | |
240 dest_index += count; | |
241 | |
242 } else if (src[src_index] == 0xFE) { | |
243 | |
244 src_index++; | |
4364 | 245 count = AV_RL16(&src[src_index]); |
1496 | 246 src_index += 2; |
247 color = src[src_index++]; | |
248 vqa_debug("(2) set %X bytes to %02X\n", count, color); | |
249 CHECK_COUNT(); | |
250 memset(&dest[dest_index], color, count); | |
251 dest_index += count; | |
252 | |
253 } else if ((src[src_index] & 0xC0) == 0xC0) { | |
254 | |
255 count = (src[src_index++] & 0x3F) + 3; | |
4364 | 256 src_pos = AV_RL16(&src[src_index]); |
1496 | 257 src_index += 2; |
258 vqa_debug("(3) copy %X bytes from absolute pos %X\n", count, src_pos); | |
259 CHECK_COUNT(); | |
260 for (i = 0; i < count; i++) | |
261 dest[dest_index + i] = dest[src_pos + i]; | |
262 dest_index += count; | |
263 | |
264 } else if (src[src_index] > 0x80) { | |
265 | |
266 count = src[src_index++] & 0x3F; | |
267 vqa_debug("(4) copy %X bytes from source to dest\n", count); | |
268 CHECK_COUNT(); | |
269 memcpy(&dest[dest_index], &src[src_index], count); | |
270 src_index += count; | |
271 dest_index += count; | |
272 | |
273 } else { | |
274 | |
275 count = ((src[src_index] & 0x70) >> 4) + 3; | |
4364 | 276 src_pos = AV_RB16(&src[src_index]) & 0x0FFF; |
1496 | 277 src_index += 2; |
278 vqa_debug("(5) copy %X bytes from relpos %X\n", count, src_pos); | |
279 CHECK_COUNT(); | |
280 for (i = 0; i < count; i++) | |
281 dest[dest_index + i] = dest[dest_index - src_pos + i]; | |
282 dest_index += count; | |
283 } | |
284 } | |
285 | |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
286 /* validate that the entire destination buffer was filled; this is |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
287 * important for decoding frame maps since each vector needs to have a |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
288 * codebook entry; it is not important for compressed codebooks because |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
289 * not every entry needs to be filled */ |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
290 if (check_size) |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
291 if (dest_index < dest_size) |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
292 av_log(NULL, AV_LOG_ERROR, " VQA video: decode_format80 problem: decode finished with dest_index (%d) < dest_size (%d)\n", |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
293 dest_index, dest_size); |
1496 | 294 } |
295 | |
296 static void vqa_decode_chunk(VqaContext *s) | |
297 { | |
298 unsigned int chunk_type; | |
299 unsigned int chunk_size; | |
300 int byte_skip; | |
301 unsigned int index = 0; | |
302 int i; | |
303 unsigned char r, g, b; | |
1506 | 304 int index_shift; |
1496 | 305 |
306 int cbf0_chunk = -1; | |
307 int cbfz_chunk = -1; | |
308 int cbp0_chunk = -1; | |
309 int cbpz_chunk = -1; | |
310 int cpl0_chunk = -1; | |
311 int cplz_chunk = -1; | |
312 int vptz_chunk = -1; | |
313 | |
314 int x, y; | |
315 int lines = 0; | |
316 int pixel_ptr; | |
317 int vector_index = 0; | |
318 int lobyte = 0; | |
319 int hibyte = 0; | |
320 int lobytes = 0; | |
321 int hibytes = s->decode_buffer_size / 2; | |
322 | |
323 /* first, traverse through the frame and find the subchunks */ | |
324 while (index < s->size) { | |
325 | |
4364 | 326 chunk_type = AV_RB32(&s->buf[index]); |
327 chunk_size = AV_RB32(&s->buf[index + 4]); | |
1496 | 328 |
329 switch (chunk_type) { | |
330 | |
331 case CBF0_TAG: | |
332 cbf0_chunk = index; | |
333 break; | |
334 | |
335 case CBFZ_TAG: | |
336 cbfz_chunk = index; | |
337 break; | |
338 | |
339 case CBP0_TAG: | |
340 cbp0_chunk = index; | |
341 break; | |
342 | |
343 case CBPZ_TAG: | |
344 cbpz_chunk = index; | |
345 break; | |
346 | |
347 case CPL0_TAG: | |
348 cpl0_chunk = index; | |
349 break; | |
350 | |
351 case CPLZ_TAG: | |
352 cplz_chunk = index; | |
353 break; | |
354 | |
355 case VPTZ_TAG: | |
356 vptz_chunk = index; | |
357 break; | |
358 | |
359 default: | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
360 av_log(s->avctx, AV_LOG_ERROR, " VQA video: Found unknown chunk type: %c%c%c%c (%08X)\n", |
1496 | 361 (chunk_type >> 24) & 0xFF, |
362 (chunk_type >> 16) & 0xFF, | |
363 (chunk_type >> 8) & 0xFF, | |
364 (chunk_type >> 0) & 0xFF, | |
365 chunk_type); | |
366 break; | |
367 } | |
368 | |
369 byte_skip = chunk_size & 0x01; | |
370 index += (CHUNK_PREAMBLE_SIZE + chunk_size + byte_skip); | |
371 } | |
372 | |
373 /* next, deal with the palette */ | |
374 if ((cpl0_chunk != -1) && (cplz_chunk != -1)) { | |
375 | |
376 /* a chunk should not have both chunk types */ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
377 av_log(s->avctx, AV_LOG_ERROR, " VQA video: problem: found both CPL0 and CPLZ chunks\n"); |
1496 | 378 return; |
379 } | |
380 | |
381 /* decompress the palette chunk */ | |
382 if (cplz_chunk != -1) { | |
383 | |
384 /* yet to be handled */ | |
385 | |
386 } | |
387 | |
388 /* convert the RGB palette into the machine's endian format */ | |
389 if (cpl0_chunk != -1) { | |
390 | |
4364 | 391 chunk_size = AV_RB32(&s->buf[cpl0_chunk + 4]); |
1496 | 392 /* sanity check the palette size */ |
393 if (chunk_size / 3 > 256) { | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
394 av_log(s->avctx, AV_LOG_ERROR, " VQA video: problem: found a palette chunk with %d colors\n", |
1496 | 395 chunk_size / 3); |
396 return; | |
397 } | |
398 cpl0_chunk += CHUNK_PREAMBLE_SIZE; | |
399 for (i = 0; i < chunk_size / 3; i++) { | |
400 /* scale by 4 to transform 6-bit palette -> 8-bit */ | |
401 r = s->buf[cpl0_chunk++] * 4; | |
402 g = s->buf[cpl0_chunk++] * 4; | |
403 b = s->buf[cpl0_chunk++] * 4; | |
1585
6b224ca24033
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
1506
diff
changeset
|
404 s->palette[i] = (r << 16) | (g << 8) | (b); |
1496 | 405 } |
406 } | |
407 | |
408 /* next, look for a full codebook */ | |
409 if ((cbf0_chunk != -1) && (cbfz_chunk != -1)) { | |
410 | |
411 /* a chunk should not have both chunk types */ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
412 av_log(s->avctx, AV_LOG_ERROR, " VQA video: problem: found both CBF0 and CBFZ chunks\n"); |
1496 | 413 return; |
414 } | |
415 | |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
416 /* decompress the full codebook chunk */ |
1496 | 417 if (cbfz_chunk != -1) { |
418 | |
4364 | 419 chunk_size = AV_RB32(&s->buf[cbfz_chunk + 4]); |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
420 cbfz_chunk += CHUNK_PREAMBLE_SIZE; |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
421 decode_format80(&s->buf[cbfz_chunk], chunk_size, |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
422 s->codebook, s->codebook_size, 0); |
1496 | 423 } |
424 | |
425 /* copy a full codebook */ | |
426 if (cbf0_chunk != -1) { | |
427 | |
4364 | 428 chunk_size = AV_RB32(&s->buf[cbf0_chunk + 4]); |
1496 | 429 /* sanity check the full codebook size */ |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
430 if (chunk_size > MAX_CODEBOOK_SIZE) { |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
431 av_log(s->avctx, AV_LOG_ERROR, " VQA video: problem: CBF0 chunk too large (0x%X bytes)\n", |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
432 chunk_size); |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
433 return; |
1496 | 434 } |
435 cbf0_chunk += CHUNK_PREAMBLE_SIZE; | |
436 | |
437 memcpy(s->codebook, &s->buf[cbf0_chunk], chunk_size); | |
438 } | |
439 | |
440 /* decode the frame */ | |
441 if (vptz_chunk == -1) { | |
442 | |
443 /* something is wrong if there is no VPTZ chunk */ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
444 av_log(s->avctx, AV_LOG_ERROR, " VQA video: problem: no VPTZ chunk found\n"); |
1496 | 445 return; |
446 } | |
447 | |
4364 | 448 chunk_size = AV_RB32(&s->buf[vptz_chunk + 4]); |
1496 | 449 vptz_chunk += CHUNK_PREAMBLE_SIZE; |
450 decode_format80(&s->buf[vptz_chunk], chunk_size, | |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
451 s->decode_buffer, s->decode_buffer_size, 1); |
1496 | 452 |
453 /* render the final PAL8 frame */ | |
1506 | 454 if (s->vector_height == 4) |
455 index_shift = 4; | |
456 else | |
457 index_shift = 3; | |
2967 | 458 for (y = 0; y < s->frame.linesize[0] * s->height; |
1496 | 459 y += s->frame.linesize[0] * s->vector_height) { |
460 | |
461 for (x = y; x < y + s->width; x += 4, lobytes++, hibytes++) { | |
462 pixel_ptr = x; | |
463 | |
464 /* get the vector index, the method for which varies according to | |
465 * VQA file version */ | |
466 switch (s->vqa_version) { | |
467 | |
468 case 1: | |
2967 | 469 /* still need sample media for this case (only one game, "Legend of |
1496 | 470 * Kyrandia III : Malcolm's Revenge", is known to use this version) */ |
4245 | 471 lobyte = s->decode_buffer[lobytes * 2]; |
472 hibyte = s->decode_buffer[(lobytes * 2) + 1]; | |
473 vector_index = ((hibyte << 8) | lobyte) >> 3; | |
474 vector_index <<= index_shift; | |
475 lines = s->vector_height; | |
476 /* uniform color fill - a quick hack */ | |
477 if (hibyte == 0xFF) { | |
478 while (lines--) { | |
479 s->frame.data[0][pixel_ptr + 0] = 255 - lobyte; | |
480 s->frame.data[0][pixel_ptr + 1] = 255 - lobyte; | |
481 s->frame.data[0][pixel_ptr + 2] = 255 - lobyte; | |
482 s->frame.data[0][pixel_ptr + 3] = 255 - lobyte; | |
483 pixel_ptr += s->frame.linesize[0]; | |
484 } | |
485 lines=0; | |
486 } | |
1496 | 487 break; |
488 | |
489 case 2: | |
490 lobyte = s->decode_buffer[lobytes]; | |
491 hibyte = s->decode_buffer[hibytes]; | |
492 vector_index = (hibyte << 8) | lobyte; | |
1506 | 493 vector_index <<= index_shift; |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
494 lines = s->vector_height; |
1496 | 495 break; |
496 | |
497 case 3: | |
498 /* not implemented yet */ | |
499 lines = 0; | |
500 break; | |
501 } | |
502 | |
503 while (lines--) { | |
504 s->frame.data[0][pixel_ptr + 0] = s->codebook[vector_index++]; | |
505 s->frame.data[0][pixel_ptr + 1] = s->codebook[vector_index++]; | |
506 s->frame.data[0][pixel_ptr + 2] = s->codebook[vector_index++]; | |
507 s->frame.data[0][pixel_ptr + 3] = s->codebook[vector_index++]; | |
508 pixel_ptr += s->frame.linesize[0]; | |
509 } | |
510 } | |
511 } | |
512 | |
513 /* handle partial codebook */ | |
514 if ((cbp0_chunk != -1) && (cbpz_chunk != -1)) { | |
515 /* a chunk should not have both chunk types */ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
516 av_log(s->avctx, AV_LOG_ERROR, " VQA video: problem: found both CBP0 and CBPZ chunks\n"); |
1496 | 517 return; |
518 } | |
519 | |
520 if (cbp0_chunk != -1) { | |
521 | |
4364 | 522 chunk_size = AV_RB32(&s->buf[cbp0_chunk + 4]); |
1496 | 523 cbp0_chunk += CHUNK_PREAMBLE_SIZE; |
524 | |
525 /* accumulate partial codebook */ | |
526 memcpy(&s->next_codebook_buffer[s->next_codebook_buffer_index], | |
527 &s->buf[cbp0_chunk], chunk_size); | |
528 s->next_codebook_buffer_index += chunk_size; | |
529 | |
530 s->partial_countdown--; | |
531 if (s->partial_countdown == 0) { | |
532 | |
533 /* time to replace codebook */ | |
2967 | 534 memcpy(s->codebook, s->next_codebook_buffer, |
1496 | 535 s->next_codebook_buffer_index); |
536 | |
537 /* reset accounting */ | |
538 s->next_codebook_buffer_index = 0; | |
539 s->partial_countdown = s->partial_count; | |
540 } | |
541 } | |
542 | |
543 if (cbpz_chunk != -1) { | |
544 | |
4364 | 545 chunk_size = AV_RB32(&s->buf[cbpz_chunk + 4]); |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
546 cbpz_chunk += CHUNK_PREAMBLE_SIZE; |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
547 |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
548 /* accumulate partial codebook */ |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
549 memcpy(&s->next_codebook_buffer[s->next_codebook_buffer_index], |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
550 &s->buf[cbpz_chunk], chunk_size); |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
551 s->next_codebook_buffer_index += chunk_size; |
1496 | 552 |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
553 s->partial_countdown--; |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
554 if (s->partial_countdown == 0) { |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
555 |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
556 /* decompress codebook */ |
2967 | 557 decode_format80(s->next_codebook_buffer, |
558 s->next_codebook_buffer_index, | |
1501
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
559 s->codebook, s->codebook_size, 0); |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
560 |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
561 /* reset accounting */ |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
562 s->next_codebook_buffer_index = 0; |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
563 s->partial_countdown = s->partial_count; |
dc6f46cd4a7b
added solid color vectors; basic PAL8, 4x2-vector video (as in
tmmm
parents:
1496
diff
changeset
|
564 } |
1496 | 565 } |
566 } | |
567 | |
568 static int vqa_decode_frame(AVCodecContext *avctx, | |
569 void *data, int *data_size, | |
570 uint8_t *buf, int buf_size) | |
571 { | |
4827 | 572 VqaContext *s = avctx->priv_data; |
1496 | 573 |
574 s->buf = buf; | |
575 s->size = buf_size; | |
576 | |
577 if (s->frame.data[0]) | |
578 avctx->release_buffer(avctx, &s->frame); | |
579 | |
580 if (avctx->get_buffer(avctx, &s->frame)) { | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
581 av_log(s->avctx, AV_LOG_ERROR, " VQA Video: get_buffer() failed\n"); |
1496 | 582 return -1; |
583 } | |
584 | |
585 vqa_decode_chunk(s); | |
586 | |
587 /* make the palette available on the way out */ | |
588 memcpy(s->frame.data[1], s->palette, PALETTE_COUNT * 4); | |
1585
6b224ca24033
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
1506
diff
changeset
|
589 s->frame.palette_has_changed = 1; |
1496 | 590 |
591 *data_size = sizeof(AVFrame); | |
592 *(AVFrame*)data = s->frame; | |
593 | |
594 /* report that the buffer was completely consumed */ | |
595 return buf_size; | |
596 } | |
597 | |
598 static int vqa_decode_end(AVCodecContext *avctx) | |
599 { | |
4827 | 600 VqaContext *s = avctx->priv_data; |
1496 | 601 |
602 av_free(s->codebook); | |
603 av_free(s->next_codebook_buffer); | |
604 av_free(s->decode_buffer); | |
605 | |
606 if (s->frame.data[0]) | |
607 avctx->release_buffer(avctx, &s->frame); | |
608 | |
609 return 0; | |
610 } | |
611 | |
612 AVCodec vqa_decoder = { | |
613 "vqavideo", | |
614 CODEC_TYPE_VIDEO, | |
615 CODEC_ID_WS_VQA, | |
616 sizeof(VqaContext), | |
617 vqa_decode_init, | |
618 NULL, | |
619 vqa_decode_end, | |
620 vqa_decode_frame, | |
621 CODEC_CAP_DR1, | |
622 }; |