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