FFmpeg
Loading...
Searching...
No Matches
cdxl.c
Go to the documentation of this file.
1/*
2 * CDXL video decoder
3 * Copyright (c) 2011-2012 Paul B Mahol
4 *
5 * This file is part of FFmpeg.
6 *
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.
11 *
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.
16 *
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
20 */
21
22/**
23 * @file
24 * Commodore CDXL video decoder
25 * @author Paul B Mahol
26 */
27
28#define UNCHECKED_BITSTREAM_READER 1
29
31#include "libavutil/mem.h"
32#include "avcodec.h"
33#include "bytestream.h"
34#include "codec_internal.h"
35#include "decode.h"
36#include "get_bits.h"
37
38#define BIT_PLANAR 0x00
39#define CHUNKY 0x20
40#define BYTE_PLANAR 0x40
41#define BIT_LINE 0x80
42#define BYTE_LINE 0xC0
43
44typedef struct CDXLVideoContext {
46 int bpp;
47 int type;
48 int format;
50 const uint8_t *palette;
52 const uint8_t *video;
54 uint8_t *new_video;
57
59{
61
62 c->new_video_size = 0;
63 c->avctx = avctx;
64
65 return 0;
66}
67
68static void import_palette(CDXLVideoContext *c, uint32_t *new_palette)
69{
70 if (c->type == 1) {
71 for (int i = 0; i < c->palette_size / 2; i++) {
72 unsigned rgb = AV_RB16(&c->palette[i * 2]);
73 unsigned r = ((rgb >> 8) & 0xF) * 0x11;
74 unsigned g = ((rgb >> 4) & 0xF) * 0x11;
75 unsigned b = (rgb & 0xF) * 0x11;
76 AV_WN32(&new_palette[i], (0xFFU << 24) | (r << 16) | (g << 8) | b);
77 }
78 } else {
79 for (int i = 0; i < c->palette_size / 3; i++) {
80 unsigned rgb = AV_RB24(&c->palette[i * 3]);
81 AV_WN32(&new_palette[i], (0xFFU << 24) | rgb);
82 }
83 }
84}
85
86static void bitplanar2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
87{
89 int x, y, plane;
90
91 if (init_get_bits8(&gb, c->video, c->video_size) < 0)
92 return;
93 for (plane = 0; plane < c->bpp; plane++) {
94 for (y = 0; y < c->avctx->height; y++) {
95 for (x = 0; x < c->avctx->width; x++)
96 out[linesize * y + x] |= get_bits1(&gb) << plane;
97 skip_bits(&gb, c->padded_bits);
98 }
99 }
100}
101
102static void bitline2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
103{
104 GetBitContext gb;
105 int x, y, plane;
106
107 if (init_get_bits8(&gb, c->video, c->video_size) < 0)
108 return;
109 for (y = 0; y < c->avctx->height; y++) {
110 for (plane = 0; plane < c->bpp; plane++) {
111 for (x = 0; x < c->avctx->width; x++)
112 out[linesize * y + x] |= get_bits1(&gb) << plane;
113 skip_bits(&gb, c->padded_bits);
114 }
115 }
116}
117
118static void chunky2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
119{
121 int y;
122
123 bytestream2_init(&gb, c->video, c->video_size);
124 for (y = 0; y < c->avctx->height; y++) {
125 bytestream2_get_buffer(&gb, out + linesize * y, c->avctx->width * 3);
126 }
127}
128
129static void import_format(CDXLVideoContext *c, ptrdiff_t linesize, uint8_t *out)
130{
131 for (int y = 0; y < c->avctx->height; y++)
132 memset(out + y * linesize, 0, c->avctx->width);
133
134 switch (c->format) {
135 case BIT_PLANAR:
136 bitplanar2chunky(c, linesize, out);
137 break;
138 case BIT_LINE:
139 bitline2chunky(c, linesize, out);
140 break;
141 case CHUNKY:
142 chunky2chunky(c, linesize, out);
143 break;
144 }
145}
146
148{
149 uint32_t *new_palette = (uint32_t *)frame->data[1];
150
151 memset(frame->data[1], 0, AVPALETTE_SIZE);
152 import_palette(c, new_palette);
153 import_format(c, frame->linesize[0], frame->data[0]);
154}
155
157{
158 import_format(c, frame->linesize[0], frame->data[0]);
159}
160
162{
163 AVCodecContext *avctx = c->avctx;
164 uint32_t new_palette[16], r, g, b;
165 uint8_t *ptr, *out, index, op;
166 int x, y;
167
168 ptr = c->new_video;
169 out = frame->data[0];
170
171 import_palette(c, new_palette);
172 import_format(c, avctx->width, c->new_video);
173
174 for (y = 0; y < avctx->height; y++) {
175 r = new_palette[0] & 0xFF0000;
176 g = new_palette[0] & 0xFF00;
177 b = new_palette[0] & 0xFF;
178 for (x = 0; x < avctx->width; x++) {
179 index = *ptr++;
180 op = index >> 4;
181 index &= 15;
182 switch (op) {
183 case 0:
184 r = new_palette[index] & 0xFF0000;
185 g = new_palette[index] & 0xFF00;
186 b = new_palette[index] & 0xFF;
187 break;
188 case 1:
189 b = index * 0x11;
190 break;
191 case 2:
192 r = index * 0x11 << 16;
193 break;
194 case 3:
195 g = index * 0x11 << 8;
196 break;
197 }
198 AV_WL24(out + x * 3, r | g | b);
199 }
200 out += frame->linesize[0];
201 }
202}
203
205{
206 AVCodecContext *avctx = c->avctx;
207 uint32_t new_palette[64], r, g, b;
208 uint8_t *ptr, *out, index, op;
209 int x, y;
210
211 ptr = c->new_video;
212 out = frame->data[0];
213
214 import_palette(c, new_palette);
215 import_format(c, avctx->width, c->new_video);
216
217 for (y = 0; y < avctx->height; y++) {
218 r = new_palette[0] & 0xFF0000;
219 g = new_palette[0] & 0xFF00;
220 b = new_palette[0] & 0xFF;
221 for (x = 0; x < avctx->width; x++) {
222 index = *ptr++;
223 op = index >> 6;
224 index &= 63;
225 switch (op) {
226 case 0:
227 r = new_palette[index] & 0xFF0000;
228 g = new_palette[index] & 0xFF00;
229 b = new_palette[index] & 0xFF;
230 break;
231 case 1:
232 b = (index << 2) | (b & 3);
233 break;
234 case 2:
235 r = (index << 18) | (r & (3 << 16));
236 break;
237 case 3:
238 g = (index << 10) | (g & (3 << 8));
239 break;
240 }
241 AV_WL24(out + x * 3, r | g | b);
242 }
243 out += frame->linesize[0];
244 }
245}
246
248 int *got_frame, AVPacket *pkt)
249{
250 CDXLVideoContext *c = avctx->priv_data;
251 int ret, w, h, encoding, aligned_width, buf_size = pkt->size;
252 const uint8_t *buf = pkt->data;
253
254 if (buf_size < 32)
255 return AVERROR_INVALIDDATA;
256 c->type = buf[0];
257 encoding = buf[1] & 7;
258 c->format = buf[1] & 0xE0;
259 w = AV_RB16(&buf[14]);
260 h = AV_RB16(&buf[16]);
261 c->bpp = buf[19];
262 c->palette_size = AV_RB16(&buf[20]);
263 c->palette = buf + 32;
264 c->video = c->palette + c->palette_size;
265 c->video_size = buf_size - c->palette_size - 32;
266
267 if (c->type > 1)
268 return AVERROR_INVALIDDATA;
269 if (c->type == 1 && c->palette_size > 512)
270 return AVERROR_INVALIDDATA;
271 if (c->type == 0 && c->palette_size > 768)
272 return AVERROR_INVALIDDATA;
273 if (buf_size < c->palette_size + 32)
274 return AVERROR_INVALIDDATA;
275 if (c->bpp < 1)
276 return AVERROR_INVALIDDATA;
277 if (c->format != BIT_PLANAR && c->format != BIT_LINE && c->format != CHUNKY) {
278 avpriv_request_sample(avctx, "Pixel format 0x%0x", c->format);
280 }
281
282 if ((ret = ff_set_dimensions(avctx, w, h)) < 0)
283 return ret;
284
285 if (c->format == CHUNKY)
286 aligned_width = avctx->width;
287 else
288 aligned_width = FFALIGN(c->avctx->width, 16);
289 c->padded_bits = aligned_width - c->avctx->width;
290 if (c->video_size < aligned_width * avctx->height * (int64_t)c->bpp / 8)
291 return AVERROR_INVALIDDATA;
292 if (!encoding && c->palette_size && c->bpp <= 8 && c->format != CHUNKY) {
293 avctx->pix_fmt = AV_PIX_FMT_PAL8;
294 } else if (encoding == 1 && (c->bpp == 6 || c->bpp == 8) && c->format != CHUNKY) {
295 if (c->palette_size != (1 << (c->bpp - 1)))
296 return AVERROR_INVALIDDATA;
297 avctx->pix_fmt = AV_PIX_FMT_BGR24;
298 } else if (!encoding && c->bpp == 24 && c->format == CHUNKY &&
299 !c->palette_size) {
300 avctx->pix_fmt = AV_PIX_FMT_RGB24;
301 } else {
302 avpriv_request_sample(avctx, "Encoding %d, bpp %d and format 0x%x",
303 encoding, c->bpp, c->format);
305 }
306
307 if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
308 return ret;
309
310 if (encoding) {
311 av_fast_padded_malloc(&c->new_video, &c->new_video_size,
313 if (!c->new_video)
314 return AVERROR(ENOMEM);
315 if (c->bpp == 8)
317 else
319 } else if (avctx->pix_fmt == AV_PIX_FMT_PAL8) {
320 cdxl_decode_rgb(c, p);
321 } else {
322 cdxl_decode_raw(c, p);
323 }
324 *got_frame = 1;
325
326 return buf_size;
327}
328
330{
331 CDXLVideoContext *c = avctx->priv_data;
332
333 av_freep(&c->new_video);
334
335 return 0;
336}
337
339 .p.name = "cdxl",
340 CODEC_LONG_NAME("Commodore CDXL video"),
341 .p.type = AVMEDIA_TYPE_VIDEO,
342 .p.id = AV_CODEC_ID_CDXL,
343 .priv_data_size = sizeof(CDXLVideoContext),
347 .p.capabilities = AV_CODEC_CAP_DR1,
348};
const FFCodec ff_cdxl_decoder
Definition cdxl.c:338
static FILE * out
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
Libavcodec external API header.
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
Definition bytestream.h:267
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition bytestream.h:137
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
long long int64_t
Definition coverity.c:34
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition decode.c:1777
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Definition utils.c:91
static AVPacket * pkt
static AVFrame * frame
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
bitstream reader API header.
static unsigned int get_bits1(GetBitContext *s)
Definition get_bits.h:391
static void skip_bits(GetBitContext *s, int n)
Definition get_bits.h:383
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition get_bits.h:544
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
@ AV_CODEC_ID_CDXL
Definition codec_id.h:208
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding.
Definition defs.h:40
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
Same behaviour av_fast_malloc but the buffer has additional AV_INPUT_BUFFER_PADDING_SIZE at the end w...
Definition utils.c:53
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition error.h:64
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
int index
Definition gxfenc.c:90
#define r
Definition input.c:42
#define b
Definition input.c:43
#define AV_WN32(p, v)
#define AV_WL24(p, d)
#define AV_RB24(x)
#define AV_RB16(p)
static int op(uint8_t **dst, const uint8_t *dst_end, GetByteContext *gb, int pixel, int count, int *x, int width, int linesize)
Perform decode operation.
Definition anm.c:76
#define BIT_LINE
Definition cdxl.c:41
static av_cold int cdxl_decode_init(AVCodecContext *avctx)
Definition cdxl.c:58
static void cdxl_decode_raw(CDXLVideoContext *c, AVFrame *frame)
Definition cdxl.c:156
static int cdxl_decode_frame(AVCodecContext *avctx, AVFrame *p, int *got_frame, AVPacket *pkt)
Definition cdxl.c:247
#define BIT_PLANAR
Definition cdxl.c:38
static void bitplanar2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
Definition cdxl.c:86
static void chunky2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
Definition cdxl.c:118
static av_cold int cdxl_decode_end(AVCodecContext *avctx)
Definition cdxl.c:329
static void cdxl_decode_ham6(CDXLVideoContext *c, AVFrame *frame)
Definition cdxl.c:161
static void import_palette(CDXLVideoContext *c, uint32_t *new_palette)
Definition cdxl.c:68
static void cdxl_decode_rgb(CDXLVideoContext *c, AVFrame *frame)
Definition cdxl.c:147
static void import_format(CDXLVideoContext *c, ptrdiff_t linesize, uint8_t *out)
Definition cdxl.c:129
static void bitline2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
Definition cdxl.c:102
#define CHUNKY
Definition cdxl.c:39
static void cdxl_decode_ham8(CDXLVideoContext *c, AVFrame *frame)
Definition cdxl.c:204
#define av_cold
Definition attributes.h:117
uint8_t w
Definition llvidencdsp.c:39
#define FFALIGN(x, a)
Definition macros.h:78
Memory handling functions.
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition pixfmt.h:75
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
Definition pixfmt.h:84
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition pixfmt.h:76
#define AVPALETTE_SIZE
Definition pixfmt.h:32
main external API structure.
Definition avcodec.h:443
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
int width
picture width / height.
Definition avcodec.h:604
void * priv_data
Definition avcodec.h:470
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
int video_size
Definition cdxl.c:53
const uint8_t * palette
Definition cdxl.c:50
AVCodecContext * avctx
Definition cdxl.c:45
const uint8_t * video
Definition cdxl.c:52
int palette_size
Definition cdxl.c:51
uint8_t * new_video
Definition cdxl.c:54
int padded_bits
Definition cdxl.c:49
int new_video_size
Definition cdxl.c:55
Definition rpzaenc.c:60
#define avpriv_request_sample(...)
#define av_freep(p)
const char * g
Definition vf_curves.c:128
static double c[64]