3 * Copyright (c) 2011-2012 Paul B Mahol
5 * This file is part of Libav.
7 * Libav 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 * Libav 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 Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/intreadwrite.h"
23 #include "libavutil/imgutils.h"
27 #define BIT_PLANAR 0x00
28 #define BYTE_PLANAR 0x20
31 #define BYTE_LINE 0xC0
34 AVCodecContext *avctx;
39 const uint8_t *palette;
47 static av_cold int cdxl_decode_init(AVCodecContext *avctx)
49 CDXLVideoContext *c = avctx->priv_data;
51 avcodec_get_frame_defaults(&c->frame);
52 c->new_video_size = 0;
58 static void import_palette(CDXLVideoContext *c, uint32_t *new_palette)
62 for (i = 0; i < c->palette_size / 2; i++) {
63 unsigned rgb = AV_RB16(&c->palette[i * 2]);
64 unsigned r = ((rgb >> 8) & 0xF) * 0x11;
65 unsigned g = ((rgb >> 4) & 0xF) * 0x11;
66 unsigned b = (rgb & 0xF) * 0x11;
67 AV_WN32(&new_palette[i], (r << 16) | (g << 8) | b);
71 static void bitplanar2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
76 init_get_bits(&gb, c->video, c->video_size * 8);
77 for (plane = 0; plane < c->bpp; plane++) {
78 for (y = 0; y < c->avctx->height; y++) {
79 for (x = 0; x < c->avctx->width; x++)
80 out[linesize * y + x] |= get_bits1(&gb) << plane;
81 skip_bits(&gb, c->padded_bits);
86 static void bitline2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
91 init_get_bits(&gb, c->video, c->video_size * 8);
92 for (y = 0; y < c->avctx->height; y++) {
93 for (plane = 0; plane < c->bpp; plane++) {
94 for (x = 0; x < c->avctx->width; x++)
95 out[linesize * y + x] |= get_bits1(&gb) << plane;
96 skip_bits(&gb, c->padded_bits);
101 static void import_format(CDXLVideoContext *c, int linesize, uint8_t *out)
103 memset(out, 0, linesize * c->avctx->height);
107 bitplanar2chunky(c, linesize, out);
110 bitline2chunky(c, linesize, out);
115 static void cdxl_decode_rgb(CDXLVideoContext *c)
117 uint32_t *new_palette = (uint32_t *)c->frame.data[1];
119 import_palette(c, new_palette);
120 import_format(c, c->frame.linesize[0], c->frame.data[0]);
123 static void cdxl_decode_ham6(CDXLVideoContext *c)
125 AVCodecContext *avctx = c->avctx;
126 uint32_t new_palette[16], r, g, b;
127 uint8_t *ptr, *out, index, op;
131 out = c->frame.data[0];
133 import_palette(c, new_palette);
134 import_format(c, avctx->width, c->new_video);
136 for (y = 0; y < avctx->height; y++) {
137 r = new_palette[0] & 0xFF0000;
138 g = new_palette[0] & 0xFF00;
139 b = new_palette[0] & 0xFF;
140 for (x = 0; x < avctx->width; x++) {
146 r = new_palette[index] & 0xFF0000;
147 g = new_palette[index] & 0xFF00;
148 b = new_palette[index] & 0xFF;
154 r = index * 0x11 << 16;
157 g = index * 0x11 << 8;
160 AV_WL24(out + x * 3, r | g | b);
162 out += c->frame.linesize[0];
166 static void cdxl_decode_ham8(CDXLVideoContext *c)
168 AVCodecContext *avctx = c->avctx;
169 uint32_t new_palette[64], r, g, b;
170 uint8_t *ptr, *out, index, op;
174 out = c->frame.data[0];
176 import_palette(c, new_palette);
177 import_format(c, avctx->width, c->new_video);
179 for (y = 0; y < avctx->height; y++) {
180 r = new_palette[0] & 0xFF0000;
181 g = new_palette[0] & 0xFF00;
182 b = new_palette[0] & 0xFF;
183 for (x = 0; x < avctx->width; x++) {
189 r = new_palette[index] & 0xFF0000;
190 g = new_palette[index] & 0xFF00;
191 b = new_palette[index] & 0xFF;
194 b = (index << 2) | (b & 3);
197 r = (index << 18) | (r & (3 << 16));
200 g = (index << 10) | (g & (3 << 8));
203 AV_WL24(out + x * 3, r | g | b);
205 out += c->frame.linesize[0];
209 static int cdxl_decode_frame(AVCodecContext *avctx, void *data,
210 int *data_size, AVPacket *pkt)
212 CDXLVideoContext *c = avctx->priv_data;
213 AVFrame * const p = &c->frame;
214 int ret, w, h, encoding, aligned_width, buf_size = pkt->size;
215 const uint8_t *buf = pkt->data;
218 return AVERROR_INVALIDDATA;
219 encoding = buf[1] & 7;
220 c->format = buf[1] & 0xE0;
221 w = AV_RB16(&buf[14]);
222 h = AV_RB16(&buf[16]);
224 c->palette_size = AV_RB16(&buf[20]);
225 c->palette = buf + 32;
226 c->video = c->palette + c->palette_size;
227 c->video_size = buf_size - c->palette_size - 32;
229 if (c->palette_size > 512)
230 return AVERROR_INVALIDDATA;
231 if (buf_size < c->palette_size + 32)
232 return AVERROR_INVALIDDATA;
234 return AVERROR_INVALIDDATA;
235 if (c->format != BIT_PLANAR && c->format != BIT_LINE) {
236 av_log_ask_for_sample(avctx, "unsupported pixel format: 0x%0x\n", c->format);
237 return AVERROR_PATCHWELCOME;
240 if ((ret = av_image_check_size(w, h, 0, avctx)) < 0)
242 if (w != avctx->width || h != avctx->height)
243 avcodec_set_dimensions(avctx, w, h);
245 aligned_width = FFALIGN(c->avctx->width, 16);
246 c->padded_bits = aligned_width - c->avctx->width;
247 if (c->video_size < aligned_width * avctx->height * c->bpp / 8)
248 return AVERROR_INVALIDDATA;
249 if (!encoding && c->palette_size && c->bpp <= 8) {
250 avctx->pix_fmt = PIX_FMT_PAL8;
251 } else if (encoding == 1 && (c->bpp == 6 || c->bpp == 8)) {
252 if (c->palette_size != (1 << (c->bpp - 1)))
253 return AVERROR_INVALIDDATA;
254 avctx->pix_fmt = PIX_FMT_BGR24;
256 av_log_ask_for_sample(avctx, "unsupported encoding %d and bpp %d\n",
258 return AVERROR_PATCHWELCOME;
262 avctx->release_buffer(avctx, p);
265 if ((ret = avctx->get_buffer(avctx, p)) < 0) {
266 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
269 p->pict_type = AV_PICTURE_TYPE_I;
272 av_fast_padded_malloc(&c->new_video, &c->new_video_size,
273 h * w + FF_INPUT_BUFFER_PADDING_SIZE);
275 return AVERROR(ENOMEM);
283 *data_size = sizeof(AVFrame);
284 *(AVFrame*)data = c->frame;
289 static av_cold int cdxl_decode_end(AVCodecContext *avctx)
291 CDXLVideoContext *c = avctx->priv_data;
293 av_free(c->new_video);
294 if (c->frame.data[0])
295 avctx->release_buffer(avctx, &c->frame);
300 AVCodec ff_cdxl_decoder = {
302 .type = AVMEDIA_TYPE_VIDEO,
304 .priv_data_size = sizeof(CDXLVideoContext),
305 .init = cdxl_decode_init,
306 .close = cdxl_decode_end,
307 .decode = cdxl_decode_frame,
308 .capabilities = CODEC_CAP_DR1,
309 .long_name = NULL_IF_CONFIG_SMALL("Commodore CDXL video"),