blob: 99e96eb502cac7a3920c9994b5d289019faad649 [file] [log] [blame]
Paul B Maholdc4e5742012-02-14 17:36:201/*
2 * CDXL video decoder
3 * Copyright (c) 2011-2012 Paul B Mahol
4 *
5 * This file is part of Libav.
6 *
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.
11 *
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.
16 *
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
20 */
21
22#include "libavutil/intreadwrite.h"
23#include "libavutil/imgutils.h"
24#include "avcodec.h"
25#include "get_bits.h"
Anton Khirnov594d4d52012-11-10 12:22:5626#include "internal.h"
Paul B Maholdc4e5742012-02-14 17:36:2027
Paul B Mahol42459c62012-02-25 17:16:4128#define BIT_PLANAR 0x00
29#define BYTE_PLANAR 0x20
30#define CHUNKY 0x40
31#define BIT_LINE 0x80
32#define BYTE_LINE 0xC0
33
Diego Biurrun7f9f7712014-09-22 09:01:3134typedef struct CDXLVideoContext {
Paul B Maholdc4e5742012-02-14 17:36:2035 AVCodecContext *avctx;
Paul B Maholdc4e5742012-02-14 17:36:2036 int bpp;
Paul B Mahol42459c62012-02-25 17:16:4137 int format;
38 int padded_bits;
Paul B Maholdc4e5742012-02-14 17:36:2039 const uint8_t *palette;
40 int palette_size;
41 const uint8_t *video;
42 int video_size;
43 uint8_t *new_video;
44 int new_video_size;
45} CDXLVideoContext;
46
47static av_cold int cdxl_decode_init(AVCodecContext *avctx)
48{
49 CDXLVideoContext *c = avctx->priv_data;
50
Paul B Maholdc4e5742012-02-14 17:36:2051 c->new_video_size = 0;
52 c->avctx = avctx;
53
54 return 0;
55}
56
57static void import_palette(CDXLVideoContext *c, uint32_t *new_palette)
58{
59 int i;
60
61 for (i = 0; i < c->palette_size / 2; i++) {
62 unsigned rgb = AV_RB16(&c->palette[i * 2]);
63 unsigned r = ((rgb >> 8) & 0xF) * 0x11;
64 unsigned g = ((rgb >> 4) & 0xF) * 0x11;
65 unsigned b = (rgb & 0xF) * 0x11;
66 AV_WN32(&new_palette[i], (r << 16) | (g << 8) | b);
67 }
68}
69
Paul B Maholb5c626f2012-02-17 17:42:3670static void bitplanar2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
Paul B Maholdc4e5742012-02-14 17:36:2071{
72 GetBitContext gb;
73 int x, y, plane;
74
75 init_get_bits(&gb, c->video, c->video_size * 8);
Paul B Maholb5c626f2012-02-17 17:42:3676 for (plane = 0; plane < c->bpp; plane++) {
77 for (y = 0; y < c->avctx->height; y++) {
78 for (x = 0; x < c->avctx->width; x++)
Paul B Maholdc4e5742012-02-14 17:36:2079 out[linesize * y + x] |= get_bits1(&gb) << plane;
Paul B Mahol42459c62012-02-25 17:16:4180 skip_bits(&gb, c->padded_bits);
Paul B Maholb5c626f2012-02-17 17:42:3681 }
82 }
Paul B Maholdc4e5742012-02-14 17:36:2083}
84
Paul B Mahol42459c62012-02-25 17:16:4185static void bitline2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
86{
87 GetBitContext gb;
88 int x, y, plane;
89
90 init_get_bits(&gb, c->video, c->video_size * 8);
91 for (y = 0; y < c->avctx->height; y++) {
92 for (plane = 0; plane < c->bpp; plane++) {
93 for (x = 0; x < c->avctx->width; x++)
94 out[linesize * y + x] |= get_bits1(&gb) << plane;
95 skip_bits(&gb, c->padded_bits);
96 }
97 }
98}
99
100static void import_format(CDXLVideoContext *c, int linesize, uint8_t *out)
101{
102 memset(out, 0, linesize * c->avctx->height);
103
104 switch (c->format) {
105 case BIT_PLANAR:
106 bitplanar2chunky(c, linesize, out);
107 break;
108 case BIT_LINE:
109 bitline2chunky(c, linesize, out);
110 break;
111 }
112}
113
Anton Khirnov759001c2012-11-21 20:34:46114static void cdxl_decode_rgb(CDXLVideoContext *c, AVFrame *frame)
Paul B Maholdc4e5742012-02-14 17:36:20115{
Anton Khirnov759001c2012-11-21 20:34:46116 uint32_t *new_palette = (uint32_t *)frame->data[1];
Paul B Maholdc4e5742012-02-14 17:36:20117
118 import_palette(c, new_palette);
Anton Khirnov759001c2012-11-21 20:34:46119 import_format(c, frame->linesize[0], frame->data[0]);
Paul B Maholdc4e5742012-02-14 17:36:20120}
121
Anton Khirnov759001c2012-11-21 20:34:46122static void cdxl_decode_ham6(CDXLVideoContext *c, AVFrame *frame)
Paul B Maholdc4e5742012-02-14 17:36:20123{
124 AVCodecContext *avctx = c->avctx;
125 uint32_t new_palette[16], r, g, b;
126 uint8_t *ptr, *out, index, op;
127 int x, y;
128
129 ptr = c->new_video;
Anton Khirnov759001c2012-11-21 20:34:46130 out = frame->data[0];
Paul B Maholdc4e5742012-02-14 17:36:20131
132 import_palette(c, new_palette);
Paul B Mahol42459c62012-02-25 17:16:41133 import_format(c, avctx->width, c->new_video);
Paul B Maholdc4e5742012-02-14 17:36:20134
135 for (y = 0; y < avctx->height; y++) {
136 r = new_palette[0] & 0xFF0000;
137 g = new_palette[0] & 0xFF00;
138 b = new_palette[0] & 0xFF;
139 for (x = 0; x < avctx->width; x++) {
140 index = *ptr++;
141 op = index >> 4;
142 index &= 15;
143 switch (op) {
144 case 0:
145 r = new_palette[index] & 0xFF0000;
146 g = new_palette[index] & 0xFF00;
147 b = new_palette[index] & 0xFF;
148 break;
149 case 1:
150 b = index * 0x11;
151 break;
152 case 2:
153 r = index * 0x11 << 16;
154 break;
155 case 3:
156 g = index * 0x11 << 8;
157 break;
158 }
Paul B Mahol904817c2012-02-21 20:41:14159 AV_WL24(out + x * 3, r | g | b);
Paul B Maholdc4e5742012-02-14 17:36:20160 }
Anton Khirnov759001c2012-11-21 20:34:46161 out += frame->linesize[0];
Paul B Maholdc4e5742012-02-14 17:36:20162 }
163}
164
Anton Khirnov759001c2012-11-21 20:34:46165static void cdxl_decode_ham8(CDXLVideoContext *c, AVFrame *frame)
Paul B Maholdc4e5742012-02-14 17:36:20166{
167 AVCodecContext *avctx = c->avctx;
168 uint32_t new_palette[64], r, g, b;
169 uint8_t *ptr, *out, index, op;
170 int x, y;
171
172 ptr = c->new_video;
Anton Khirnov759001c2012-11-21 20:34:46173 out = frame->data[0];
Paul B Maholdc4e5742012-02-14 17:36:20174
175 import_palette(c, new_palette);
Paul B Mahol42459c62012-02-25 17:16:41176 import_format(c, avctx->width, c->new_video);
Paul B Maholdc4e5742012-02-14 17:36:20177
178 for (y = 0; y < avctx->height; y++) {
179 r = new_palette[0] & 0xFF0000;
180 g = new_palette[0] & 0xFF00;
181 b = new_palette[0] & 0xFF;
182 for (x = 0; x < avctx->width; x++) {
183 index = *ptr++;
184 op = index >> 6;
185 index &= 63;
186 switch (op) {
187 case 0:
188 r = new_palette[index] & 0xFF0000;
189 g = new_palette[index] & 0xFF00;
190 b = new_palette[index] & 0xFF;
191 break;
192 case 1:
193 b = (index << 2) | (b & 3);
194 break;
195 case 2:
196 r = (index << 18) | (r & (3 << 16));
197 break;
198 case 3:
199 g = (index << 10) | (g & (3 << 8));
200 break;
201 }
Paul B Mahol904817c2012-02-21 20:41:14202 AV_WL24(out + x * 3, r | g | b);
Paul B Maholdc4e5742012-02-14 17:36:20203 }
Anton Khirnov759001c2012-11-21 20:34:46204 out += frame->linesize[0];
Paul B Maholdc4e5742012-02-14 17:36:20205 }
206}
207
208static int cdxl_decode_frame(AVCodecContext *avctx, void *data,
Anton Khirnovdf9b9562012-11-13 18:35:22209 int *got_frame, AVPacket *pkt)
Paul B Maholdc4e5742012-02-14 17:36:20210{
211 CDXLVideoContext *c = avctx->priv_data;
Anton Khirnov759001c2012-11-21 20:34:46212 AVFrame * const p = data;
Paul B Mahol42459c62012-02-25 17:16:41213 int ret, w, h, encoding, aligned_width, buf_size = pkt->size;
Paul B Maholdc4e5742012-02-14 17:36:20214 const uint8_t *buf = pkt->data;
215
216 if (buf_size < 32)
217 return AVERROR_INVALIDDATA;
218 encoding = buf[1] & 7;
Paul B Mahol42459c62012-02-25 17:16:41219 c->format = buf[1] & 0xE0;
Paul B Maholdc4e5742012-02-14 17:36:20220 w = AV_RB16(&buf[14]);
221 h = AV_RB16(&buf[16]);
222 c->bpp = buf[19];
223 c->palette_size = AV_RB16(&buf[20]);
224 c->palette = buf + 32;
225 c->video = c->palette + c->palette_size;
226 c->video_size = buf_size - c->palette_size - 32;
227
228 if (c->palette_size > 512)
229 return AVERROR_INVALIDDATA;
230 if (buf_size < c->palette_size + 32)
231 return AVERROR_INVALIDDATA;
232 if (c->bpp < 1)
233 return AVERROR_INVALIDDATA;
Paul B Mahol42459c62012-02-25 17:16:41234 if (c->format != BIT_PLANAR && c->format != BIT_LINE) {
Diego Biurrun6d974842013-03-13 20:17:05235 avpriv_request_sample(avctx, "Pixel format 0x%0x", c->format);
Paul B Maholdc4e5742012-02-14 17:36:20236 return AVERROR_PATCHWELCOME;
237 }
238
Anton Khirnovd57e95c2013-10-27 09:02:26239 if ((ret = ff_set_dimensions(avctx, w, h)) < 0)
Paul B Maholdc4e5742012-02-14 17:36:20240 return ret;
Paul B Maholdc4e5742012-02-14 17:36:20241
Paul B Mahol42459c62012-02-25 17:16:41242 aligned_width = FFALIGN(c->avctx->width, 16);
243 c->padded_bits = aligned_width - c->avctx->width;
244 if (c->video_size < aligned_width * avctx->height * c->bpp / 8)
Paul B Maholb5c626f2012-02-17 17:42:36245 return AVERROR_INVALIDDATA;
Paul B Mahol126daeb2012-02-25 17:16:39246 if (!encoding && c->palette_size && c->bpp <= 8) {
Anton Khirnov716d4132012-10-06 10:10:34247 avctx->pix_fmt = AV_PIX_FMT_PAL8;
Paul B Maholdc4e5742012-02-14 17:36:20248 } else if (encoding == 1 && (c->bpp == 6 || c->bpp == 8)) {
249 if (c->palette_size != (1 << (c->bpp - 1)))
250 return AVERROR_INVALIDDATA;
Anton Khirnov716d4132012-10-06 10:10:34251 avctx->pix_fmt = AV_PIX_FMT_BGR24;
Paul B Maholdc4e5742012-02-14 17:36:20252 } else {
Diego Biurrun6d974842013-03-13 20:17:05253 avpriv_request_sample(avctx, "Encoding %d and bpp %d",
Paul B Maholdc4e5742012-02-14 17:36:20254 encoding, c->bpp);
255 return AVERROR_PATCHWELCOME;
256 }
257
Anton Khirnov759001c2012-11-21 20:34:46258 if ((ret = ff_get_buffer(avctx, p, 0)) < 0) {
Paul B Maholdc4e5742012-02-14 17:36:20259 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
260 return ret;
261 }
262 p->pict_type = AV_PICTURE_TYPE_I;
263
264 if (encoding) {
265 av_fast_padded_malloc(&c->new_video, &c->new_video_size,
Vittorio Giovara059a9342015-06-29 21:48:34266 h * w + AV_INPUT_BUFFER_PADDING_SIZE);
Paul B Maholdc4e5742012-02-14 17:36:20267 if (!c->new_video)
268 return AVERROR(ENOMEM);
269 if (c->bpp == 8)
Anton Khirnov759001c2012-11-21 20:34:46270 cdxl_decode_ham8(c, p);
Paul B Maholdc4e5742012-02-14 17:36:20271 else
Anton Khirnov759001c2012-11-21 20:34:46272 cdxl_decode_ham6(c, p);
Paul B Maholdc4e5742012-02-14 17:36:20273 } else {
Anton Khirnov759001c2012-11-21 20:34:46274 cdxl_decode_rgb(c, p);
Paul B Maholdc4e5742012-02-14 17:36:20275 }
Anton Khirnovdf9b9562012-11-13 18:35:22276 *got_frame = 1;
Paul B Maholdc4e5742012-02-14 17:36:20277
278 return buf_size;
279}
280
281static av_cold int cdxl_decode_end(AVCodecContext *avctx)
282{
283 CDXLVideoContext *c = avctx->priv_data;
284
285 av_free(c->new_video);
Paul B Maholdc4e5742012-02-14 17:36:20286
287 return 0;
288}
289
290AVCodec ff_cdxl_decoder = {
291 .name = "cdxl",
Diego Biurrunb2bed932013-10-03 20:57:53292 .long_name = NULL_IF_CONFIG_SMALL("Commodore CDXL video"),
Paul B Maholdc4e5742012-02-14 17:36:20293 .type = AVMEDIA_TYPE_VIDEO,
Anton Khirnov36ef5362012-08-05 09:11:04294 .id = AV_CODEC_ID_CDXL,
Paul B Maholdc4e5742012-02-14 17:36:20295 .priv_data_size = sizeof(CDXLVideoContext),
296 .init = cdxl_decode_init,
297 .close = cdxl_decode_end,
298 .decode = cdxl_decode_frame,
Vittorio Giovaradef97852015-07-07 00:41:27299 .capabilities = AV_CODEC_CAP_DR1,
Paul B Maholdc4e5742012-02-14 17:36:20300};