annotate interplayvideo.c @ 1475:26eb7678cb46 libavcodec

do away with all those naughty global variables
author tmmm
date Fri, 19 Sep 2003 01:13:53 +0000
parents 94c7f7c23dd9
children b340e83b8d0d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1439
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
1 /*
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
2 * Interplay MVE Video Decoder
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
3 * Copyright (C) 2003 the ffmpeg project
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
4 *
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
5 * This library is free software; you can redistribute it and/or
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
6 * modify it under the terms of the GNU Lesser General Public
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
7 * License as published by the Free Software Foundation; either
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
8 * version 2 of the License, or (at your option) any later version.
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
9 *
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
10 * This library is distributed in the hope that it will be useful,
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
13 * Lesser General Public License for more details.
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
14 *
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
15 * You should have received a copy of the GNU Lesser General Public
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
16 * License along with this library; if not, write to the Free Software
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
18 *
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
19 */
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
20
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
21 /**
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
22 * @file interplayvideo.c
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
23 * Interplay MVE Video Decoder by Mike Melanson (melanson@pcisys.net)
1439
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
24 * For more information about the Interplay MVE format, visit:
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
25 * http://www.pcisys.net/~melanson/codecs/interplay-mve.txt
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
26 * This code is written in such a way that the identifiers match up
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
27 * with the encoding descriptions in the document.
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
28 *
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
29 * This decoder presently only supports a PAL8 output colorspace.
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
30 *
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
31 * An Interplay video frame consists of 2 parts: The decoding map and
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
32 * the video data. A demuxer must load these 2 parts together in a single
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
33 * buffer before sending it through the stream to this decoder.
1439
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
34 */
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
35
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
36 #include <stdio.h>
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
37 #include <stdlib.h>
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
38 #include <string.h>
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
39 #include <unistd.h>
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
40
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
41 #include "common.h"
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
42 #include "avcodec.h"
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
43 #include "dsputil.h"
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
44
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
45 #define PALETTE_COUNT 256
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
46
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
47 /* debugging support */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
48 #define DEBUG_INTERPLAY 0
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
49 #if DEBUG_INTERPLAY
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
50 #define debug_interplay printf
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
51 #else
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
52 static inline void debug_interplay(const char *format, ...) { }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
53 #endif
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
54
1439
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
55 typedef struct IpvideoContext {
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
56
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
57 AVCodecContext *avctx;
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
58 DSPContext dsp;
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
59 AVFrame second_last_frame;
1439
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
60 AVFrame last_frame;
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
61 AVFrame current_frame;
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
62 unsigned char *decoding_map;
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
63 int decoding_map_size;
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
64
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
65 unsigned char *buf;
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
66 int size;
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
67
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
68 unsigned char palette[PALETTE_COUNT * 4];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
69
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
70 unsigned char *stream_ptr;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
71 unsigned char *stream_end;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
72 unsigned char *pixel_ptr;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
73 int line_inc;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
74 int stride;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
75 int upper_motion_limit_offset;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
76
1439
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
77 } IpvideoContext;
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
78
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
79 #define CHECK_STREAM_PTR(n) \
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
80 if ((s->stream_ptr + n) > s->stream_end) { \
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
81 printf ("Interplay video warning: stream_ptr out of bounds (%p >= %p)\n", \
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
82 s->stream_ptr + n, s->stream_end); \
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
83 return -1; \
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
84 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
85
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
86 static void ipvideo_new_palette(IpvideoContext *s, unsigned char *palette) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
87
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
88 int i;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
89 unsigned char r, g, b;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
90 unsigned int *palette32;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
91
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
92 palette32 = (unsigned int *)s->palette;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
93 for (i = 0; i < PALETTE_COUNT; i++) {
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
94 r = *palette++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
95 g = *palette++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
96 b = *palette++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
97 palette32[i] = (r << 16) | (g << 8) | (b);
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
98 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
99 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
100
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
101 #define COPY_FROM_CURRENT() \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
102 motion_offset = current_offset; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
103 motion_offset += y * s->stride; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
104 motion_offset += x; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
105 if (motion_offset < 0) { \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
106 printf (" Interplay video: motion offset < 0 (%d)\n", motion_offset); \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
107 return -1; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
108 } else if (motion_offset > s->upper_motion_limit_offset) { \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
109 printf (" Interplay video: motion offset above limit (%d >= %d)\n", \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
110 motion_offset, s->upper_motion_limit_offset); \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
111 return -1; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
112 } \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
113 s->dsp.put_pixels_tab[0][0](s->pixel_ptr, \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
114 s->current_frame.data[0] + motion_offset, s->stride, 8);
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
115
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
116 #define COPY_FROM_PREVIOUS() \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
117 motion_offset = current_offset; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
118 motion_offset += y * s->stride; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
119 motion_offset += x; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
120 if (motion_offset < 0) { \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
121 printf (" Interplay video: motion offset < 0 (%d)\n", motion_offset); \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
122 return -1; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
123 } else if (motion_offset > s->upper_motion_limit_offset) { \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
124 printf (" Interplay video: motion offset above limit (%d >= %d)\n", \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
125 motion_offset, s->upper_motion_limit_offset); \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
126 return -1; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
127 } \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
128 s->dsp.put_pixels_tab[0][0](s->pixel_ptr, \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
129 s->last_frame.data[0] + motion_offset, s->stride, 8);
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
130
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
131 #define COPY_FROM_SECOND_LAST() \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
132 motion_offset = current_offset; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
133 motion_offset += y * s->stride; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
134 motion_offset += x; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
135 if (motion_offset < 0) { \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
136 printf (" Interplay video: motion offset < 0 (%d)\n", motion_offset); \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
137 return -1; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
138 } else if (motion_offset > s->upper_motion_limit_offset) { \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
139 printf (" Interplay video: motion offset above limit (%d >= %d)\n", \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
140 motion_offset, s->upper_motion_limit_offset); \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
141 return -1; \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
142 } \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
143 s->dsp.put_pixels_tab[0][0](s->pixel_ptr, \
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
144 s->second_last_frame.data[0] + motion_offset, s->stride, 8);
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
145
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
146 static int ipvideo_decode_block_opcode_0x0(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
147 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
148 int x, y;
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
149 int motion_offset;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
150 int current_offset = s->pixel_ptr - s->current_frame.data[0];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
151
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
152 /* copy a block from the previous frame */
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
153 x = y = 0;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
154 COPY_FROM_PREVIOUS();
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
155
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
156 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
157 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
158 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
159
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
160 static int ipvideo_decode_block_opcode_0x1(IpvideoContext *s)
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
161 {
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
162 int x, y;
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
163 int motion_offset;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
164 int current_offset = s->pixel_ptr - s->current_frame.data[0];
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
165
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
166 /* copy block from 2 frames ago */
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
167 x = y = 0;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
168 COPY_FROM_SECOND_LAST();
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
169
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
170 /* report success */
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
171 return 0;
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
172 }
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
173
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
174 static int ipvideo_decode_block_opcode_0x2(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
175 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
176 unsigned char B;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
177 int x, y;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
178 int motion_offset;
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
179 int current_offset = s->pixel_ptr - s->current_frame.data[0];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
180
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
181 /* copy block from 2 frames ago using a motion vector; need 1 more byte */
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
182 CHECK_STREAM_PTR(1);
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
183 B = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
184
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
185 if (B < 56) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
186 x = 8 + (B % 7);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
187 y = B / 7;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
188 } else {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
189 x = -14 + ((B - 56) % 29);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
190 y = 8 + ((B - 56) / 29);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
191 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
192
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
193 debug_interplay (" motion byte = %d, (x, y) = (%d, %d)\n", B, x, y);
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
194 COPY_FROM_SECOND_LAST();
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
195
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
196 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
197 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
198 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
199
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
200 static int ipvideo_decode_block_opcode_0x3(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
201 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
202 unsigned char B;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
203 int x, y;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
204 int motion_offset;
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
205 int current_offset = s->pixel_ptr - s->current_frame.data[0];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
206
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
207 /* copy 8x8 block from current frame from an up/left block */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
208
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
209 /* need 1 more byte for motion */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
210 CHECK_STREAM_PTR(1);
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
211 B = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
212
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
213 if (B < 56) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
214 x = -(8 + (B % 7));
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
215 y = -(B / 7);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
216 } else {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
217 x = -(-14 + ((B - 56) % 29));
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
218 y = -( 8 + ((B - 56) / 29));
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
219 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
220
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
221 debug_interplay (" motion byte = %d, (x, y) = (%d, %d)\n", B, x, y);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
222 COPY_FROM_CURRENT();
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
223
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
224 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
225 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
226 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
227
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
228 static int ipvideo_decode_block_opcode_0x4(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
229 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
230 int x, y;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
231 unsigned char B, BL, BH;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
232 int motion_offset;
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
233 int current_offset = s->pixel_ptr - s->current_frame.data[0];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
234
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
235 /* copy a block from the previous frame; need 1 more byte */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
236 CHECK_STREAM_PTR(1);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
237
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
238 B = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
239 BL = B & 0x0F;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
240 BH = (B >> 4) & 0x0F;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
241 x = -8 + BL;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
242 y = -8 + BH;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
243
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
244 debug_interplay (" motion byte = %d, (x, y) = (%d, %d)\n", B, x, y);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
245 COPY_FROM_PREVIOUS();
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
246
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
247 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
248 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
249 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
250
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
251 static int ipvideo_decode_block_opcode_0x5(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
252 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
253 signed char x, y;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
254 int motion_offset;
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
255 int current_offset = s->pixel_ptr - s->current_frame.data[0];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
256
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
257 /* copy a block from the previous frame using an expanded range;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
258 * need 2 more bytes */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
259 CHECK_STREAM_PTR(2);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
260
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
261 x = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
262 y = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
263
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
264 debug_interplay (" motion bytes = %d, %d\n", x, y);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
265 COPY_FROM_PREVIOUS();
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
266
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
267 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
268 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
269 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
270
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
271 static int ipvideo_decode_block_opcode_0x6(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
272 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
273 /* mystery opcode? skip multiple blocks? */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
274 printf (" Interplay video: Help! Mystery opcode 0x6 seen\n");
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
275
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
276 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
277 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
278 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
279
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
280 static int ipvideo_decode_block_opcode_0x7(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
281 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
282 int x, y;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
283 unsigned char P0, P1;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
284 unsigned char B[8];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
285 unsigned int flags;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
286 int bitmask;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
287
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
288 /* 2-color encoding */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
289 CHECK_STREAM_PTR(2);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
290
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
291 P0 = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
292 P1 = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
293
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
294 if (P0 <= P1) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
295
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
296 /* need 8 more bytes from the stream */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
297 CHECK_STREAM_PTR(8);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
298 for (y = 0; y < 8; y++)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
299 B[y] = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
300
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
301 for (y = 0; y < 8; y++) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
302 flags = B[y];
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
303 for (x = 0x01; x <= 0x80; x <<= 1) {
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
304 if (flags & x)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
305 *s->pixel_ptr++ = P1;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
306 else
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
307 *s->pixel_ptr++ = P0;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
308 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
309 s->pixel_ptr += s->line_inc;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
310 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
311
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
312 } else {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
313
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
314 /* need 2 more bytes from the stream */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
315 CHECK_STREAM_PTR(2);
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
316 B[0] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
317 B[1] = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
318
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
319 flags = (B[1] << 8) | B[0];
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
320 bitmask = 0x0001;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
321 for (y = 0; y < 8; y += 2) {
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
322 for (x = 0; x < 8; x += 2, bitmask <<= 1) {
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
323 if (flags & bitmask) {
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
324 *(s->pixel_ptr + x) = P1;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
325 *(s->pixel_ptr + x + 1) = P1;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
326 *(s->pixel_ptr + s->stride + x) = P1;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
327 *(s->pixel_ptr + s->stride + x + 1) = P1;
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
328 } else {
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
329 *(s->pixel_ptr + x) = P0;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
330 *(s->pixel_ptr + x + 1) = P0;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
331 *(s->pixel_ptr + s->stride + x) = P0;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
332 *(s->pixel_ptr + s->stride + x + 1) = P0;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
333 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
334 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
335 s->pixel_ptr += s->stride * 2;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
336 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
337 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
338
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
339 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
340 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
341 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
342
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
343 static int ipvideo_decode_block_opcode_0x8(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
344 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
345 int x, y;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
346 unsigned char P[8];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
347 unsigned char B[8];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
348 unsigned int flags = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
349 unsigned int bitmask = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
350 unsigned char P0 = 0, P1 = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
351 int lower_half = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
352
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
353 /* 2-color encoding for each 4x4 quadrant, or 2-color encoding on
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
354 * either top and bottom or left and right halves */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
355 CHECK_STREAM_PTR(2);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
356
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
357 P[0] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
358 P[1] = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
359
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
360 if (P[0] <= P[1]) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
361
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
362 /* need 12 more bytes */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
363 CHECK_STREAM_PTR(12);
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
364 B[0] = *s->stream_ptr++; B[1] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
365 P[2] = *s->stream_ptr++; P[3] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
366 B[2] = *s->stream_ptr++; B[3] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
367 P[4] = *s->stream_ptr++; P[5] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
368 B[4] = *s->stream_ptr++; B[5] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
369 P[6] = *s->stream_ptr++; P[7] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
370 B[6] = *s->stream_ptr++; B[7] = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
371
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
372 for (y = 0; y < 8; y++) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
373
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
374 /* time to reload flags? */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
375 if (y == 0) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
376 flags =
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
377 ((B[0] & 0xF0) << 4) | ((B[4] & 0xF0) << 8) |
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
378 ((B[0] & 0x0F) ) | ((B[4] & 0x0F) << 4) |
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
379 ((B[1] & 0xF0) << 20) | ((B[5] & 0xF0) << 24) |
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
380 ((B[1] & 0x0F) << 16) | ((B[5] & 0x0F) << 20);
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
381 bitmask = 0x00000001;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
382 lower_half = 0; /* still on top half */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
383 } else if (y == 4) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
384 flags =
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
385 ((B[2] & 0xF0) << 4) | ((B[6] & 0xF0) << 8) |
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
386 ((B[2] & 0x0F) ) | ((B[6] & 0x0F) << 4) |
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
387 ((B[3] & 0xF0) << 20) | ((B[7] & 0xF0) << 24) |
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
388 ((B[3] & 0x0F) << 16) | ((B[7] & 0x0F) << 20);
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
389 bitmask = 0x00000001;
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
390 lower_half = 2;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
391 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
392
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
393 for (x = 0; x < 8; x++, bitmask <<= 1) {
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
394 /* get the pixel values ready for this quadrant */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
395 if (x == 0) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
396 P0 = P[lower_half + 0];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
397 P1 = P[lower_half + 1];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
398 } else if (x == 4) {
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
399 P0 = P[lower_half + 4];
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
400 P1 = P[lower_half + 5];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
401 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
402
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
403 if (flags & bitmask)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
404 *s->pixel_ptr++ = P1;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
405 else
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
406 *s->pixel_ptr++ = P0;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
407 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
408 s->pixel_ptr += s->line_inc;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
409 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
410
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
411 } else {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
412
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
413 /* need 10 more bytes */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
414 CHECK_STREAM_PTR(10);
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
415 B[0] = *s->stream_ptr++; B[1] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
416 B[2] = *s->stream_ptr++; B[3] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
417 P[2] = *s->stream_ptr++; P[3] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
418 B[4] = *s->stream_ptr++; B[5] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
419 B[6] = *s->stream_ptr++; B[7] = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
420
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
421 if (P[2] <= P[3]) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
422
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
423 /* vertical split; left & right halves are 2-color encoded */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
424
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
425 for (y = 0; y < 8; y++) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
426
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
427 /* time to reload flags? */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
428 if (y == 0) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
429 flags =
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
430 ((B[0] & 0xF0) << 4) | ((B[4] & 0xF0) << 8) |
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
431 ((B[0] & 0x0F) ) | ((B[4] & 0x0F) << 4) |
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
432 ((B[1] & 0xF0) << 20) | ((B[5] & 0xF0) << 24) |
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
433 ((B[1] & 0x0F) << 16) | ((B[5] & 0x0F) << 20);
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
434 bitmask = 0x00000001;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
435 } else if (y == 4) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
436 flags =
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
437 ((B[2] & 0xF0) << 4) | ((B[6] & 0xF0) << 8) |
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
438 ((B[2] & 0x0F) ) | ((B[6] & 0x0F) << 4) |
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
439 ((B[3] & 0xF0) << 20) | ((B[7] & 0xF0) << 24) |
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
440 ((B[3] & 0x0F) << 16) | ((B[7] & 0x0F) << 20);
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
441 bitmask = 0x00000001;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
442 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
443
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
444 for (x = 0; x < 8; x++, bitmask <<= 1) {
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
445 /* get the pixel values ready for this half */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
446 if (x == 0) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
447 P0 = P[0];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
448 P1 = P[1];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
449 } else if (x == 4) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
450 P0 = P[2];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
451 P1 = P[3];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
452 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
453
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
454 if (flags & bitmask)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
455 *s->pixel_ptr++ = P1;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
456 else
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
457 *s->pixel_ptr++ = P0;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
458 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
459 s->pixel_ptr += s->line_inc;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
460 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
461
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
462 } else {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
463
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
464 /* horizontal split; top & bottom halves are 2-color encoded */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
465
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
466 for (y = 0; y < 8; y++) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
467
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
468 flags = B[y];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
469 if (y == 0) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
470 P0 = P[0];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
471 P1 = P[1];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
472 } else if (y == 4) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
473 P0 = P[2];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
474 P1 = P[3];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
475 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
476
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
477 for (bitmask = 0x01; bitmask <= 0x80; bitmask <<= 1) {
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
478
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
479 if (flags & bitmask)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
480 *s->pixel_ptr++ = P1;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
481 else
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
482 *s->pixel_ptr++ = P0;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
483 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
484 s->pixel_ptr += s->line_inc;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
485 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
486 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
487 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
488
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
489 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
490 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
491 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
492
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
493 static int ipvideo_decode_block_opcode_0x9(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
494 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
495 int x, y;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
496 unsigned char P[4];
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
497 unsigned char B[4];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
498 unsigned int flags = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
499 int shifter = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
500 unsigned char pix;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
501
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
502 /* 4-color encoding */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
503 CHECK_STREAM_PTR(4);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
504
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
505 for (y = 0; y < 4; y++)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
506 P[y] = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
507
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
508 if ((P[0] <= P[1]) && (P[2] <= P[3])) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
509
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
510 /* 1 of 4 colors for each pixel, need 16 more bytes */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
511 CHECK_STREAM_PTR(16);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
512
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
513 for (y = 0; y < 8; y++) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
514 /* get the next set of 8 2-bit flags */
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
515 flags = (s->stream_ptr[1] << 8) | s->stream_ptr[0];
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
516 s->stream_ptr += 2;
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
517 for (x = 0, shifter = 0; x < 8; x++, shifter += 2) {
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
518 *s->pixel_ptr++ = P[(flags >> shifter) & 0x03];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
519 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
520 s->pixel_ptr += s->line_inc;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
521 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
522
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
523 } else if ((P[0] <= P[1]) && (P[2] > P[3])) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
524
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
525 /* 1 of 4 colors for each 2x2 block, need 4 more bytes */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
526 CHECK_STREAM_PTR(4);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
527
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
528 B[0] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
529 B[1] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
530 B[2] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
531 B[3] = *s->stream_ptr++;
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
532 flags = (B[3] << 24) | (B[2] << 16) | (B[1] << 8) | B[0];
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
533 shifter = 0;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
534
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
535 for (y = 0; y < 8; y += 2) {
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
536 for (x = 0; x < 8; x += 2, shifter += 2) {
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
537 pix = P[(flags >> shifter) & 0x03];
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
538 *(s->pixel_ptr + x) = pix;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
539 *(s->pixel_ptr + x + 1) = pix;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
540 *(s->pixel_ptr + s->stride + x) = pix;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
541 *(s->pixel_ptr + s->stride + x + 1) = pix;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
542 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
543 s->pixel_ptr += s->stride * 2;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
544 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
545
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
546 } else if ((P[0] > P[1]) && (P[2] <= P[3])) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
547
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
548 /* 1 of 4 colors for each 2x1 block, need 8 more bytes */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
549 CHECK_STREAM_PTR(8);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
550
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
551 for (y = 0; y < 8; y++) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
552 /* time to reload flags? */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
553 if ((y == 0) || (y == 4)) {
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
554 B[0] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
555 B[1] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
556 B[2] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
557 B[3] = *s->stream_ptr++;
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
558 flags = (B[3] << 24) | (B[2] << 16) | (B[1] << 8) | B[0];
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
559 shifter = 0;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
560 }
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
561 for (x = 0; x < 8; x += 2, shifter += 2) {
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
562 pix = P[(flags >> shifter) & 0x03];
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
563 *(s->pixel_ptr + x) = pix;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
564 *(s->pixel_ptr + x + 1) = pix;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
565 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
566 s->pixel_ptr += s->stride;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
567 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
568
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
569 } else {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
570
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
571 /* 1 of 4 colors for each 1x2 block, need 8 more bytes */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
572 CHECK_STREAM_PTR(8);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
573
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
574 for (y = 0; y < 8; y += 2) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
575 /* time to reload flags? */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
576 if ((y == 0) || (y == 4)) {
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
577 B[0] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
578 B[1] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
579 B[2] = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
580 B[3] = *s->stream_ptr++;
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
581 flags = (B[3] << 24) | (B[2] << 16) | (B[1] << 8) | B[0];
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
582 shifter = 0;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
583 }
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
584 for (x = 0; x < 8; x++, shifter += 2) {
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
585 pix = P[(flags >> shifter) & 0x03];
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
586 *(s->pixel_ptr + x) = pix;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
587 *(s->pixel_ptr + s->stride + x) = pix;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
588 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
589 s->pixel_ptr += s->stride * 2;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
590 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
591 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
592
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
593 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
594 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
595 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
596
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
597 static int ipvideo_decode_block_opcode_0xA(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
598 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
599 int x, y;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
600 unsigned char P[16];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
601 unsigned char B[16];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
602 int flags = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
603 int shifter = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
604 int index;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
605 int split;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
606 int lower_half;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
607
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
608 /* 4-color encoding for each 4x4 quadrant, or 4-color encoding on
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
609 * either top and bottom or left and right halves */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
610 CHECK_STREAM_PTR(4);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
611
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
612 for (y = 0; y < 4; y++)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
613 P[y] = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
614
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
615 if (P[0] <= P[1]) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
616
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
617 /* 4-color encoding for each quadrant; need 28 more bytes */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
618 CHECK_STREAM_PTR(28);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
619
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
620 for (y = 0; y < 4; y++)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
621 B[y] = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
622 for (y = 4; y < 16; y += 4) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
623 for (x = y; x < y + 4; x++)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
624 P[x] = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
625 for (x = y; x < y + 4; x++)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
626 B[x] = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
627 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
628
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
629 for (y = 0; y < 8; y++) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
630
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
631 lower_half = (y >= 4) ? 4 : 0;
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
632 flags = (B[y + 8] << 8) | B[y];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
633
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
634 for (x = 0, shifter = 0; x < 8; x++, shifter += 2) {
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
635 split = (x >= 4) ? 8 : 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
636 index = split + lower_half + ((flags >> shifter) & 0x03);
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
637 *s->pixel_ptr++ = P[index];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
638 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
639
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
640 s->pixel_ptr += s->line_inc;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
641 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
642
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
643 } else {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
644
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
645 /* 4-color encoding for either left and right or top and bottom
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
646 * halves; need 20 more bytes */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
647 CHECK_STREAM_PTR(20);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
648
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
649 for (y = 0; y < 8; y++)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
650 B[y] = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
651 for (y = 4; y < 8; y++)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
652 P[y] = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
653 for (y = 8; y < 16; y++)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
654 B[y] = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
655
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
656 if (P[4] <= P[5]) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
657
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
658 /* block is divided into left and right halves */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
659 for (y = 0; y < 8; y++) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
660
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
661 flags = (B[y + 8] << 8) | B[y];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
662 split = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
663
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
664 for (x = 0, shifter = 0; x < 8; x++, shifter += 2) {
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
665 if (x == 4)
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
666 split = 4;
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
667 *s->pixel_ptr++ = P[split + ((flags >> shifter) & 0x03)];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
668 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
669
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
670 s->pixel_ptr += s->line_inc;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
671 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
672
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
673 } else {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
674
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
675 /* block is divided into top and bottom halves */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
676 split = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
677 for (y = 0; y < 8; y++) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
678
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
679 flags = (B[y * 2 + 1] << 8) | B[y * 2];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
680 if (y == 4)
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
681 split = 4;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
682
1473
873100cd2108 wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents: 1468
diff changeset
683 for (x = 0, shifter = 0; x < 8; x++, shifter += 2)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
684 *s->pixel_ptr++ = P[split + ((flags >> shifter) & 0x03)];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
685
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
686 s->pixel_ptr += s->line_inc;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
687 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
688 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
689 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
690
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
691 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
692 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
693 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
694
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
695 static int ipvideo_decode_block_opcode_0xB(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
696 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
697 int x, y;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
698
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
699 /* 64-color encoding (each pixel in block is a different color) */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
700 CHECK_STREAM_PTR(64);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
701
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
702 for (y = 0; y < 8; y++) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
703 for (x = 0; x < 8; x++) {
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
704 *s->pixel_ptr++ = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
705 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
706 s->pixel_ptr += s->line_inc;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
707 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
708
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
709 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
710 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
711 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
712
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
713 static int ipvideo_decode_block_opcode_0xC(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
714 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
715 int x, y;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
716 unsigned char pix;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
717
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
718 /* 16-color block encoding: each 2x2 block is a different color */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
719 CHECK_STREAM_PTR(16);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
720
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
721 for (y = 0; y < 8; y += 2) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
722 for (x = 0; x < 8; x += 2) {
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
723 pix = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
724 *(s->pixel_ptr + x) = pix;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
725 *(s->pixel_ptr + x + 1) = pix;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
726 *(s->pixel_ptr + s->stride + x) = pix;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
727 *(s->pixel_ptr + s->stride + x + 1) = pix;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
728 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
729 s->pixel_ptr += s->stride * 2;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
730 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
731
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
732 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
733 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
734 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
735
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
736 static int ipvideo_decode_block_opcode_0xD(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
737 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
738 int x, y;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
739 unsigned char P[4];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
740 unsigned char index = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
741
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
742 /* 4-color block encoding: each 4x4 block is a different color */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
743 CHECK_STREAM_PTR(4);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
744
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
745 for (y = 0; y < 4; y++)
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
746 P[y] = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
747
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
748 for (y = 0; y < 8; y++) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
749 if (y < 4)
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
750 index = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
751 else
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
752 index = 2;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
753
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
754 for (x = 0; x < 8; x++) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
755 if (x == 4)
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
756 index++;
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
757 *s->pixel_ptr++ = P[index];
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
758 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
759 s->pixel_ptr += s->line_inc;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
760 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
761
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
762 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
763 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
764 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
765
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
766 static int ipvideo_decode_block_opcode_0xE(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
767 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
768 int x, y;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
769 unsigned char pix;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
770
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
771 /* 1-color encoding: the whole block is 1 solid color */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
772 CHECK_STREAM_PTR(1);
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
773 pix = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
774
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
775 for (y = 0; y < 8; y++) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
776 for (x = 0; x < 8; x++) {
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
777 *s->pixel_ptr++ = pix;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
778 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
779 s->pixel_ptr += s->line_inc;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
780 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
781
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
782 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
783 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
784 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
785
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
786 static int ipvideo_decode_block_opcode_0xF(IpvideoContext *s)
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
787 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
788 int x, y;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
789 unsigned char sample0, sample1;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
790
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
791 /* dithered encoding */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
792 CHECK_STREAM_PTR(2);
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
793 sample0 = *s->stream_ptr++;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
794 sample1 = *s->stream_ptr++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
795
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
796 for (y = 0; y < 8; y++) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
797 for (x = 0; x < 8; x += 2) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
798 if (y & 1) {
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
799 *s->pixel_ptr++ = sample1;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
800 *s->pixel_ptr++ = sample0;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
801 } else {
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
802 *s->pixel_ptr++ = sample0;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
803 *s->pixel_ptr++ = sample1;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
804 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
805 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
806 s->pixel_ptr += s->line_inc;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
807 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
808
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
809 /* report success */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
810 return 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
811 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
812
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
813 static int (*ipvideo_decode_block[16])(IpvideoContext *s);
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
814
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
815 static void ipvideo_decode_opcodes(IpvideoContext *s)
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
816 {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
817 int x, y;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
818 int index = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
819 unsigned char opcode;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
820 int ret;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
821 int code_counts[16];
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
822 static int frame = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
823
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
824 debug_interplay("------------------ frame %d\n", frame);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
825 frame++;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
826
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
827 for (x = 0; x < 16; x++)
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
828 code_counts[x] = 0;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
829
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
830 /* this is PAL8, so make the palette available */
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
831 memcpy(s->current_frame.data[1], s->palette, PALETTE_COUNT * 4);
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
832
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
833 s->stride = s->current_frame.linesize[0];
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
834 s->stream_ptr = s->buf + 14; /* data starts 14 bytes in */
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
835 s->stream_end = s->buf + s->size;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
836 s->line_inc = s->stride - 8;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
837 s->upper_motion_limit_offset = (s->avctx->height - 8) * s->stride
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
838 + s->avctx->width - 8;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
839 s->dsp = s->dsp;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
840
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
841 for (y = 0; y < (s->stride * s->avctx->height); y += s->stride * 8) {
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
842 for (x = y; x < y + s->avctx->width; x += 8) {
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
843 /* bottom nibble first, then top nibble (which makes it
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
844 * hard to use a GetBitcontext) */
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
845 if (index & 1)
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
846 opcode = s->decoding_map[index >> 1] >> 4;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
847 else
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
848 opcode = s->decoding_map[index >> 1] & 0xF;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
849 index++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
850
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
851 debug_interplay(" block @ (%3d, %3d): encoding 0x%X, data ptr @ %p\n",
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
852 x - y, y / s->stride, opcode, s->stream_ptr);
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
853 code_counts[opcode]++;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
854
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
855 s->pixel_ptr = s->current_frame.data[0] + x;
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
856 ret = ipvideo_decode_block[opcode](s);
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
857 if (ret != 0) {
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
858 printf(" Interplay video: decode problem on frame %d, @ block (%d, %d)\n",
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
859 frame, x - y, y / s->stride);
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
860 return;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
861 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
862 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
863 }
1475
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
864 if ((s->stream_ptr != s->stream_end) &&
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
865 (s->stream_ptr + 1 != s->stream_end)) {
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
866 printf (" Interplay video: decode finished with %d bytes left over\n",
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
867 s->stream_end - s->stream_ptr);
26eb7678cb46 do away with all those naughty global variables
tmmm
parents: 1474
diff changeset
868 }
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
869 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
870
1439
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
871 static int ipvideo_decode_init(AVCodecContext *avctx)
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
872 {
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
873 IpvideoContext *s = avctx->priv_data;
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
874
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
875 s->avctx = avctx;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
876
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
877 if (s->avctx->extradata_size != sizeof(AVPaletteControl)) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
878 printf (" Interplay video: expected extradata_size of %d\n",
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
879 sizeof(AVPaletteControl));
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
880 return -1;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
881 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
882
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
883 avctx->pix_fmt = PIX_FMT_PAL8;
1439
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
884 avctx->has_b_frames = 0;
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
885 dsputil_init(&s->dsp, avctx);
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
886
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
887 /* decoding map contains 4 bits of information per 8x8 block */
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
888 s->decoding_map_size = avctx->width * avctx->height / (8 * 8 * 2);
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
889
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
890 /* assign block decode functions */
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
891 ipvideo_decode_block[0x0] = ipvideo_decode_block_opcode_0x0;
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
892 ipvideo_decode_block[0x1] = ipvideo_decode_block_opcode_0x1;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
893 ipvideo_decode_block[0x2] = ipvideo_decode_block_opcode_0x2;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
894 ipvideo_decode_block[0x3] = ipvideo_decode_block_opcode_0x3;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
895 ipvideo_decode_block[0x4] = ipvideo_decode_block_opcode_0x4;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
896 ipvideo_decode_block[0x5] = ipvideo_decode_block_opcode_0x5;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
897 ipvideo_decode_block[0x6] = ipvideo_decode_block_opcode_0x6;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
898 ipvideo_decode_block[0x7] = ipvideo_decode_block_opcode_0x7;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
899 ipvideo_decode_block[0x8] = ipvideo_decode_block_opcode_0x8;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
900 ipvideo_decode_block[0x9] = ipvideo_decode_block_opcode_0x9;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
901 ipvideo_decode_block[0xA] = ipvideo_decode_block_opcode_0xA;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
902 ipvideo_decode_block[0xB] = ipvideo_decode_block_opcode_0xB;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
903 ipvideo_decode_block[0xC] = ipvideo_decode_block_opcode_0xC;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
904 ipvideo_decode_block[0xD] = ipvideo_decode_block_opcode_0xD;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
905 ipvideo_decode_block[0xE] = ipvideo_decode_block_opcode_0xE;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
906 ipvideo_decode_block[0xF] = ipvideo_decode_block_opcode_0xF;
1439
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
907
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
908 s->current_frame.data[0] = s->last_frame.data[0] =
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
909 s->second_last_frame.data[0] = NULL;
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
910
1439
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
911 return 0;
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
912 }
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
913
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
914 static int ipvideo_decode_frame(AVCodecContext *avctx,
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
915 void *data, int *data_size,
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
916 uint8_t *buf, int buf_size)
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
917 {
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
918 IpvideoContext *s = avctx->priv_data;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
919 AVPaletteControl *palette_control = (AVPaletteControl *)avctx->extradata;
1439
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
920
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
921 if (palette_control->palette_changed) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
922 /* load the new palette and reset the palette control */
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
923 ipvideo_new_palette(s, palette_control->palette);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
924 palette_control->palette_changed = 0;
1439
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
925 }
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
926
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
927 s->decoding_map = buf;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
928 s->buf = buf + s->decoding_map_size;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
929 s->size = buf_size - s->decoding_map_size;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
930
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
931 s->current_frame.reference = 3;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
932 if (avctx->get_buffer(avctx, &s->current_frame)) {
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
933 printf (" Interplay Video: get_buffer() failed\n");
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
934 return -1;
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
935 }
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
936
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
937 ipvideo_decode_opcodes(s);
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
938
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
939 *data_size = sizeof(AVFrame);
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
940 *(AVFrame*)data = s->current_frame;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
941
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
942 /* shuffle frames */
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
943 if (s->second_last_frame.data[0])
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
944 avctx->release_buffer(avctx, &s->second_last_frame);
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
945 s->second_last_frame = s->last_frame;
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
946 s->last_frame = s->current_frame;
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
947 s->current_frame.data[0] = NULL; /* catch any access attempts */
1468
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
948
92c1f24f7754 initial Interplay video decoder
tmmm
parents: 1439
diff changeset
949 /* report that the buffer was completely consumed */
1439
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
950 return buf_size;
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
951 }
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
952
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
953 static int ipvideo_decode_end(AVCodecContext *avctx)
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
954 {
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
955 IpvideoContext *s = avctx->priv_data;
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
956
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
957 /* release the last frame */
1474
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
958 if (s->last_frame.data[0])
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
959 avctx->release_buffer(avctx, &s->last_frame);
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
960 if (s->second_last_frame.data[0])
94c7f7c23dd9 video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents: 1473
diff changeset
961 avctx->release_buffer(avctx, &s->second_last_frame);
1439
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
962
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
963 return 0;
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
964 }
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
965
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
966 AVCodec interplay_video_decoder = {
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
967 "interplayvideo",
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
968 CODEC_TYPE_VIDEO,
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
969 CODEC_ID_INTERPLAY_VIDEO,
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
970 sizeof(IpvideoContext),
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
971 ipvideo_decode_init,
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
972 NULL,
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
973 ipvideo_decode_end,
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
974 ipvideo_decode_frame,
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
975 CODEC_CAP_DR1,
a4d00b1f0271 initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff changeset
976 };