Mercurial > libavcodec.hg
annotate interplayvideo.c @ 5163:9ecbfc0c82bf libavcodec
add multiple inclusion guards to headers
| author | mru |
|---|---|
| date | Sun, 17 Jun 2007 00:01:30 +0000 |
| parents | bff60ecc02f9 |
| children | 2b72f9bc4f06 |
| 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" |
| 5089 | 44 #include "bytestream.h" |
|
1439
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); | |
| 301 | |
| 5089 | 302 flags = bytestream_get_le16(&s->stream_ptr); |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
303 bitmask = 0x0001; |
| 1468 | 304 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
|
305 for (x = 0; x < 8; x += 2, bitmask <<= 1) { |
| 1468 | 306 if (flags & bitmask) { |
| 1475 | 307 *(s->pixel_ptr + x) = P1; |
| 308 *(s->pixel_ptr + x + 1) = P1; | |
| 309 *(s->pixel_ptr + s->stride + x) = P1; | |
| 310 *(s->pixel_ptr + s->stride + x + 1) = P1; | |
|
1474
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
311 } else { |
| 1475 | 312 *(s->pixel_ptr + x) = P0; |
| 313 *(s->pixel_ptr + x + 1) = P0; | |
| 314 *(s->pixel_ptr + s->stride + x) = P0; | |
| 315 *(s->pixel_ptr + s->stride + x + 1) = P0; | |
| 1468 | 316 } |
| 317 } | |
| 1475 | 318 s->pixel_ptr += s->stride * 2; |
| 1468 | 319 } |
| 320 } | |
| 321 | |
| 322 /* report success */ | |
| 323 return 0; | |
| 324 } | |
| 325 | |
| 1475 | 326 static int ipvideo_decode_block_opcode_0x8(IpvideoContext *s) |
| 1468 | 327 { |
| 328 int x, y; | |
| 329 unsigned char P[8]; | |
| 330 unsigned char B[8]; | |
| 331 unsigned int flags = 0; | |
| 332 unsigned int bitmask = 0; | |
| 333 unsigned char P0 = 0, P1 = 0; | |
| 334 int lower_half = 0; | |
| 335 | |
| 336 /* 2-color encoding for each 4x4 quadrant, or 2-color encoding on | |
| 337 * either top and bottom or left and right halves */ | |
| 338 CHECK_STREAM_PTR(2); | |
| 339 | |
| 1475 | 340 P[0] = *s->stream_ptr++; |
| 341 P[1] = *s->stream_ptr++; | |
| 1468 | 342 |
| 343 if (P[0] <= P[1]) { | |
| 344 | |
| 345 /* need 12 more bytes */ | |
| 346 CHECK_STREAM_PTR(12); | |
| 1475 | 347 B[0] = *s->stream_ptr++; B[1] = *s->stream_ptr++; |
| 348 P[2] = *s->stream_ptr++; P[3] = *s->stream_ptr++; | |
| 349 B[2] = *s->stream_ptr++; B[3] = *s->stream_ptr++; | |
| 350 P[4] = *s->stream_ptr++; P[5] = *s->stream_ptr++; | |
| 351 B[4] = *s->stream_ptr++; B[5] = *s->stream_ptr++; | |
| 352 P[6] = *s->stream_ptr++; P[7] = *s->stream_ptr++; | |
| 353 B[6] = *s->stream_ptr++; B[7] = *s->stream_ptr++; | |
| 1468 | 354 |
| 355 for (y = 0; y < 8; y++) { | |
| 356 | |
| 357 /* time to reload flags? */ | |
| 358 if (y == 0) { | |
| 359 flags = | |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
360 ((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
|
361 ((B[0] & 0x0F) ) | ((B[4] & 0x0F) << 4) | |
|
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
362 ((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
|
363 ((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
|
364 bitmask = 0x00000001; |
| 1468 | 365 lower_half = 0; /* still on top half */ |
| 366 } else if (y == 4) { | |
| 367 flags = | |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
368 ((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
|
369 ((B[2] & 0x0F) ) | ((B[6] & 0x0F) << 4) | |
|
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
370 ((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
|
371 ((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
|
372 bitmask = 0x00000001; |
|
1474
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
373 lower_half = 2; |
| 1468 | 374 } |
| 375 | |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
376 for (x = 0; x < 8; x++, bitmask <<= 1) { |
| 1468 | 377 /* get the pixel values ready for this quadrant */ |
| 378 if (x == 0) { | |
| 379 P0 = P[lower_half + 0]; | |
| 380 P1 = P[lower_half + 1]; | |
| 381 } else if (x == 4) { | |
|
1474
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
382 P0 = P[lower_half + 4]; |
|
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
383 P1 = P[lower_half + 5]; |
| 1468 | 384 } |
| 385 | |
| 386 if (flags & bitmask) | |
| 1475 | 387 *s->pixel_ptr++ = P1; |
| 1468 | 388 else |
| 1475 | 389 *s->pixel_ptr++ = P0; |
| 1468 | 390 } |
| 1475 | 391 s->pixel_ptr += s->line_inc; |
| 1468 | 392 } |
| 393 | |
| 394 } else { | |
| 395 | |
| 396 /* need 10 more bytes */ | |
| 397 CHECK_STREAM_PTR(10); | |
| 1475 | 398 B[0] = *s->stream_ptr++; B[1] = *s->stream_ptr++; |
| 399 B[2] = *s->stream_ptr++; B[3] = *s->stream_ptr++; | |
| 400 P[2] = *s->stream_ptr++; P[3] = *s->stream_ptr++; | |
| 401 B[4] = *s->stream_ptr++; B[5] = *s->stream_ptr++; | |
| 402 B[6] = *s->stream_ptr++; B[7] = *s->stream_ptr++; | |
| 1468 | 403 |
| 404 if (P[2] <= P[3]) { | |
| 405 | |
| 406 /* vertical split; left & right halves are 2-color encoded */ | |
| 407 | |
| 408 for (y = 0; y < 8; y++) { | |
| 409 | |
| 410 /* time to reload flags? */ | |
| 411 if (y == 0) { | |
| 412 flags = | |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
413 ((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
|
414 ((B[0] & 0x0F) ) | ((B[4] & 0x0F) << 4) | |
|
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
415 ((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
|
416 ((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
|
417 bitmask = 0x00000001; |
| 1468 | 418 } else if (y == 4) { |
| 419 flags = | |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
420 ((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
|
421 ((B[2] & 0x0F) ) | ((B[6] & 0x0F) << 4) | |
|
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
422 ((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
|
423 ((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
|
424 bitmask = 0x00000001; |
| 1468 | 425 } |
| 426 | |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
427 for (x = 0; x < 8; x++, bitmask <<= 1) { |
| 1468 | 428 /* get the pixel values ready for this half */ |
| 429 if (x == 0) { | |
| 430 P0 = P[0]; | |
| 431 P1 = P[1]; | |
| 432 } else if (x == 4) { | |
| 433 P0 = P[2]; | |
| 434 P1 = P[3]; | |
| 435 } | |
| 436 | |
| 437 if (flags & bitmask) | |
| 1475 | 438 *s->pixel_ptr++ = P1; |
| 1468 | 439 else |
| 1475 | 440 *s->pixel_ptr++ = P0; |
| 1468 | 441 } |
| 1475 | 442 s->pixel_ptr += s->line_inc; |
| 1468 | 443 } |
| 444 | |
| 445 } else { | |
| 446 | |
| 447 /* horizontal split; top & bottom halves are 2-color encoded */ | |
| 448 | |
| 449 for (y = 0; y < 8; y++) { | |
| 450 | |
| 451 flags = B[y]; | |
| 452 if (y == 0) { | |
| 453 P0 = P[0]; | |
| 454 P1 = P[1]; | |
| 455 } else if (y == 4) { | |
| 456 P0 = P[2]; | |
| 457 P1 = P[3]; | |
| 458 } | |
| 459 | |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
460 for (bitmask = 0x01; bitmask <= 0x80; bitmask <<= 1) { |
| 1468 | 461 |
| 462 if (flags & bitmask) | |
| 1475 | 463 *s->pixel_ptr++ = P1; |
| 1468 | 464 else |
| 1475 | 465 *s->pixel_ptr++ = P0; |
| 1468 | 466 } |
| 1475 | 467 s->pixel_ptr += s->line_inc; |
| 1468 | 468 } |
| 469 } | |
| 470 } | |
| 471 | |
| 472 /* report success */ | |
| 473 return 0; | |
| 474 } | |
| 475 | |
| 1475 | 476 static int ipvideo_decode_block_opcode_0x9(IpvideoContext *s) |
| 1468 | 477 { |
| 478 int x, y; | |
| 479 unsigned char P[4]; | |
| 480 unsigned int flags = 0; | |
| 481 int shifter = 0; | |
| 482 unsigned char pix; | |
| 483 | |
| 484 /* 4-color encoding */ | |
| 485 CHECK_STREAM_PTR(4); | |
| 486 | |
| 487 for (y = 0; y < 4; y++) | |
| 1475 | 488 P[y] = *s->stream_ptr++; |
| 1468 | 489 |
| 490 if ((P[0] <= P[1]) && (P[2] <= P[3])) { | |
| 491 | |
| 492 /* 1 of 4 colors for each pixel, need 16 more bytes */ | |
| 493 CHECK_STREAM_PTR(16); | |
| 494 | |
| 495 for (y = 0; y < 8; y++) { | |
| 496 /* get the next set of 8 2-bit flags */ | |
| 5089 | 497 flags = bytestream_get_le16(&s->stream_ptr); |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
498 for (x = 0, shifter = 0; x < 8; x++, shifter += 2) { |
| 1475 | 499 *s->pixel_ptr++ = P[(flags >> shifter) & 0x03]; |
| 1468 | 500 } |
| 1475 | 501 s->pixel_ptr += s->line_inc; |
| 1468 | 502 } |
| 503 | |
| 504 } else if ((P[0] <= P[1]) && (P[2] > P[3])) { | |
| 505 | |
| 506 /* 1 of 4 colors for each 2x2 block, need 4 more bytes */ | |
| 507 CHECK_STREAM_PTR(4); | |
| 508 | |
| 5089 | 509 flags = bytestream_get_le32(&s->stream_ptr); |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
510 shifter = 0; |
| 1468 | 511 |
| 512 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
|
513 for (x = 0; x < 8; x += 2, shifter += 2) { |
| 1468 | 514 pix = P[(flags >> shifter) & 0x03]; |
| 1475 | 515 *(s->pixel_ptr + x) = pix; |
| 516 *(s->pixel_ptr + x + 1) = pix; | |
| 517 *(s->pixel_ptr + s->stride + x) = pix; | |
| 518 *(s->pixel_ptr + s->stride + x + 1) = pix; | |
| 1468 | 519 } |
| 1475 | 520 s->pixel_ptr += s->stride * 2; |
| 1468 | 521 } |
| 522 | |
| 523 } else if ((P[0] > P[1]) && (P[2] <= P[3])) { | |
| 524 | |
| 525 /* 1 of 4 colors for each 2x1 block, need 8 more bytes */ | |
| 526 CHECK_STREAM_PTR(8); | |
| 527 | |
| 528 for (y = 0; y < 8; y++) { | |
| 529 /* time to reload flags? */ | |
| 530 if ((y == 0) || (y == 4)) { | |
| 5089 | 531 flags = bytestream_get_le32(&s->stream_ptr); |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
532 shifter = 0; |
| 1468 | 533 } |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
534 for (x = 0; x < 8; x += 2, shifter += 2) { |
| 1468 | 535 pix = P[(flags >> shifter) & 0x03]; |
| 1475 | 536 *(s->pixel_ptr + x) = pix; |
| 537 *(s->pixel_ptr + x + 1) = pix; | |
| 1468 | 538 } |
| 1475 | 539 s->pixel_ptr += s->stride; |
| 1468 | 540 } |
| 541 | |
| 542 } else { | |
| 543 | |
| 544 /* 1 of 4 colors for each 1x2 block, need 8 more bytes */ | |
| 545 CHECK_STREAM_PTR(8); | |
| 546 | |
| 547 for (y = 0; y < 8; y += 2) { | |
| 548 /* time to reload flags? */ | |
| 549 if ((y == 0) || (y == 4)) { | |
| 5089 | 550 flags = bytestream_get_le32(&s->stream_ptr); |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
551 shifter = 0; |
| 1468 | 552 } |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
553 for (x = 0; x < 8; x++, shifter += 2) { |
| 1468 | 554 pix = P[(flags >> shifter) & 0x03]; |
| 1475 | 555 *(s->pixel_ptr + x) = pix; |
| 556 *(s->pixel_ptr + s->stride + x) = pix; | |
| 1468 | 557 } |
| 1475 | 558 s->pixel_ptr += s->stride * 2; |
| 1468 | 559 } |
| 560 } | |
| 561 | |
| 562 /* report success */ | |
| 563 return 0; | |
| 564 } | |
| 565 | |
| 1475 | 566 static int ipvideo_decode_block_opcode_0xA(IpvideoContext *s) |
| 1468 | 567 { |
| 568 int x, y; | |
| 569 unsigned char P[16]; | |
| 570 unsigned char B[16]; | |
| 571 int flags = 0; | |
| 572 int shifter = 0; | |
| 573 int index; | |
| 574 int split; | |
| 575 int lower_half; | |
| 576 | |
| 577 /* 4-color encoding for each 4x4 quadrant, or 4-color encoding on | |
| 578 * either top and bottom or left and right halves */ | |
| 579 CHECK_STREAM_PTR(4); | |
| 580 | |
| 581 for (y = 0; y < 4; y++) | |
| 1475 | 582 P[y] = *s->stream_ptr++; |
| 1468 | 583 |
| 584 if (P[0] <= P[1]) { | |
| 585 | |
| 586 /* 4-color encoding for each quadrant; need 28 more bytes */ | |
| 587 CHECK_STREAM_PTR(28); | |
| 588 | |
| 589 for (y = 0; y < 4; y++) | |
| 1475 | 590 B[y] = *s->stream_ptr++; |
| 1468 | 591 for (y = 4; y < 16; y += 4) { |
| 592 for (x = y; x < y + 4; x++) | |
| 1475 | 593 P[x] = *s->stream_ptr++; |
| 1468 | 594 for (x = y; x < y + 4; x++) |
| 1475 | 595 B[x] = *s->stream_ptr++; |
| 1468 | 596 } |
| 597 | |
| 598 for (y = 0; y < 8; y++) { | |
| 599 | |
| 600 lower_half = (y >= 4) ? 4 : 0; | |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
601 flags = (B[y + 8] << 8) | B[y]; |
| 1468 | 602 |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
603 for (x = 0, shifter = 0; x < 8; x++, shifter += 2) { |
| 1468 | 604 split = (x >= 4) ? 8 : 0; |
| 605 index = split + lower_half + ((flags >> shifter) & 0x03); | |
| 1475 | 606 *s->pixel_ptr++ = P[index]; |
| 1468 | 607 } |
| 608 | |
| 1475 | 609 s->pixel_ptr += s->line_inc; |
| 1468 | 610 } |
| 611 | |
| 612 } else { | |
| 613 | |
| 614 /* 4-color encoding for either left and right or top and bottom | |
| 615 * halves; need 20 more bytes */ | |
| 616 CHECK_STREAM_PTR(20); | |
| 617 | |
| 618 for (y = 0; y < 8; y++) | |
| 1475 | 619 B[y] = *s->stream_ptr++; |
| 1468 | 620 for (y = 4; y < 8; y++) |
| 1475 | 621 P[y] = *s->stream_ptr++; |
| 1468 | 622 for (y = 8; y < 16; y++) |
| 1475 | 623 B[y] = *s->stream_ptr++; |
| 1468 | 624 |
| 625 if (P[4] <= P[5]) { | |
| 626 | |
| 627 /* block is divided into left and right halves */ | |
| 628 for (y = 0; y < 8; y++) { | |
| 629 | |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
630 flags = (B[y + 8] << 8) | B[y]; |
| 1468 | 631 split = 0; |
| 632 | |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
633 for (x = 0, shifter = 0; x < 8; x++, shifter += 2) { |
| 1468 | 634 if (x == 4) |
| 635 split = 4; | |
| 1475 | 636 *s->pixel_ptr++ = P[split + ((flags >> shifter) & 0x03)]; |
| 1468 | 637 } |
| 638 | |
| 1475 | 639 s->pixel_ptr += s->line_inc; |
| 1468 | 640 } |
| 641 | |
| 642 } else { | |
| 643 | |
| 644 /* block is divided into top and bottom halves */ | |
| 645 split = 0; | |
| 646 for (y = 0; y < 8; y++) { | |
| 647 | |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
648 flags = (B[y * 2 + 1] << 8) | B[y * 2]; |
| 1468 | 649 if (y == 4) |
| 650 split = 4; | |
| 651 | |
|
1473
873100cd2108
wrong, wrong, wrong...coded bits are read in the opposite direction
tmmm
parents:
1468
diff
changeset
|
652 for (x = 0, shifter = 0; x < 8; x++, shifter += 2) |
| 1475 | 653 *s->pixel_ptr++ = P[split + ((flags >> shifter) & 0x03)]; |
| 1468 | 654 |
| 1475 | 655 s->pixel_ptr += s->line_inc; |
| 1468 | 656 } |
| 657 } | |
| 658 } | |
| 659 | |
| 660 /* report success */ | |
| 661 return 0; | |
| 662 } | |
| 663 | |
| 1475 | 664 static int ipvideo_decode_block_opcode_0xB(IpvideoContext *s) |
| 1468 | 665 { |
| 666 int x, y; | |
| 667 | |
| 668 /* 64-color encoding (each pixel in block is a different color) */ | |
| 669 CHECK_STREAM_PTR(64); | |
| 670 | |
| 671 for (y = 0; y < 8; y++) { | |
| 672 for (x = 0; x < 8; x++) { | |
| 1475 | 673 *s->pixel_ptr++ = *s->stream_ptr++; |
| 1468 | 674 } |
| 1475 | 675 s->pixel_ptr += s->line_inc; |
| 1468 | 676 } |
| 677 | |
| 678 /* report success */ | |
| 679 return 0; | |
| 680 } | |
| 681 | |
| 1475 | 682 static int ipvideo_decode_block_opcode_0xC(IpvideoContext *s) |
| 1468 | 683 { |
| 684 int x, y; | |
| 685 unsigned char pix; | |
| 686 | |
| 687 /* 16-color block encoding: each 2x2 block is a different color */ | |
| 688 CHECK_STREAM_PTR(16); | |
| 689 | |
| 690 for (y = 0; y < 8; y += 2) { | |
| 691 for (x = 0; x < 8; x += 2) { | |
| 1475 | 692 pix = *s->stream_ptr++; |
| 693 *(s->pixel_ptr + x) = pix; | |
| 694 *(s->pixel_ptr + x + 1) = pix; | |
| 695 *(s->pixel_ptr + s->stride + x) = pix; | |
| 696 *(s->pixel_ptr + s->stride + x + 1) = pix; | |
| 1468 | 697 } |
| 1475 | 698 s->pixel_ptr += s->stride * 2; |
| 1468 | 699 } |
| 700 | |
| 701 /* report success */ | |
| 702 return 0; | |
| 703 } | |
| 704 | |
| 1475 | 705 static int ipvideo_decode_block_opcode_0xD(IpvideoContext *s) |
| 1468 | 706 { |
| 707 int x, y; | |
| 708 unsigned char P[4]; | |
| 709 unsigned char index = 0; | |
| 710 | |
| 711 /* 4-color block encoding: each 4x4 block is a different color */ | |
| 712 CHECK_STREAM_PTR(4); | |
| 713 | |
| 714 for (y = 0; y < 4; y++) | |
| 1475 | 715 P[y] = *s->stream_ptr++; |
| 1468 | 716 |
| 717 for (y = 0; y < 8; y++) { | |
| 718 if (y < 4) | |
| 719 index = 0; | |
| 720 else | |
| 721 index = 2; | |
| 722 | |
| 723 for (x = 0; x < 8; x++) { | |
| 724 if (x == 4) | |
| 725 index++; | |
| 1475 | 726 *s->pixel_ptr++ = P[index]; |
| 1468 | 727 } |
| 1475 | 728 s->pixel_ptr += s->line_inc; |
| 1468 | 729 } |
| 730 | |
| 731 /* report success */ | |
| 732 return 0; | |
| 733 } | |
| 734 | |
| 1475 | 735 static int ipvideo_decode_block_opcode_0xE(IpvideoContext *s) |
| 1468 | 736 { |
| 737 int x, y; | |
| 738 unsigned char pix; | |
| 739 | |
| 740 /* 1-color encoding: the whole block is 1 solid color */ | |
| 741 CHECK_STREAM_PTR(1); | |
| 1475 | 742 pix = *s->stream_ptr++; |
| 1468 | 743 |
| 744 for (y = 0; y < 8; y++) { | |
| 745 for (x = 0; x < 8; x++) { | |
| 1475 | 746 *s->pixel_ptr++ = pix; |
| 1468 | 747 } |
| 1475 | 748 s->pixel_ptr += s->line_inc; |
| 1468 | 749 } |
| 750 | |
| 751 /* report success */ | |
| 752 return 0; | |
| 753 } | |
| 754 | |
| 1475 | 755 static int ipvideo_decode_block_opcode_0xF(IpvideoContext *s) |
| 1468 | 756 { |
| 757 int x, y; | |
| 758 unsigned char sample0, sample1; | |
| 759 | |
| 760 /* dithered encoding */ | |
| 761 CHECK_STREAM_PTR(2); | |
| 1475 | 762 sample0 = *s->stream_ptr++; |
| 763 sample1 = *s->stream_ptr++; | |
| 1468 | 764 |
| 765 for (y = 0; y < 8; y++) { | |
| 766 for (x = 0; x < 8; x += 2) { | |
| 767 if (y & 1) { | |
| 1475 | 768 *s->pixel_ptr++ = sample1; |
| 769 *s->pixel_ptr++ = sample0; | |
| 1468 | 770 } else { |
| 1475 | 771 *s->pixel_ptr++ = sample0; |
| 772 *s->pixel_ptr++ = sample1; | |
| 1468 | 773 } |
| 774 } | |
| 1475 | 775 s->pixel_ptr += s->line_inc; |
| 1468 | 776 } |
| 777 | |
| 778 /* report success */ | |
| 779 return 0; | |
| 780 } | |
| 781 | |
| 1475 | 782 static int (*ipvideo_decode_block[16])(IpvideoContext *s); |
| 1468 | 783 |
| 784 static void ipvideo_decode_opcodes(IpvideoContext *s) | |
| 785 { | |
| 786 int x, y; | |
| 787 int index = 0; | |
| 788 unsigned char opcode; | |
| 789 int ret; | |
| 790 int code_counts[16]; | |
| 791 static int frame = 0; | |
| 792 | |
| 793 debug_interplay("------------------ frame %d\n", frame); | |
| 794 frame++; | |
| 795 | |
| 796 for (x = 0; x < 16; x++) | |
| 797 code_counts[x] = 0; | |
| 798 | |
| 799 /* 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
|
800 memcpy(s->current_frame.data[1], s->avctx->palctrl->palette, PALETTE_COUNT * 4); |
| 1468 | 801 |
| 1475 | 802 s->stride = s->current_frame.linesize[0]; |
| 803 s->stream_ptr = s->buf + 14; /* data starts 14 bytes in */ | |
| 804 s->stream_end = s->buf + s->size; | |
| 805 s->line_inc = s->stride - 8; | |
| 806 s->upper_motion_limit_offset = (s->avctx->height - 8) * s->stride | |
| 807 + s->avctx->width - 8; | |
| 808 s->dsp = s->dsp; | |
| 1468 | 809 |
| 1475 | 810 for (y = 0; y < (s->stride * s->avctx->height); y += s->stride * 8) { |
| 811 for (x = y; x < y + s->avctx->width; x += 8) { | |
| 812 /* bottom nibble first, then top nibble (which makes it | |
| 813 * hard to use a GetBitcontext) */ | |
| 814 if (index & 1) | |
| 815 opcode = s->decoding_map[index >> 1] >> 4; | |
| 816 else | |
| 817 opcode = s->decoding_map[index >> 1] & 0xF; | |
| 818 index++; | |
| 1468 | 819 |
| 1475 | 820 debug_interplay(" block @ (%3d, %3d): encoding 0x%X, data ptr @ %p\n", |
| 821 x - y, y / s->stride, opcode, s->stream_ptr); | |
| 822 code_counts[opcode]++; | |
| 1468 | 823 |
| 1475 | 824 s->pixel_ptr = s->current_frame.data[0] + x; |
| 825 ret = ipvideo_decode_block[opcode](s); | |
| 826 if (ret != 0) { | |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
827 av_log(s->avctx, AV_LOG_ERROR, " Interplay video: decode problem on frame %d, @ block (%d, %d)\n", |
| 1475 | 828 frame, x - y, y / s->stride); |
| 829 return; | |
| 1468 | 830 } |
| 831 } | |
| 832 } | |
| 1475 | 833 if ((s->stream_ptr != s->stream_end) && |
| 834 (s->stream_ptr + 1 != s->stream_end)) { | |
| 2962 | 835 av_log(s->avctx, AV_LOG_ERROR, " Interplay video: decode finished with %td bytes left over\n", |
| 1475 | 836 s->stream_end - s->stream_ptr); |
| 837 } | |
| 1468 | 838 } |
| 839 | |
|
1439
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
840 static int ipvideo_decode_init(AVCodecContext *avctx) |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
841 { |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
842 IpvideoContext *s = avctx->priv_data; |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
843 |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
844 s->avctx = avctx; |
| 1468 | 845 |
|
1585
6b224ca24033
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
1545
diff
changeset
|
846 if (s->avctx->palctrl == NULL) { |
|
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1585
diff
changeset
|
847 av_log(avctx, AV_LOG_ERROR, " Interplay video: palette expected.\n"); |
| 1468 | 848 return -1; |
| 849 } | |
| 850 | |
| 851 avctx->pix_fmt = PIX_FMT_PAL8; | |
|
1439
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
852 dsputil_init(&s->dsp, avctx); |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
853 |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
854 /* 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
|
855 s->decoding_map_size = avctx->width * avctx->height / (8 * 8 * 2); |
| 1468 | 856 |
| 857 /* assign block decode functions */ | |
|
1474
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
858 ipvideo_decode_block[0x0] = ipvideo_decode_block_opcode_0x0; |
|
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
859 ipvideo_decode_block[0x1] = ipvideo_decode_block_opcode_0x1; |
| 1468 | 860 ipvideo_decode_block[0x2] = ipvideo_decode_block_opcode_0x2; |
| 861 ipvideo_decode_block[0x3] = ipvideo_decode_block_opcode_0x3; | |
| 862 ipvideo_decode_block[0x4] = ipvideo_decode_block_opcode_0x4; | |
| 863 ipvideo_decode_block[0x5] = ipvideo_decode_block_opcode_0x5; | |
| 864 ipvideo_decode_block[0x6] = ipvideo_decode_block_opcode_0x6; | |
| 865 ipvideo_decode_block[0x7] = ipvideo_decode_block_opcode_0x7; | |
| 866 ipvideo_decode_block[0x8] = ipvideo_decode_block_opcode_0x8; | |
| 867 ipvideo_decode_block[0x9] = ipvideo_decode_block_opcode_0x9; | |
| 868 ipvideo_decode_block[0xA] = ipvideo_decode_block_opcode_0xA; | |
| 869 ipvideo_decode_block[0xB] = ipvideo_decode_block_opcode_0xB; | |
| 870 ipvideo_decode_block[0xC] = ipvideo_decode_block_opcode_0xC; | |
| 871 ipvideo_decode_block[0xD] = ipvideo_decode_block_opcode_0xD; | |
| 872 ipvideo_decode_block[0xE] = ipvideo_decode_block_opcode_0xE; | |
| 873 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
|
874 |
|
1474
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
875 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
|
876 s->second_last_frame.data[0] = NULL; |
|
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
877 |
|
1439
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
878 return 0; |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
879 } |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
880 |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
881 static int ipvideo_decode_frame(AVCodecContext *avctx, |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
882 void *data, int *data_size, |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
883 uint8_t *buf, int buf_size) |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
884 { |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
885 IpvideoContext *s = avctx->priv_data; |
|
1585
6b224ca24033
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
1545
diff
changeset
|
886 AVPaletteControl *palette_control = avctx->palctrl; |
|
1439
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
887 |
| 1770 | 888 /* compressed buffer needs to be large enough to at least hold an entire |
| 889 * decoding map */ | |
| 890 if (buf_size < s->decoding_map_size) | |
| 891 return buf_size; | |
| 892 | |
| 1468 | 893 s->decoding_map = buf; |
| 894 s->buf = buf + s->decoding_map_size; | |
| 895 s->size = buf_size - s->decoding_map_size; | |
| 896 | |
|
1474
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
897 s->current_frame.reference = 3; |
| 1468 | 898 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
|
899 av_log(avctx, AV_LOG_ERROR, " Interplay Video: get_buffer() failed\n"); |
| 1468 | 900 return -1; |
| 901 } | |
| 902 | |
| 903 ipvideo_decode_opcodes(s); | |
| 904 | |
|
1585
6b224ca24033
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
1545
diff
changeset
|
905 if (palette_control->palette_changed) { |
|
6b224ca24033
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
1545
diff
changeset
|
906 palette_control->palette_changed = 0; |
|
6b224ca24033
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
1545
diff
changeset
|
907 s->current_frame.palette_has_changed = 1; |
|
6b224ca24033
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
1545
diff
changeset
|
908 } |
|
6b224ca24033
revised palette API, courtesy of Roberto Togni (rtogni at freemail.it)
melanson
parents:
1545
diff
changeset
|
909 |
|
1474
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
910 *data_size = sizeof(AVFrame); |
|
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
911 *(AVFrame*)data = s->current_frame; |
| 1468 | 912 |
| 913 /* shuffle frames */ | |
|
1474
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
914 if (s->second_last_frame.data[0]) |
|
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
915 avctx->release_buffer(avctx, &s->second_last_frame); |
|
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
916 s->second_last_frame = s->last_frame; |
| 1468 | 917 s->last_frame = s->current_frame; |
|
1474
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
918 s->current_frame.data[0] = NULL; /* catch any access attempts */ |
| 1468 | 919 |
| 920 /* report that the buffer was completely consumed */ | |
|
1439
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
921 return buf_size; |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
922 } |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
923 |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
924 static int ipvideo_decode_end(AVCodecContext *avctx) |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
925 { |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
926 IpvideoContext *s = avctx->priv_data; |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
927 |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
928 /* release the last frame */ |
|
1474
94c7f7c23dd9
video looks beautiful now, many thanks to Alexander Belyakov
tmmm
parents:
1473
diff
changeset
|
929 if (s->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->last_frame); |
|
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); |
|
1439
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
933 |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
934 return 0; |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
935 } |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
936 |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
937 AVCodec interplay_video_decoder = { |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
938 "interplayvideo", |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
939 CODEC_TYPE_VIDEO, |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
940 CODEC_ID_INTERPLAY_VIDEO, |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
941 sizeof(IpvideoContext), |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
942 ipvideo_decode_init, |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
943 NULL, |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
944 ipvideo_decode_end, |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
945 ipvideo_decode_frame, |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
946 CODEC_CAP_DR1, |
|
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
diff
changeset
|
947 }; |
