2 * Chronomaster DFA Video Decoder
3 * Copyright (c) 2011 Konstantin Shishkov
4 * based on work by Vladimir "VAG" Gneushev
6 * This file is part of Libav.
8 * Libav is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * Libav is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with Libav; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #include "bytestream.h"
25 #include "libavutil/lzo.h" // for av_memcpy_backptr
27 typedef struct DfaContext {
34 static av_cold int dfa_decode_init(AVCodecContext *avctx)
36 DfaContext *s = avctx->priv_data;
38 avctx->pix_fmt = PIX_FMT_PAL8;
40 s->frame_buf = av_mallocz(avctx->width * avctx->height + AV_LZO_OUTPUT_PADDING);
42 return AVERROR(ENOMEM);
47 static int decode_copy(GetByteContext *gb, uint8_t *frame, int width, int height)
49 const int size = width * height;
51 if (bytestream2_get_buffer(gb, frame, size) != size)
56 static int decode_tsw1(GetByteContext *gb, uint8_t *frame, int width, int height)
58 const uint8_t *frame_start = frame;
59 const uint8_t *frame_end = frame + width * height;
60 int mask = 0x10000, bitbuf = 0;
61 int v, count, segments;
64 segments = bytestream2_get_le32(gb);
65 offset = bytestream2_get_le32(gb);
66 if (frame_end - frame <= offset)
70 if (bytestream2_get_bytes_left(gb) < 2)
72 if (mask == 0x10000) {
73 bitbuf = bytestream2_get_le16u(gb);
76 if (frame_end - frame < 2)
79 v = bytestream2_get_le16(gb);
80 offset = (v & 0x1FFF) << 1;
81 count = ((v >> 13) + 2) << 1;
82 if (frame - frame_start < offset || frame_end - frame < count)
84 av_memcpy_backptr(frame, offset, count);
87 *frame++ = bytestream2_get_byte(gb);
88 *frame++ = bytestream2_get_byte(gb);
96 static int decode_dsw1(GetByteContext *gb, uint8_t *frame, int width, int height)
98 const uint8_t *frame_start = frame;
99 const uint8_t *frame_end = frame + width * height;
100 int mask = 0x10000, bitbuf = 0;
101 int v, offset, count, segments;
103 segments = bytestream2_get_le16(gb);
105 if (bytestream2_get_bytes_left(gb) < 2)
107 if (mask == 0x10000) {
108 bitbuf = bytestream2_get_le16u(gb);
111 if (frame_end - frame < 2)
114 v = bytestream2_get_le16(gb);
115 offset = (v & 0x1FFF) << 1;
116 count = ((v >> 13) + 2) << 1;
117 if (frame - frame_start < offset || frame_end - frame < count)
119 // can't use av_memcpy_backptr() since it can overwrite following pixels
120 for (v = 0; v < count; v++)
121 frame[v] = frame[v - offset];
123 } else if (bitbuf & (mask << 1)) {
124 frame += bytestream2_get_le16(gb);
126 *frame++ = bytestream2_get_byte(gb);
127 *frame++ = bytestream2_get_byte(gb);
135 static int decode_dds1(GetByteContext *gb, uint8_t *frame, int width, int height)
137 const uint8_t *frame_start = frame;
138 const uint8_t *frame_end = frame + width * height;
139 int mask = 0x10000, bitbuf = 0;
140 int i, v, offset, count, segments;
142 segments = bytestream2_get_le16(gb);
144 if (bytestream2_get_bytes_left(gb) < 2)
146 if (mask == 0x10000) {
147 bitbuf = bytestream2_get_le16u(gb);
150 if (frame_end - frame < 2)
153 v = bytestream2_get_le16(gb);
154 offset = (v & 0x1FFF) << 2;
155 count = ((v >> 13) + 2) << 1;
156 if (frame - frame_start < offset || frame_end - frame < count*2 + width)
158 for (i = 0; i < count; i++) {
159 frame[0] = frame[1] =
160 frame[width] = frame[width + 1] = frame[-offset];
164 } else if (bitbuf & (mask << 1)) {
165 frame += bytestream2_get_le16(gb) * 2;
167 frame[0] = frame[1] =
168 frame[width] = frame[width + 1] = bytestream2_get_byte(gb);
170 frame[0] = frame[1] =
171 frame[width] = frame[width + 1] = bytestream2_get_byte(gb);
180 static int decode_bdlt(GetByteContext *gb, uint8_t *frame, int width, int height)
183 int count, lines, segments;
185 count = bytestream2_get_le16(gb);
188 frame += width * count;
189 lines = bytestream2_get_le16(gb);
190 if (count + lines > height)
194 if (bytestream2_get_bytes_left(gb) < 1)
198 segments = bytestream2_get_byteu(gb);
200 if (frame - line_ptr <= bytestream2_peek_byte(gb))
202 line_ptr += bytestream2_get_byte(gb);
203 count = (int8_t)bytestream2_get_byte(gb);
205 if (frame - line_ptr < count)
207 if (bytestream2_get_buffer(gb, line_ptr, count) != count)
211 if (frame - line_ptr < count)
213 memset(line_ptr, bytestream2_get_byte(gb), count);
222 static int decode_wdlt(GetByteContext *gb, uint8_t *frame, int width, int height)
224 const uint8_t *frame_end = frame + width * height;
226 int count, i, v, lines, segments;
228 lines = bytestream2_get_le16(gb);
233 if (bytestream2_get_bytes_left(gb) < 2)
235 segments = bytestream2_get_le16u(gb);
236 while ((segments & 0xC000) == 0xC000) {
237 unsigned delta = -((int16_t)segments * width);
238 if (frame_end - frame <= delta)
241 segments = bytestream2_get_le16(gb);
243 if (segments & 0x8000) {
244 frame[width - 1] = segments & 0xFF;
245 segments = bytestream2_get_le16(gb);
250 if (frame - line_ptr <= bytestream2_peek_byte(gb))
252 line_ptr += bytestream2_get_byte(gb);
253 count = (int8_t)bytestream2_get_byte(gb);
255 if (frame - line_ptr < count * 2)
257 if (bytestream2_get_buffer(gb, line_ptr, count * 2) != count * 2)
259 line_ptr += count * 2;
262 if (frame - line_ptr < count * 2)
264 v = bytestream2_get_le16(gb);
265 for (i = 0; i < count; i++)
266 bytestream_put_le16(&line_ptr, v);
274 static int decode_unk6(GetByteContext *gb, uint8_t *frame, int width, int height)
279 static int decode_blck(GetByteContext *gb, uint8_t *frame, int width, int height)
281 memset(frame, 0, width * height);
286 typedef int (*chunk_decoder)(GetByteContext *gb, uint8_t *frame, int width, int height);
288 static const chunk_decoder decoder[8] = {
289 decode_copy, decode_tsw1, decode_bdlt, decode_wdlt,
290 decode_unk6, decode_dsw1, decode_blck, decode_dds1,
293 static const char* chunk_name[8] = {
294 "COPY", "TSW1", "BDLT", "WDLT", "????", "DSW1", "BLCK", "DDS1"
297 static int dfa_decode_frame(AVCodecContext *avctx,
298 void *data, int *data_size,
301 DfaContext *s = avctx->priv_data;
303 const uint8_t *buf = avpkt->data;
304 uint32_t chunk_type, chunk_size;
310 avctx->release_buffer(avctx, &s->pic);
312 if ((ret = avctx->get_buffer(avctx, &s->pic))) {
313 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
317 bytestream2_init(&gb, avpkt->data, avpkt->size);
318 while (bytestream2_get_bytes_left(&gb) > 0) {
319 bytestream2_skip(&gb, 4);
320 chunk_size = bytestream2_get_le32(&gb);
321 chunk_type = bytestream2_get_le32(&gb);
324 if (chunk_type == 1) {
325 pal_elems = FFMIN(chunk_size / 3, 256);
326 for (i = 0; i < pal_elems; i++) {
327 s->pal[i] = bytestream2_get_be24(&gb) << 2;
328 s->pal[i] |= (s->pal[i] >> 6) & 0x333;
330 s->pic.palette_has_changed = 1;
331 } else if (chunk_type <= 9) {
332 if (decoder[chunk_type - 2](&gb, s->frame_buf, avctx->width, avctx->height)) {
333 av_log(avctx, AV_LOG_ERROR, "Error decoding %s chunk\n",
334 chunk_name[chunk_type - 2]);
338 av_log(avctx, AV_LOG_WARNING, "Ignoring unknown chunk type %d\n",
345 dst = s->pic.data[0];
346 for (i = 0; i < avctx->height; i++) {
347 memcpy(dst, buf, avctx->width);
348 dst += s->pic.linesize[0];
351 memcpy(s->pic.data[1], s->pal, sizeof(s->pal));
353 *data_size = sizeof(AVFrame);
354 *(AVFrame*)data = s->pic;
359 static av_cold int dfa_decode_end(AVCodecContext *avctx)
361 DfaContext *s = avctx->priv_data;
364 avctx->release_buffer(avctx, &s->pic);
366 av_freep(&s->frame_buf);
371 AVCodec ff_dfa_decoder = {
373 .type = AVMEDIA_TYPE_VIDEO,
375 .priv_data_size = sizeof(DfaContext),
376 .init = dfa_decode_init,
377 .close = dfa_decode_end,
378 .decode = dfa_decode_frame,
379 .capabilities = CODEC_CAP_DR1,
380 .long_name = NULL_IF_CONFIG_SMALL("Chronomaster DFA"),