2 * Discworld II BMV video decoder
3 * Copyright (c) 2011 Konstantin Shishkov
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/avassert.h"
23 #include "libavutil/common.h"
26 #include "bytestream.h"
43 #define SCREEN_WIDE 640
44 #define SCREEN_HIGH 429
46 typedef struct BMVDecContext {
47 AVCodecContext *avctx;
49 uint8_t *frame, frame_base[SCREEN_WIDE * (SCREEN_HIGH + 1)];
51 const uint8_t *stream;
54 #define NEXT_BYTE(v) (v) = forward ? (v) + 1 : (v) - 1;
56 static int decode_bmv_frame(const uint8_t *source, int src_len, uint8_t *frame, int frame_off)
58 unsigned val, saved_val = 0;
60 const uint8_t *src, *source_end = source + src_len;
61 uint8_t *frame_end = frame + SCREEN_WIDE * SCREEN_HIGH;
62 uint8_t *dst, *dst_end;
64 int forward = (frame_off <= -SCREEN_WIDE) || (frame_off >= 0);
65 int read_two_nibbles, flag;
71 return AVERROR_INVALIDDATA;
78 src = source + src_len - 1;
86 /* The mode/len decoding is a bit strange:
87 * values are coded as variable-length codes with nibble units,
88 * code end is signalled by two top bits in the nibble being nonzero.
89 * And since data is bytepacked and we read two nibbles at a time,
90 * we may get a nibble belonging to the next code.
91 * Hence this convoluted loop.
93 if (!mode || (tmplen == 4)) {
94 if (src < source || src >= source_end)
95 return AVERROR_INVALIDDATA;
100 read_two_nibbles = 0;
106 if (!read_two_nibbles) {
107 if (src < source || src >= source_end)
108 return AVERROR_INVALIDDATA;
110 val |= (unsigned)*src << shift;
114 // two upper bits of the nibble is zero,
115 // so shift top nibble value down into their place
116 read_two_nibbles = 0;
118 mask = (1 << shift) - 1;
119 val = ((val >> 2) & ~mask) | (val & mask);
121 if ((val & (0xC << shift))) {
132 saved_val = val >> (4 + shift);
134 val &= (1 << (shift + 4)) - 1;
137 advance_mode = val & 1;
138 len = (val >> 1) - 1;
140 mode += 1 + advance_mode;
143 if (len <= 0 || FFABS(dst_end - dst) < len)
144 return AVERROR_INVALIDDATA;
148 if (dst - frame + SCREEN_WIDE < frame_off ||
149 dst - frame + SCREEN_WIDE + frame_off < 0 ||
150 frame_end - dst < frame_off + len ||
151 frame_end - dst < len)
152 return AVERROR_INVALIDDATA;
153 for (i = 0; i < len; i++)
154 dst[i] = dst[frame_off + i];
158 if (dst - frame + SCREEN_WIDE < frame_off ||
159 dst - frame + SCREEN_WIDE + frame_off < 0 ||
160 frame_end - dst < frame_off + len ||
161 frame_end - dst < len)
162 return AVERROR_INVALIDDATA;
163 for (i = len - 1; i >= 0; i--)
164 dst[i] = dst[frame_off + i];
169 if (source + src_len - src < len)
170 return AVERROR_INVALIDDATA;
171 memcpy(dst, src, len);
175 if (src - source < len)
176 return AVERROR_INVALIDDATA;
179 memcpy(dst, src, len);
183 val = forward ? dst[-1] : dst[1];
185 memset(dst, val, len);
189 memset(dst, val, len);
198 static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
201 BMVDecContext * const c = avctx->priv_data;
202 AVFrame *frame = data;
205 uint8_t *srcptr, *outptr;
207 c->stream = pkt->data;
208 type = bytestream_get_byte(&c->stream);
209 if (type & BMV_AUDIO) {
210 int blobs = bytestream_get_byte(&c->stream);
211 if (pkt->size < blobs * 65 + 2) {
212 av_log(avctx, AV_LOG_ERROR, "Audio data doesn't fit in frame\n");
213 return AVERROR_INVALIDDATA;
215 c->stream += blobs * 65;
217 if (type & BMV_COMMAND) {
218 int command_size = (type & BMV_PRINT) ? 8 : 10;
219 if (c->stream - pkt->data + command_size > pkt->size) {
220 av_log(avctx, AV_LOG_ERROR, "Command data doesn't fit in frame\n");
221 return AVERROR_INVALIDDATA;
223 c->stream += command_size;
225 if (type & BMV_PALETTE) {
226 if (c->stream - pkt->data > pkt->size - 768) {
227 av_log(avctx, AV_LOG_ERROR, "Palette data doesn't fit in frame\n");
228 return AVERROR_INVALIDDATA;
230 for (i = 0; i < 256; i++)
231 c->pal[i] = 0xFFU << 24 | bytestream_get_be24(&c->stream);
233 if (type & BMV_SCROLL) {
234 if (c->stream - pkt->data > pkt->size - 2) {
235 av_log(avctx, AV_LOG_ERROR, "Screen offset data doesn't fit in frame\n");
236 return AVERROR_INVALIDDATA;
238 scr_off = (int16_t)bytestream_get_le16(&c->stream);
239 } else if ((type & BMV_INTRA) == BMV_INTRA) {
245 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
248 if (decode_bmv_frame(c->stream, pkt->size - (c->stream - pkt->data), c->frame, scr_off)) {
249 av_log(avctx, AV_LOG_ERROR, "Error decoding frame data\n");
250 return AVERROR_INVALIDDATA;
253 memcpy(frame->data[1], c->pal, AVPALETTE_SIZE);
254 frame->palette_has_changed = type & BMV_PALETTE;
256 outptr = frame->data[0];
259 for (i = 0; i < avctx->height; i++) {
260 memcpy(outptr, srcptr, avctx->width);
261 srcptr += avctx->width;
262 outptr += frame->linesize[0];
267 /* always report that the buffer was completely consumed */
271 static av_cold int decode_init(AVCodecContext *avctx)
273 BMVDecContext * const c = avctx->priv_data;
276 avctx->pix_fmt = AV_PIX_FMT_PAL8;
278 if (avctx->width != SCREEN_WIDE || avctx->height != SCREEN_HIGH) {
279 av_log(avctx, AV_LOG_ERROR, "Invalid dimension %dx%d\n", avctx->width, avctx->height);
280 return AVERROR_INVALIDDATA;
283 c->frame = c->frame_base + 640;
288 AVCodec ff_bmv_video_decoder = {
290 .long_name = NULL_IF_CONFIG_SMALL("Discworld II BMV video"),
291 .type = AVMEDIA_TYPE_VIDEO,
292 .id = AV_CODEC_ID_BMV_VIDEO,
293 .priv_data_size = sizeof(BMVDecContext),
295 .decode = decode_frame,
296 .capabilities = AV_CODEC_CAP_DR1,
297 .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,