2 * Interplay MVE Video Decoder
3 * Copyright (C) 2003 the ffmpeg project
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
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.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 * @file interplayvideo.c
25 * Interplay MVE Video Decoder by Mike Melanson (melanson@pcisys.net)
26 * For more information about the Interplay MVE format, visit:
27 * http://www.pcisys.net/~melanson/codecs/interplay-mve.txt
28 * This code is written in such a way that the identifiers match up
29 * with the encoding descriptions in the document.
31 * This decoder presently only supports a PAL8 output colorspace.
33 * An Interplay video frame consists of 2 parts: The decoding map and
34 * the video data. A demuxer must load these 2 parts together in a single
35 * buffer before sending it through the stream to this decoder.
46 #define PALETTE_COUNT 256
48 /* debugging support */
49 #define DEBUG_INTERPLAY 0
51 #define debug_interplay(x,...) av_log(NULL, AV_LOG_DEBUG, x, __VA_ARGS__)
53 static inline void debug_interplay(const char *format
, ...) { }
56 typedef struct IpvideoContext
{
58 AVCodecContext
*avctx
;
60 AVFrame second_last_frame
;
62 AVFrame current_frame
;
63 unsigned char *decoding_map
;
64 int decoding_map_size
;
69 unsigned char *stream_ptr
;
70 unsigned char *stream_end
;
71 unsigned char *pixel_ptr
;
74 int upper_motion_limit_offset
;
78 #define CHECK_STREAM_PTR(n) \
79 if ((s->stream_ptr + n) > s->stream_end) { \
80 av_log(s->avctx, AV_LOG_ERROR, "Interplay video warning: stream_ptr out of bounds (%p >= %p)\n", \
81 s->stream_ptr + n, s->stream_end); \
85 #define COPY_FROM_CURRENT() \
86 motion_offset = current_offset; \
87 motion_offset += y * s->stride; \
89 if (motion_offset < 0) { \
90 av_log(s->avctx, AV_LOG_ERROR, " Interplay video: motion offset < 0 (%d)\n", motion_offset); \
92 } else if (motion_offset > s->upper_motion_limit_offset) { \
93 av_log(s->avctx, AV_LOG_ERROR, " Interplay video: motion offset above limit (%d >= %d)\n", \
94 motion_offset, s->upper_motion_limit_offset); \
97 s->dsp.put_pixels_tab[0][0](s->pixel_ptr, \
98 s->current_frame.data[0] + motion_offset, s->stride, 8);
100 #define COPY_FROM_PREVIOUS() \
101 motion_offset = current_offset; \
102 motion_offset += y * s->stride; \
103 motion_offset += x; \
104 if (motion_offset < 0) { \
105 av_log(s->avctx, AV_LOG_ERROR, " Interplay video: motion offset < 0 (%d)\n", motion_offset); \
107 } else if (motion_offset > s->upper_motion_limit_offset) { \
108 av_log(s->avctx, AV_LOG_ERROR, " Interplay video: motion offset above limit (%d >= %d)\n", \
109 motion_offset, s->upper_motion_limit_offset); \
112 s->dsp.put_pixels_tab[0][0](s->pixel_ptr, \
113 s->last_frame.data[0] + motion_offset, s->stride, 8);
115 #define COPY_FROM_SECOND_LAST() \
116 motion_offset = current_offset; \
117 motion_offset += y * s->stride; \
118 motion_offset += x; \
119 if (motion_offset < 0) { \
120 av_log(s->avctx, AV_LOG_ERROR, " Interplay video: motion offset < 0 (%d)\n", motion_offset); \
122 } else if (motion_offset > s->upper_motion_limit_offset) { \
123 av_log(s->avctx, AV_LOG_ERROR, " Interplay video: motion offset above limit (%d >= %d)\n", \
124 motion_offset, s->upper_motion_limit_offset); \
127 s->dsp.put_pixels_tab[0][0](s->pixel_ptr, \
128 s->second_last_frame.data[0] + motion_offset, s->stride, 8);
130 static int ipvideo_decode_block_opcode_0x0(IpvideoContext
*s
)
134 int current_offset
= s
->pixel_ptr
- s
->current_frame
.data
[0];
136 /* copy a block from the previous frame */
138 COPY_FROM_PREVIOUS();
144 static int ipvideo_decode_block_opcode_0x1(IpvideoContext
*s
)
148 int current_offset
= s
->pixel_ptr
- s
->current_frame
.data
[0];
150 /* copy block from 2 frames ago */
152 COPY_FROM_SECOND_LAST();
158 static int ipvideo_decode_block_opcode_0x2(IpvideoContext
*s
)
163 int current_offset
= s
->pixel_ptr
- s
->current_frame
.data
[0];
165 /* copy block from 2 frames ago using a motion vector; need 1 more byte */
167 B
= *s
->stream_ptr
++;
173 x
= -14 + ((B
- 56) % 29);
174 y
= 8 + ((B
- 56) / 29);
177 debug_interplay (" motion byte = %d, (x, y) = (%d, %d)\n", B
, x
, y
);
178 COPY_FROM_SECOND_LAST();
184 static int ipvideo_decode_block_opcode_0x3(IpvideoContext
*s
)
189 int current_offset
= s
->pixel_ptr
- s
->current_frame
.data
[0];
191 /* copy 8x8 block from current frame from an up/left block */
193 /* need 1 more byte for motion */
195 B
= *s
->stream_ptr
++;
201 x
= -(-14 + ((B
- 56) % 29));
202 y
= -( 8 + ((B
- 56) / 29));
205 debug_interplay (" motion byte = %d, (x, y) = (%d, %d)\n", B
, x
, y
);
212 static int ipvideo_decode_block_opcode_0x4(IpvideoContext
*s
)
215 unsigned char B
, BL
, BH
;
217 int current_offset
= s
->pixel_ptr
- s
->current_frame
.data
[0];
219 /* copy a block from the previous frame; need 1 more byte */
222 B
= *s
->stream_ptr
++;
224 BH
= (B
>> 4) & 0x0F;
228 debug_interplay (" motion byte = %d, (x, y) = (%d, %d)\n", B
, x
, y
);
229 COPY_FROM_PREVIOUS();
235 static int ipvideo_decode_block_opcode_0x5(IpvideoContext
*s
)
239 int current_offset
= s
->pixel_ptr
- s
->current_frame
.data
[0];
241 /* copy a block from the previous frame using an expanded range;
242 * need 2 more bytes */
245 x
= *s
->stream_ptr
++;
246 y
= *s
->stream_ptr
++;
248 debug_interplay (" motion bytes = %d, %d\n", x
, y
);
249 COPY_FROM_PREVIOUS();
255 static int ipvideo_decode_block_opcode_0x6(IpvideoContext
*s
)
257 /* mystery opcode? skip multiple blocks? */
258 av_log(s
->avctx
, AV_LOG_ERROR
, " Interplay video: Help! Mystery opcode 0x6 seen\n");
264 static int ipvideo_decode_block_opcode_0x7(IpvideoContext
*s
)
267 unsigned char P0
, P1
;
272 /* 2-color encoding */
275 P0
= *s
->stream_ptr
++;
276 P1
= *s
->stream_ptr
++;
280 /* need 8 more bytes from the stream */
282 for (y
= 0; y
< 8; y
++)
283 B
[y
] = *s
->stream_ptr
++;
285 for (y
= 0; y
< 8; y
++) {
287 for (x
= 0x01; x
<= 0x80; x
<<= 1) {
289 *s
->pixel_ptr
++ = P1
;
291 *s
->pixel_ptr
++ = P0
;
293 s
->pixel_ptr
+= s
->line_inc
;
298 /* need 2 more bytes from the stream */
300 B
[0] = *s
->stream_ptr
++;
301 B
[1] = *s
->stream_ptr
++;
303 flags
= (B
[1] << 8) | B
[0];
305 for (y
= 0; y
< 8; y
+= 2) {
306 for (x
= 0; x
< 8; x
+= 2, bitmask
<<= 1) {
307 if (flags
& bitmask
) {
308 *(s
->pixel_ptr
+ x
) = P1
;
309 *(s
->pixel_ptr
+ x
+ 1) = P1
;
310 *(s
->pixel_ptr
+ s
->stride
+ x
) = P1
;
311 *(s
->pixel_ptr
+ s
->stride
+ x
+ 1) = P1
;
313 *(s
->pixel_ptr
+ x
) = P0
;
314 *(s
->pixel_ptr
+ x
+ 1) = P0
;
315 *(s
->pixel_ptr
+ s
->stride
+ x
) = P0
;
316 *(s
->pixel_ptr
+ s
->stride
+ x
+ 1) = P0
;
319 s
->pixel_ptr
+= s
->stride
* 2;
327 static int ipvideo_decode_block_opcode_0x8(IpvideoContext
*s
)
332 unsigned int flags
= 0;
333 unsigned int bitmask
= 0;
334 unsigned char P0
= 0, P1
= 0;
337 /* 2-color encoding for each 4x4 quadrant, or 2-color encoding on
338 * either top and bottom or left and right halves */
341 P
[0] = *s
->stream_ptr
++;
342 P
[1] = *s
->stream_ptr
++;
346 /* need 12 more bytes */
347 CHECK_STREAM_PTR(12);
348 B
[0] = *s
->stream_ptr
++; B
[1] = *s
->stream_ptr
++;
349 P
[2] = *s
->stream_ptr
++; P
[3] = *s
->stream_ptr
++;
350 B
[2] = *s
->stream_ptr
++; B
[3] = *s
->stream_ptr
++;
351 P
[4] = *s
->stream_ptr
++; P
[5] = *s
->stream_ptr
++;
352 B
[4] = *s
->stream_ptr
++; B
[5] = *s
->stream_ptr
++;
353 P
[6] = *s
->stream_ptr
++; P
[7] = *s
->stream_ptr
++;
354 B
[6] = *s
->stream_ptr
++; B
[7] = *s
->stream_ptr
++;
356 for (y
= 0; y
< 8; y
++) {
358 /* time to reload flags? */
361 ((B
[0] & 0xF0) << 4) | ((B
[4] & 0xF0) << 8) |
362 ((B
[0] & 0x0F) ) | ((B
[4] & 0x0F) << 4) |
363 ((B
[1] & 0xF0) << 20) | ((B
[5] & 0xF0) << 24) |
364 ((B
[1] & 0x0F) << 16) | ((B
[5] & 0x0F) << 20);
365 bitmask
= 0x00000001;
366 lower_half
= 0; /* still on top half */
369 ((B
[2] & 0xF0) << 4) | ((B
[6] & 0xF0) << 8) |
370 ((B
[2] & 0x0F) ) | ((B
[6] & 0x0F) << 4) |
371 ((B
[3] & 0xF0) << 20) | ((B
[7] & 0xF0) << 24) |
372 ((B
[3] & 0x0F) << 16) | ((B
[7] & 0x0F) << 20);
373 bitmask
= 0x00000001;
377 for (x
= 0; x
< 8; x
++, bitmask
<<= 1) {
378 /* get the pixel values ready for this quadrant */
380 P0
= P
[lower_half
+ 0];
381 P1
= P
[lower_half
+ 1];
383 P0
= P
[lower_half
+ 4];
384 P1
= P
[lower_half
+ 5];
388 *s
->pixel_ptr
++ = P1
;
390 *s
->pixel_ptr
++ = P0
;
392 s
->pixel_ptr
+= s
->line_inc
;
397 /* need 10 more bytes */
398 CHECK_STREAM_PTR(10);
399 B
[0] = *s
->stream_ptr
++; B
[1] = *s
->stream_ptr
++;
400 B
[2] = *s
->stream_ptr
++; B
[3] = *s
->stream_ptr
++;
401 P
[2] = *s
->stream_ptr
++; P
[3] = *s
->stream_ptr
++;
402 B
[4] = *s
->stream_ptr
++; B
[5] = *s
->stream_ptr
++;
403 B
[6] = *s
->stream_ptr
++; B
[7] = *s
->stream_ptr
++;
407 /* vertical split; left & right halves are 2-color encoded */
409 for (y
= 0; y
< 8; y
++) {
411 /* time to reload flags? */
414 ((B
[0] & 0xF0) << 4) | ((B
[4] & 0xF0) << 8) |
415 ((B
[0] & 0x0F) ) | ((B
[4] & 0x0F) << 4) |
416 ((B
[1] & 0xF0) << 20) | ((B
[5] & 0xF0) << 24) |
417 ((B
[1] & 0x0F) << 16) | ((B
[5] & 0x0F) << 20);
418 bitmask
= 0x00000001;
421 ((B
[2] & 0xF0) << 4) | ((B
[6] & 0xF0) << 8) |
422 ((B
[2] & 0x0F) ) | ((B
[6] & 0x0F) << 4) |
423 ((B
[3] & 0xF0) << 20) | ((B
[7] & 0xF0) << 24) |
424 ((B
[3] & 0x0F) << 16) | ((B
[7] & 0x0F) << 20);
425 bitmask
= 0x00000001;
428 for (x
= 0; x
< 8; x
++, bitmask
<<= 1) {
429 /* get the pixel values ready for this half */
439 *s
->pixel_ptr
++ = P1
;
441 *s
->pixel_ptr
++ = P0
;
443 s
->pixel_ptr
+= s
->line_inc
;
448 /* horizontal split; top & bottom halves are 2-color encoded */
450 for (y
= 0; y
< 8; y
++) {
461 for (bitmask
= 0x01; bitmask
<= 0x80; bitmask
<<= 1) {
464 *s
->pixel_ptr
++ = P1
;
466 *s
->pixel_ptr
++ = P0
;
468 s
->pixel_ptr
+= s
->line_inc
;
477 static int ipvideo_decode_block_opcode_0x9(IpvideoContext
*s
)
482 unsigned int flags
= 0;
486 /* 4-color encoding */
489 for (y
= 0; y
< 4; y
++)
490 P
[y
] = *s
->stream_ptr
++;
492 if ((P
[0] <= P
[1]) && (P
[2] <= P
[3])) {
494 /* 1 of 4 colors for each pixel, need 16 more bytes */
495 CHECK_STREAM_PTR(16);
497 for (y
= 0; y
< 8; y
++) {
498 /* get the next set of 8 2-bit flags */
499 flags
= (s
->stream_ptr
[1] << 8) | s
->stream_ptr
[0];
501 for (x
= 0, shifter
= 0; x
< 8; x
++, shifter
+= 2) {
502 *s
->pixel_ptr
++ = P
[(flags
>> shifter
) & 0x03];
504 s
->pixel_ptr
+= s
->line_inc
;
507 } else if ((P
[0] <= P
[1]) && (P
[2] > P
[3])) {
509 /* 1 of 4 colors for each 2x2 block, need 4 more bytes */
512 B
[0] = *s
->stream_ptr
++;
513 B
[1] = *s
->stream_ptr
++;
514 B
[2] = *s
->stream_ptr
++;
515 B
[3] = *s
->stream_ptr
++;
516 flags
= (B
[3] << 24) | (B
[2] << 16) | (B
[1] << 8) | B
[0];
519 for (y
= 0; y
< 8; y
+= 2) {
520 for (x
= 0; x
< 8; x
+= 2, shifter
+= 2) {
521 pix
= P
[(flags
>> shifter
) & 0x03];
522 *(s
->pixel_ptr
+ x
) = pix
;
523 *(s
->pixel_ptr
+ x
+ 1) = pix
;
524 *(s
->pixel_ptr
+ s
->stride
+ x
) = pix
;
525 *(s
->pixel_ptr
+ s
->stride
+ x
+ 1) = pix
;
527 s
->pixel_ptr
+= s
->stride
* 2;
530 } else if ((P
[0] > P
[1]) && (P
[2] <= P
[3])) {
532 /* 1 of 4 colors for each 2x1 block, need 8 more bytes */
535 for (y
= 0; y
< 8; y
++) {
536 /* time to reload flags? */
537 if ((y
== 0) || (y
== 4)) {
538 B
[0] = *s
->stream_ptr
++;
539 B
[1] = *s
->stream_ptr
++;
540 B
[2] = *s
->stream_ptr
++;
541 B
[3] = *s
->stream_ptr
++;
542 flags
= (B
[3] << 24) | (B
[2] << 16) | (B
[1] << 8) | B
[0];
545 for (x
= 0; x
< 8; x
+= 2, shifter
+= 2) {
546 pix
= P
[(flags
>> shifter
) & 0x03];
547 *(s
->pixel_ptr
+ x
) = pix
;
548 *(s
->pixel_ptr
+ x
+ 1) = pix
;
550 s
->pixel_ptr
+= s
->stride
;
555 /* 1 of 4 colors for each 1x2 block, need 8 more bytes */
558 for (y
= 0; y
< 8; y
+= 2) {
559 /* time to reload flags? */
560 if ((y
== 0) || (y
== 4)) {
561 B
[0] = *s
->stream_ptr
++;
562 B
[1] = *s
->stream_ptr
++;
563 B
[2] = *s
->stream_ptr
++;
564 B
[3] = *s
->stream_ptr
++;
565 flags
= (B
[3] << 24) | (B
[2] << 16) | (B
[1] << 8) | B
[0];
568 for (x
= 0; x
< 8; x
++, shifter
+= 2) {
569 pix
= P
[(flags
>> shifter
) & 0x03];
570 *(s
->pixel_ptr
+ x
) = pix
;
571 *(s
->pixel_ptr
+ s
->stride
+ x
) = pix
;
573 s
->pixel_ptr
+= s
->stride
* 2;
581 static int ipvideo_decode_block_opcode_0xA(IpvideoContext
*s
)
592 /* 4-color encoding for each 4x4 quadrant, or 4-color encoding on
593 * either top and bottom or left and right halves */
596 for (y
= 0; y
< 4; y
++)
597 P
[y
] = *s
->stream_ptr
++;
601 /* 4-color encoding for each quadrant; need 28 more bytes */
602 CHECK_STREAM_PTR(28);
604 for (y
= 0; y
< 4; y
++)
605 B
[y
] = *s
->stream_ptr
++;
606 for (y
= 4; y
< 16; y
+= 4) {
607 for (x
= y
; x
< y
+ 4; x
++)
608 P
[x
] = *s
->stream_ptr
++;
609 for (x
= y
; x
< y
+ 4; x
++)
610 B
[x
] = *s
->stream_ptr
++;
613 for (y
= 0; y
< 8; y
++) {
615 lower_half
= (y
>= 4) ? 4 : 0;
616 flags
= (B
[y
+ 8] << 8) | B
[y
];
618 for (x
= 0, shifter
= 0; x
< 8; x
++, shifter
+= 2) {
619 split
= (x
>= 4) ? 8 : 0;
620 index
= split
+ lower_half
+ ((flags
>> shifter
) & 0x03);
621 *s
->pixel_ptr
++ = P
[index
];
624 s
->pixel_ptr
+= s
->line_inc
;
629 /* 4-color encoding for either left and right or top and bottom
630 * halves; need 20 more bytes */
631 CHECK_STREAM_PTR(20);
633 for (y
= 0; y
< 8; y
++)
634 B
[y
] = *s
->stream_ptr
++;
635 for (y
= 4; y
< 8; y
++)
636 P
[y
] = *s
->stream_ptr
++;
637 for (y
= 8; y
< 16; y
++)
638 B
[y
] = *s
->stream_ptr
++;
642 /* block is divided into left and right halves */
643 for (y
= 0; y
< 8; y
++) {
645 flags
= (B
[y
+ 8] << 8) | B
[y
];
648 for (x
= 0, shifter
= 0; x
< 8; x
++, shifter
+= 2) {
651 *s
->pixel_ptr
++ = P
[split
+ ((flags
>> shifter
) & 0x03)];
654 s
->pixel_ptr
+= s
->line_inc
;
659 /* block is divided into top and bottom halves */
661 for (y
= 0; y
< 8; y
++) {
663 flags
= (B
[y
* 2 + 1] << 8) | B
[y
* 2];
667 for (x
= 0, shifter
= 0; x
< 8; x
++, shifter
+= 2)
668 *s
->pixel_ptr
++ = P
[split
+ ((flags
>> shifter
) & 0x03)];
670 s
->pixel_ptr
+= s
->line_inc
;
679 static int ipvideo_decode_block_opcode_0xB(IpvideoContext
*s
)
683 /* 64-color encoding (each pixel in block is a different color) */
684 CHECK_STREAM_PTR(64);
686 for (y
= 0; y
< 8; y
++) {
687 for (x
= 0; x
< 8; x
++) {
688 *s
->pixel_ptr
++ = *s
->stream_ptr
++;
690 s
->pixel_ptr
+= s
->line_inc
;
697 static int ipvideo_decode_block_opcode_0xC(IpvideoContext
*s
)
702 /* 16-color block encoding: each 2x2 block is a different color */
703 CHECK_STREAM_PTR(16);
705 for (y
= 0; y
< 8; y
+= 2) {
706 for (x
= 0; x
< 8; x
+= 2) {
707 pix
= *s
->stream_ptr
++;
708 *(s
->pixel_ptr
+ x
) = pix
;
709 *(s
->pixel_ptr
+ x
+ 1) = pix
;
710 *(s
->pixel_ptr
+ s
->stride
+ x
) = pix
;
711 *(s
->pixel_ptr
+ s
->stride
+ x
+ 1) = pix
;
713 s
->pixel_ptr
+= s
->stride
* 2;
720 static int ipvideo_decode_block_opcode_0xD(IpvideoContext
*s
)
724 unsigned char index
= 0;
726 /* 4-color block encoding: each 4x4 block is a different color */
729 for (y
= 0; y
< 4; y
++)
730 P
[y
] = *s
->stream_ptr
++;
732 for (y
= 0; y
< 8; y
++) {
738 for (x
= 0; x
< 8; x
++) {
741 *s
->pixel_ptr
++ = P
[index
];
743 s
->pixel_ptr
+= s
->line_inc
;
750 static int ipvideo_decode_block_opcode_0xE(IpvideoContext
*s
)
755 /* 1-color encoding: the whole block is 1 solid color */
757 pix
= *s
->stream_ptr
++;
759 for (y
= 0; y
< 8; y
++) {
760 for (x
= 0; x
< 8; x
++) {
761 *s
->pixel_ptr
++ = pix
;
763 s
->pixel_ptr
+= s
->line_inc
;
770 static int ipvideo_decode_block_opcode_0xF(IpvideoContext
*s
)
773 unsigned char sample0
, sample1
;
775 /* dithered encoding */
777 sample0
= *s
->stream_ptr
++;
778 sample1
= *s
->stream_ptr
++;
780 for (y
= 0; y
< 8; y
++) {
781 for (x
= 0; x
< 8; x
+= 2) {
783 *s
->pixel_ptr
++ = sample1
;
784 *s
->pixel_ptr
++ = sample0
;
786 *s
->pixel_ptr
++ = sample0
;
787 *s
->pixel_ptr
++ = sample1
;
790 s
->pixel_ptr
+= s
->line_inc
;
797 static int (*ipvideo_decode_block
[16])(IpvideoContext
*s
);
799 static void ipvideo_decode_opcodes(IpvideoContext
*s
)
803 unsigned char opcode
;
806 static int frame
= 0;
808 debug_interplay("------------------ frame %d\n", frame
);
811 for (x
= 0; x
< 16; x
++)
814 /* this is PAL8, so make the palette available */
815 memcpy(s
->current_frame
.data
[1], s
->avctx
->palctrl
->palette
, PALETTE_COUNT
* 4);
817 s
->stride
= s
->current_frame
.linesize
[0];
818 s
->stream_ptr
= s
->buf
+ 14; /* data starts 14 bytes in */
819 s
->stream_end
= s
->buf
+ s
->size
;
820 s
->line_inc
= s
->stride
- 8;
821 s
->upper_motion_limit_offset
= (s
->avctx
->height
- 8) * s
->stride
822 + s
->avctx
->width
- 8;
825 for (y
= 0; y
< (s
->stride
* s
->avctx
->height
); y
+= s
->stride
* 8) {
826 for (x
= y
; x
< y
+ s
->avctx
->width
; x
+= 8) {
827 /* bottom nibble first, then top nibble (which makes it
828 * hard to use a GetBitcontext) */
830 opcode
= s
->decoding_map
[index
>> 1] >> 4;
832 opcode
= s
->decoding_map
[index
>> 1] & 0xF;
835 debug_interplay(" block @ (%3d, %3d): encoding 0x%X, data ptr @ %p\n",
836 x
- y
, y
/ s
->stride
, opcode
, s
->stream_ptr
);
837 code_counts
[opcode
]++;
839 s
->pixel_ptr
= s
->current_frame
.data
[0] + x
;
840 ret
= ipvideo_decode_block
[opcode
](s
);
842 av_log(s
->avctx
, AV_LOG_ERROR
, " Interplay video: decode problem on frame %d, @ block (%d, %d)\n",
843 frame
, x
- y
, y
/ s
->stride
);
848 if ((s
->stream_ptr
!= s
->stream_end
) &&
849 (s
->stream_ptr
+ 1 != s
->stream_end
)) {
850 av_log(s
->avctx
, AV_LOG_ERROR
, " Interplay video: decode finished with %td bytes left over\n",
851 s
->stream_end
- s
->stream_ptr
);
855 static int ipvideo_decode_init(AVCodecContext
*avctx
)
857 IpvideoContext
*s
= avctx
->priv_data
;
861 if (s
->avctx
->palctrl
== NULL
) {
862 av_log(avctx
, AV_LOG_ERROR
, " Interplay video: palette expected.\n");
866 avctx
->pix_fmt
= PIX_FMT_PAL8
;
867 dsputil_init(&s
->dsp
, avctx
);
869 /* decoding map contains 4 bits of information per 8x8 block */
870 s
->decoding_map_size
= avctx
->width
* avctx
->height
/ (8 * 8 * 2);
872 /* assign block decode functions */
873 ipvideo_decode_block
[0x0] = ipvideo_decode_block_opcode_0x0
;
874 ipvideo_decode_block
[0x1] = ipvideo_decode_block_opcode_0x1
;
875 ipvideo_decode_block
[0x2] = ipvideo_decode_block_opcode_0x2
;
876 ipvideo_decode_block
[0x3] = ipvideo_decode_block_opcode_0x3
;
877 ipvideo_decode_block
[0x4] = ipvideo_decode_block_opcode_0x4
;
878 ipvideo_decode_block
[0x5] = ipvideo_decode_block_opcode_0x5
;
879 ipvideo_decode_block
[0x6] = ipvideo_decode_block_opcode_0x6
;
880 ipvideo_decode_block
[0x7] = ipvideo_decode_block_opcode_0x7
;
881 ipvideo_decode_block
[0x8] = ipvideo_decode_block_opcode_0x8
;
882 ipvideo_decode_block
[0x9] = ipvideo_decode_block_opcode_0x9
;
883 ipvideo_decode_block
[0xA] = ipvideo_decode_block_opcode_0xA
;
884 ipvideo_decode_block
[0xB] = ipvideo_decode_block_opcode_0xB
;
885 ipvideo_decode_block
[0xC] = ipvideo_decode_block_opcode_0xC
;
886 ipvideo_decode_block
[0xD] = ipvideo_decode_block_opcode_0xD
;
887 ipvideo_decode_block
[0xE] = ipvideo_decode_block_opcode_0xE
;
888 ipvideo_decode_block
[0xF] = ipvideo_decode_block_opcode_0xF
;
890 s
->current_frame
.data
[0] = s
->last_frame
.data
[0] =
891 s
->second_last_frame
.data
[0] = NULL
;
896 static int ipvideo_decode_frame(AVCodecContext
*avctx
,
897 void *data
, int *data_size
,
898 uint8_t *buf
, int buf_size
)
900 IpvideoContext
*s
= avctx
->priv_data
;
901 AVPaletteControl
*palette_control
= avctx
->palctrl
;
903 /* compressed buffer needs to be large enough to at least hold an entire
905 if (buf_size
< s
->decoding_map_size
)
908 s
->decoding_map
= buf
;
909 s
->buf
= buf
+ s
->decoding_map_size
;
910 s
->size
= buf_size
- s
->decoding_map_size
;
912 s
->current_frame
.reference
= 3;
913 if (avctx
->get_buffer(avctx
, &s
->current_frame
)) {
914 av_log(avctx
, AV_LOG_ERROR
, " Interplay Video: get_buffer() failed\n");
918 ipvideo_decode_opcodes(s
);
920 if (palette_control
->palette_changed
) {
921 palette_control
->palette_changed
= 0;
922 s
->current_frame
.palette_has_changed
= 1;
925 *data_size
= sizeof(AVFrame
);
926 *(AVFrame
*)data
= s
->current_frame
;
929 if (s
->second_last_frame
.data
[0])
930 avctx
->release_buffer(avctx
, &s
->second_last_frame
);
931 s
->second_last_frame
= s
->last_frame
;
932 s
->last_frame
= s
->current_frame
;
933 s
->current_frame
.data
[0] = NULL
; /* catch any access attempts */
935 /* report that the buffer was completely consumed */
939 static int ipvideo_decode_end(AVCodecContext
*avctx
)
941 IpvideoContext
*s
= avctx
->priv_data
;
943 /* release the last frame */
944 if (s
->last_frame
.data
[0])
945 avctx
->release_buffer(avctx
, &s
->last_frame
);
946 if (s
->second_last_frame
.data
[0])
947 avctx
->release_buffer(avctx
, &s
->second_last_frame
);
952 AVCodec interplay_video_decoder
= {
955 CODEC_ID_INTERPLAY_VIDEO
,
956 sizeof(IpvideoContext
),
960 ipvideo_decode_frame
,