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