dsicinav.c
Go to the documentation of this file.
1 /*
2  * Delphine Software International CIN Audio/Video Decoders
3  * Copyright (c) 2006 Gregory Montoir (cyx@users.sourceforge.net)
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 
28 #include "avcodec.h"
29 #include "bytestream.h"
30 #include "internal.h"
31 #include "mathops.h"
32 
33 
34 typedef enum CinVideoBitmapIndex {
35  CIN_CUR_BMP = 0, /* current */
36  CIN_PRE_BMP = 1, /* previous */
37  CIN_INT_BMP = 2 /* intermediate */
39 
40 typedef struct CinVideoContext {
43  unsigned int bitmap_size;
44  uint32_t palette[256];
47 
48 typedef struct CinAudioContext {
51  int delta;
53 
54 
55 /* table defining a geometric sequence with multiplier = 32767 ^ (1 / 128) */
56 static const int16_t cinaudio_delta16_table[256] = {
57  0, 0, 0, 0, 0, 0, 0, 0,
58  0, 0, 0, 0, 0, 0, 0, 0,
59  0, 0, 0, -30210, -27853, -25680, -23677, -21829,
60  -20126, -18556, -17108, -15774, -14543, -13408, -12362, -11398,
61  -10508, -9689, -8933, -8236, -7593, -7001, -6455, -5951,
62  -5487, -5059, -4664, -4300, -3964, -3655, -3370, -3107,
63  -2865, -2641, -2435, -2245, -2070, -1908, -1759, -1622,
64  -1495, -1379, -1271, -1172, -1080, -996, -918, -847,
65  -781, -720, -663, -612, -564, -520, -479, -442,
66  -407, -376, -346, -319, -294, -271, -250, -230,
67  -212, -196, -181, -166, -153, -141, -130, -120,
68  -111, -102, -94, -87, -80, -74, -68, -62,
69  -58, -53, -49, -45, -41, -38, -35, -32,
70  -30, -27, -25, -23, -21, -20, -18, -17,
71  -15, -14, -13, -12, -11, -10, -9, -8,
72  -7, -6, -5, -4, -3, -2, -1, 0,
73  0, 1, 2, 3, 4, 5, 6, 7,
74  8, 9, 10, 11, 12, 13, 14, 15,
75  17, 18, 20, 21, 23, 25, 27, 30,
76  32, 35, 38, 41, 45, 49, 53, 58,
77  62, 68, 74, 80, 87, 94, 102, 111,
78  120, 130, 141, 153, 166, 181, 196, 212,
79  230, 250, 271, 294, 319, 346, 376, 407,
80  442, 479, 520, 564, 612, 663, 720, 781,
81  847, 918, 996, 1080, 1172, 1271, 1379, 1495,
82  1622, 1759, 1908, 2070, 2245, 2435, 2641, 2865,
83  3107, 3370, 3655, 3964, 4300, 4664, 5059, 5487,
84  5951, 6455, 7001, 7593, 8236, 8933, 9689, 10508,
85  11398, 12362, 13408, 14543, 15774, 17108, 18556, 20126,
86  21829, 23677, 25680, 27853, 30210, 0, 0, 0,
87  0, 0, 0, 0, 0, 0, 0, 0,
88  0, 0, 0, 0, 0, 0, 0, 0
89 };
90 
91 
93 {
94  CinVideoContext *cin = avctx->priv_data;
95  unsigned int i;
96 
97  cin->avctx = avctx;
98  avctx->pix_fmt = AV_PIX_FMT_PAL8;
99 
100  cin->frame.data[0] = NULL;
101 
102  cin->bitmap_size = avctx->width * avctx->height;
103  for (i = 0; i < 3; ++i) {
104  cin->bitmap_table[i] = av_mallocz(cin->bitmap_size);
105  if (!cin->bitmap_table[i])
106  av_log(avctx, AV_LOG_ERROR, "Can't allocate bitmap buffers.\n");
107  }
108 
109  return 0;
110 }
111 
112 static void cin_apply_delta_data(const unsigned char *src, unsigned char *dst,
113  int size)
114 {
115  while (size--)
116  *dst++ += *src++;
117 }
118 
119 static int cin_decode_huffman(const unsigned char *src, int src_size,
120  unsigned char *dst, int dst_size)
121 {
122  int b, huff_code = 0;
123  unsigned char huff_code_table[15];
124  unsigned char *dst_cur = dst;
125  unsigned char *dst_end = dst + dst_size;
126  const unsigned char *src_end = src + src_size;
127 
128  memcpy(huff_code_table, src, 15);
129  src += 15;
130 
131  while (src < src_end) {
132  huff_code = *src++;
133  if ((huff_code >> 4) == 15) {
134  b = huff_code << 4;
135  huff_code = *src++;
136  *dst_cur++ = b | (huff_code >> 4);
137  } else
138  *dst_cur++ = huff_code_table[huff_code >> 4];
139  if (dst_cur >= dst_end)
140  break;
141 
142  huff_code &= 15;
143  if (huff_code == 15) {
144  *dst_cur++ = *src++;
145  } else
146  *dst_cur++ = huff_code_table[huff_code];
147  if (dst_cur >= dst_end)
148  break;
149  }
150 
151  return dst_cur - dst;
152 }
153 
154 static int cin_decode_lzss(const unsigned char *src, int src_size,
155  unsigned char *dst, int dst_size)
156 {
157  uint16_t cmd;
158  int i, sz, offset, code;
159  unsigned char *dst_end = dst + dst_size, *dst_start = dst;
160  const unsigned char *src_end = src + src_size;
161 
162  while (src < src_end && dst < dst_end) {
163  code = *src++;
164  for (i = 0; i < 8 && src < src_end && dst < dst_end; ++i) {
165  if (code & (1 << i)) {
166  *dst++ = *src++;
167  } else {
168  cmd = AV_RL16(src);
169  src += 2;
170  offset = cmd >> 4;
171  if ((int)(dst - dst_start) < offset + 1)
172  return AVERROR_INVALIDDATA;
173  sz = (cmd & 0xF) + 2;
174  /* don't use memcpy/memmove here as the decoding routine
175  * (ab)uses buffer overlappings to repeat bytes in the
176  * destination */
177  sz = FFMIN(sz, dst_end - dst);
178  while (sz--) {
179  *dst = *(dst - offset - 1);
180  ++dst;
181  }
182  }
183  }
184  }
185 
186  return 0;
187 }
188 
189 static void cin_decode_rle(const unsigned char *src, int src_size,
190  unsigned char *dst, int dst_size)
191 {
192  int len, code;
193  unsigned char *dst_end = dst + dst_size;
194  const unsigned char *src_end = src + src_size;
195 
196  while (src < src_end && dst < dst_end) {
197  code = *src++;
198  if (code & 0x80) {
199  if (src >= src_end)
200  break;
201  len = code - 0x7F;
202  memset(dst, *src++, FFMIN(len, dst_end - dst));
203  } else {
204  len = code + 1;
205  memcpy(dst, src, FFMIN3(len, dst_end - dst, src_end - src));
206  src += len;
207  }
208  dst += len;
209  }
210 }
211 
213  void *data, int *got_frame,
214  AVPacket *avpkt)
215 {
216  const uint8_t *buf = avpkt->data;
217  int buf_size = avpkt->size;
218  CinVideoContext *cin = avctx->priv_data;
219  int i, y, palette_type, palette_colors_count,
220  bitmap_frame_type, bitmap_frame_size, res = 0;
221 
222  palette_type = buf[0];
223  palette_colors_count = AV_RL16(buf + 1);
224  bitmap_frame_type = buf[3];
225  buf += 4;
226 
227  bitmap_frame_size = buf_size - 4;
228 
229  /* handle palette */
230  if (bitmap_frame_size < palette_colors_count * (3 + (palette_type != 0)))
231  return AVERROR_INVALIDDATA;
232  if (palette_type == 0) {
233  if (palette_colors_count > 256)
234  return AVERROR_INVALIDDATA;
235  for (i = 0; i < palette_colors_count; ++i) {
236  cin->palette[i] = bytestream_get_le24(&buf);
237  bitmap_frame_size -= 3;
238  }
239  } else {
240  for (i = 0; i < palette_colors_count; ++i) {
241  cin->palette[buf[0]] = AV_RL24(buf + 1);
242  buf += 4;
243  bitmap_frame_size -= 4;
244  }
245  }
246 
247  bitmap_frame_size = FFMIN(cin->bitmap_size, bitmap_frame_size);
248 
249  /* note: the decoding routines below assumes that
250  * surface.width = surface.pitch */
251  switch (bitmap_frame_type) {
252  case 9:
253  cin_decode_rle(buf, bitmap_frame_size,
254  cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
255  break;
256  case 34:
257  cin_decode_rle(buf, bitmap_frame_size,
258  cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
260  cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
261  break;
262  case 35:
263  cin_decode_huffman(buf, bitmap_frame_size,
264  cin->bitmap_table[CIN_INT_BMP], cin->bitmap_size);
265  cin_decode_rle(cin->bitmap_table[CIN_INT_BMP], bitmap_frame_size,
266  cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
267  break;
268  case 36:
269  bitmap_frame_size = cin_decode_huffman(buf, bitmap_frame_size,
271  cin->bitmap_size);
272  cin_decode_rle(cin->bitmap_table[CIN_INT_BMP], bitmap_frame_size,
273  cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
275  cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
276  break;
277  case 37:
278  cin_decode_huffman(buf, bitmap_frame_size,
279  cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
280  break;
281  case 38:
282  res = cin_decode_lzss(buf, bitmap_frame_size,
284  cin->bitmap_size);
285  if (res < 0)
286  return res;
287  break;
288  case 39:
289  res = cin_decode_lzss(buf, bitmap_frame_size,
291  cin->bitmap_size);
292  if (res < 0)
293  return res;
295  cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
296  break;
297  }
298 
300  if ((res = avctx->reget_buffer(avctx, &cin->frame)) < 0) {
301  av_log(cin->avctx, AV_LOG_ERROR,
302  "delphinecinvideo: reget_buffer() failed to allocate a frame\n");
303  return res;
304  }
305 
306  memcpy(cin->frame.data[1], cin->palette, sizeof(cin->palette));
307  cin->frame.palette_has_changed = 1;
308  for (y = 0; y < cin->avctx->height; ++y)
309  memcpy(cin->frame.data[0] + (cin->avctx->height - 1 - y) * cin->frame.linesize[0],
310  cin->bitmap_table[CIN_CUR_BMP] + y * cin->avctx->width,
311  cin->avctx->width);
312 
314  cin->bitmap_table[CIN_PRE_BMP]);
315 
316  *got_frame = 1;
317  *(AVFrame *)data = cin->frame;
318 
319  return buf_size;
320 }
321 
323 {
324  CinVideoContext *cin = avctx->priv_data;
325  int i;
326 
327  if (cin->frame.data[0])
328  avctx->release_buffer(avctx, &cin->frame);
329 
330  for (i = 0; i < 3; ++i)
331  av_free(cin->bitmap_table[i]);
332 
333  return 0;
334 }
335 
337 {
338  CinAudioContext *cin = avctx->priv_data;
339 
340  cin->initial_decode_frame = 1;
341  cin->delta = 0;
342  avctx->sample_fmt = AV_SAMPLE_FMT_S16;
343  avctx->channels = 1;
345 
347  avctx->coded_frame = &cin->frame;
348 
349  return 0;
350 }
351 
352 static int cinaudio_decode_frame(AVCodecContext *avctx, void *data,
353  int *got_frame_ptr, AVPacket *avpkt)
354 {
355  const uint8_t *buf = avpkt->data;
356  CinAudioContext *cin = avctx->priv_data;
357  const uint8_t *buf_end = buf + avpkt->size;
358  int16_t *samples;
359  int delta, ret;
360 
361  /* get output buffer */
362  cin->frame.nb_samples = avpkt->size - cin->initial_decode_frame;
363  if ((ret = ff_get_buffer(avctx, &cin->frame)) < 0) {
364  av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
365  return ret;
366  }
367  samples = (int16_t *)cin->frame.data[0];
368 
369  delta = cin->delta;
370  if (cin->initial_decode_frame) {
371  cin->initial_decode_frame = 0;
372  delta = sign_extend(AV_RL16(buf), 16);
373  buf += 2;
374  *samples++ = delta;
375  }
376  while (buf < buf_end) {
377  delta += cinaudio_delta16_table[*buf++];
378  delta = av_clip_int16(delta);
379  *samples++ = delta;
380  }
381  cin->delta = delta;
382 
383  *got_frame_ptr = 1;
384  *(AVFrame *)data = cin->frame;
385 
386  return avpkt->size;
387 }
388 
390  .name = "dsicinvideo",
391  .type = AVMEDIA_TYPE_VIDEO,
393  .priv_data_size = sizeof(CinVideoContext),
397  .capabilities = CODEC_CAP_DR1,
398  .long_name = NULL_IF_CONFIG_SMALL("Delphine Software International CIN video"),
399 };
400 
402  .name = "dsicinaudio",
403  .type = AVMEDIA_TYPE_AUDIO,
405  .priv_data_size = sizeof(CinAudioContext),
408  .capabilities = CODEC_CAP_DR1,
409  .long_name = NULL_IF_CONFIG_SMALL("Delphine Software International CIN audio"),
410 };
static int16_t * samples
int size
This structure describes decoded (raw) audio or video data.
Definition: avcodec.h:989
int buffer_hints
codec suggestion on buffer type if != 0
Definition: avcodec.h:1253
void(* release_buffer)(struct AVCodecContext *c, AVFrame *pic)
Called to release buffers which were allocated with get_buffer.
Definition: avcodec.h:2259
AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:2725
static av_cold int cinvideo_decode_init(AVCodecContext *avctx)
Definition: dsicinav.c:92
int size
Definition: avcodec.h:916
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1533
#define AV_RL16
Definition: intreadwrite.h:42
AVCodecContext * avctx
Definition: dsicinav.c:41
signed 16 bits
Definition: samplefmt.h:52
static int cinaudio_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
Definition: dsicinav.c:352
AVCodec.
Definition: avcodec.h:2960
int(* reget_buffer)(struct AVCodecContext *c, AVFrame *pic)
Called at the beginning of a frame to get cr buffer for it.
Definition: avcodec.h:2273
CinVideoBitmapIndex
Definition: dsicinav.c:34
static int decode(MimicContext *ctx, int quality, int num_coeffs, int is_iframe)
Definition: mimic.c:228
static int cin_decode_lzss(const unsigned char *src, int src_size, unsigned char *dst, int dst_size)
Definition: dsicinav.c:154
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:2112
uint8_t
float delta
8 bit with PIX_FMT_RGB32 palette
Definition: pixfmt.h:76
static void cin_decode_rle(const unsigned char *src, int src_size, unsigned char *dst, int dst_size)
Definition: dsicinav.c:189
#define b
Definition: input.c:52
const char data[16]
Definition: mxf.c:66
uint8_t * data
Definition: avcodec.h:915
static int init(AVCodecParserContext *s)
Definition: h264_parser.c:335
AVFrame frame
Definition: dsicinav.c:42
void av_free(void *ptr)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc(). ...
Definition: mem.c:139
AVFrame frame
Definition: dsicinav.c:49
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:88
uint8_t * bitmap_table[3]
Definition: dsicinav.c:45
struct CinVideoContext CinVideoContext
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:146
const char * name
Name of the codec implementation.
Definition: avcodec.h:2967
uint64_t channel_layout
Audio channel layout.
Definition: avcodec.h:2165
static const int16_t cinaudio_delta16_table[256]
Definition: dsicinav.c:56
audio channel layout utility functions
AVCodec ff_dsicinaudio_decoder
Definition: dsicinav.c:401
int width
picture width / height.
Definition: avcodec.h:1508
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame)
Get a buffer for a frame.
Definition: utils.c:464
NULL
Definition: eval.c:52
static av_cold int cinvideo_decode_end(AVCodecContext *avctx)
Definition: dsicinav.c:322
external API header
int linesize[AV_NUM_DATA_POINTERS]
Size, in bytes, of the data for each picture/channel plane.
Definition: avcodec.h:1008
main external API structure.
Definition: avcodec.h:1339
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:326
void avcodec_get_frame_defaults(AVFrame *frame)
Set the fields of the given AVFrame to default values.
Definition: utils.c:602
int palette_has_changed
Tell user application that palette has changed from previous frame.
Definition: avcodec.h:1246
struct CinAudioContext CinAudioContext
static av_const int sign_extend(int val, unsigned bits)
Definition: mathops.h:123
#define AV_RL24
Definition: intreadwrite.h:78
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: avcodec.h:997
static void cin_apply_delta_data(const unsigned char *src, unsigned char *dst, int size)
Definition: dsicinav.c:112
common internal api header.
static int cin_decode_huffman(const unsigned char *src, int src_size, unsigned char *dst, int dst_size)
Definition: dsicinav.c:119
void * priv_data
Definition: avcodec.h:1382
int len
int channels
number of audio channels
Definition: avcodec.h:2105
static int cinvideo_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: dsicinav.c:212
static av_cold int cinaudio_decode_init(AVCodecContext *avctx)
Definition: dsicinav.c:336
unsigned int bitmap_size
Definition: dsicinav.c:43
AVCodec ff_dsicinvideo_decoder
Definition: dsicinav.c:389
#define AV_CH_LAYOUT_MONO
uint32_t palette[256]
Definition: dsicinav.c:44
int initial_decode_frame
Definition: dsicinav.c:50
This structure stores compressed data.
Definition: avcodec.h:898
int nb_samples
number of audio samples (per channel) described by this frame
Definition: avcodec.h:1042
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:158
if(!(ptr_align%ac->ptr_align)&&samples_align >=aligned_len)