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