Libav
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 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"
26 #include "internal.h"
27 
28 #define BIT_PLANAR 0x00
29 #define BYTE_PLANAR 0x20
30 #define CHUNKY 0x40
31 #define BIT_LINE 0x80
32 #define BYTE_LINE 0xC0
33 
34 typedef struct {
36  int bpp;
37  int format;
39  const uint8_t *palette;
41  const uint8_t *video;
46 
48 {
49  CDXLVideoContext *c = avctx->priv_data;
50 
51  c->new_video_size = 0;
52  c->avctx = avctx;
53 
54  return 0;
55 }
56 
57 static 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 
70 static void bitplanar2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
71 {
72  GetBitContext gb;
73  int x, y, plane;
74 
75  init_get_bits(&gb, c->video, c->video_size * 8);
76  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++)
79  out[linesize * y + x] |= get_bits1(&gb) << plane;
80  skip_bits(&gb, c->padded_bits);
81  }
82  }
83 }
84 
85 static 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 
100 static 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 
114 static void cdxl_decode_rgb(CDXLVideoContext *c, AVFrame *frame)
115 {
116  uint32_t *new_palette = (uint32_t *)frame->data[1];
117 
118  import_palette(c, new_palette);
119  import_format(c, frame->linesize[0], frame->data[0]);
120 }
121 
123 {
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;
130  out = frame->data[0];
131 
132  import_palette(c, new_palette);
133  import_format(c, avctx->width, c->new_video);
134 
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  }
159  AV_WL24(out + x * 3, r | g | b);
160  }
161  out += frame->linesize[0];
162  }
163 }
164 
166 {
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;
173  out = frame->data[0];
174 
175  import_palette(c, new_palette);
176  import_format(c, avctx->width, c->new_video);
177 
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  }
202  AV_WL24(out + x * 3, r | g | b);
203  }
204  out += frame->linesize[0];
205  }
206 }
207 
208 static int cdxl_decode_frame(AVCodecContext *avctx, void *data,
209  int *got_frame, AVPacket *pkt)
210 {
211  CDXLVideoContext *c = avctx->priv_data;
212  AVFrame * const p = data;
213  int ret, w, h, encoding, aligned_width, buf_size = pkt->size;
214  const uint8_t *buf = pkt->data;
215 
216  if (buf_size < 32)
217  return AVERROR_INVALIDDATA;
218  encoding = buf[1] & 7;
219  c->format = buf[1] & 0xE0;
220  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;
234  if (c->format != BIT_PLANAR && c->format != BIT_LINE) {
235  avpriv_request_sample(avctx, "Pixel format 0x%0x", c->format);
236  return AVERROR_PATCHWELCOME;
237  }
238 
239  if ((ret = ff_set_dimensions(avctx, w, h)) < 0)
240  return ret;
241 
242  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)
245  return AVERROR_INVALIDDATA;
246  if (!encoding && c->palette_size && c->bpp <= 8) {
247  avctx->pix_fmt = AV_PIX_FMT_PAL8;
248  } else if (encoding == 1 && (c->bpp == 6 || c->bpp == 8)) {
249  if (c->palette_size != (1 << (c->bpp - 1)))
250  return AVERROR_INVALIDDATA;
251  avctx->pix_fmt = AV_PIX_FMT_BGR24;
252  } else {
253  avpriv_request_sample(avctx, "Encoding %d and bpp %d",
254  encoding, c->bpp);
255  return AVERROR_PATCHWELCOME;
256  }
257 
258  if ((ret = ff_get_buffer(avctx, p, 0)) < 0) {
259  av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
260  return ret;
261  }
263 
264  if (encoding) {
267  if (!c->new_video)
268  return AVERROR(ENOMEM);
269  if (c->bpp == 8)
270  cdxl_decode_ham8(c, p);
271  else
272  cdxl_decode_ham6(c, p);
273  } else {
274  cdxl_decode_rgb(c, p);
275  }
276  *got_frame = 1;
277 
278  return buf_size;
279 }
280 
282 {
283  CDXLVideoContext *c = avctx->priv_data;
284 
285  av_free(c->new_video);
286 
287  return 0;
288 }
289 
291  .name = "cdxl",
292  .long_name = NULL_IF_CONFIG_SMALL("Commodore CDXL video"),
293  .type = AVMEDIA_TYPE_VIDEO,
294  .id = AV_CODEC_ID_CDXL,
295  .priv_data_size = sizeof(CDXLVideoContext),
299  .capabilities = CODEC_CAP_DR1,
300 };
#define BIT_LINE
Definition: cdxl.c:31
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:54
This structure describes decoded (raw) audio or video data.
Definition: frame.h:135
int format
Definition: cdxl.c:37
misc image utilities
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Check that the provided frame dimensions are valid and set them on the codec context.
Definition: utils.c:133
int video_size
Definition: cdxl.c:42
int size
Definition: avcodec.h:974
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1270
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
Allocate a buffer with padding, reusing the given one if large enough.
Definition: utils.c:59
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_dlog(ac->avr, "%d samples - audio_convert: %s to %s (dithered)\", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> out
static void cdxl_decode_ham8(CDXLVideoContext *c, AVFrame *frame)
Definition: cdxl.c:165
AVCodec.
Definition: avcodec.h:2812
#define FFALIGN(x, a)
Definition: common.h:62
const uint8_t * palette
Definition: cdxl.c:39
#define AV_WL24(p, d)
Definition: intreadwrite.h:426
static int decode(MimicContext *ctx, int quality, int num_coeffs, int is_iframe)
Definition: mimic.c:275
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
uint8_t
#define av_cold
Definition: attributes.h:66
8 bit with PIX_FMT_RGB32 palette
Definition: pixfmt.h:76
#define b
Definition: input.c:52
AVCodec ff_cdxl_decoder
Definition: cdxl.c:290
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:684
static av_cold int cdxl_decode_end(AVCodecContext *avctx)
Definition: cdxl.c:281
const char data[16]
Definition: mxf.c:70
uint8_t * data
Definition: avcodec.h:973
bitstream reader API header.
#define r
Definition: input.c:51
static int cdxl_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *pkt)
Definition: cdxl.c:208
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:123
void av_free(void *ptr)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc(). ...
Definition: mem.c:186
#define AV_RB16
Definition: intreadwrite.h:53
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:145
g
Definition: yuv2rgb.c:535
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:169
const char * name
Name of the codec implementation.
Definition: avcodec.h:2819
#define FF_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:531
static void bitline2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
Definition: cdxl.c:85
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:196
int width
picture width / height.
Definition: avcodec.h:1229
static av_cold int cdxl_decode_init(AVCodecContext *avctx)
Definition: cdxl.c:47
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:68
#define AVERROR_PATCHWELCOME
Not yet implemented in Libav, patches welcome.
Definition: error.h:57
Libavcodec external API header.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:153
main external API structure.
Definition: avcodec.h:1050
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:490
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: utils.c:612
AVCodecContext * avctx
Definition: cdxl.c:35
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:271
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:263
int index
Definition: gxfenc.c:72
uint8_t * new_video
Definition: cdxl.c:43
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:375
#define BIT_PLANAR
Definition: cdxl.c:28
int new_video_size
Definition: cdxl.c:44
static void bitplanar2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
Definition: cdxl.c:70
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:141
static void cdxl_decode_rgb(CDXLVideoContext *c, AVFrame *frame)
Definition: cdxl.c:114
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
common internal api header.
#define AV_WN32(p, v)
Definition: intreadwrite.h:338
static av_cold int init(AVCodecParserContext *s)
Definition: h264_parser.c:499
void * priv_data
Definition: avcodec.h:1092
static void cdxl_decode_ham6(CDXLVideoContext *c, AVFrame *frame)
Definition: cdxl.c:122
const uint8_t * video
Definition: cdxl.c:41
static void import_format(CDXLVideoContext *c, int linesize, uint8_t *out)
Definition: cdxl.c:100
int palette_size
Definition: cdxl.c:40
int padded_bits
Definition: cdxl.c:38
This structure stores compressed data.
Definition: avcodec.h:950
static void import_palette(CDXLVideoContext *c, uint32_t *new_palette)
Definition: cdxl.c:57