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