FFmpeg  2.8.17
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
indeo2.c
Go to the documentation of this file.
1 /*
2  * Intel Indeo 2 codec
3  * Copyright (c) 2005 Konstantin Shishkov
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  * Intel Indeo 2 decoder.
25  */
26 
27 #define BITSTREAM_READER_LE
28 #include "libavutil/attributes.h"
29 #include "avcodec.h"
30 #include "get_bits.h"
31 #include "indeo2data.h"
32 #include "internal.h"
33 #include "mathops.h"
34 
35 typedef struct Ir2Context{
40 } Ir2Context;
41 
42 #define CODE_VLC_BITS 14
43 static VLC ir2_vlc;
44 
45 /* Indeo 2 codes are in range 0x01..0x7F and 0x81..0x90 */
46 static inline int ir2_get_code(GetBitContext *gb)
47 {
48  return get_vlc2(gb, ir2_vlc.table, CODE_VLC_BITS, 1) + 1;
49 }
50 
51 static int ir2_decode_plane(Ir2Context *ctx, int width, int height, uint8_t *dst,
52  int pitch, const uint8_t *table)
53 {
54  int i;
55  int j;
56  int out = 0;
57 
58  if (width & 1)
59  return AVERROR_INVALIDDATA;
60 
61  /* first line contain absolute values, other lines contain deltas */
62  while (out < width) {
63  int c = ir2_get_code(&ctx->gb);
64  if (c >= 0x80) { /* we have a run */
65  c -= 0x7F;
66  if (out + c*2 > width)
67  return AVERROR_INVALIDDATA;
68  for (i = 0; i < c * 2; i++)
69  dst[out++] = 0x80;
70  } else { /* copy two values from table */
71  if (c <= 0)
72  return AVERROR_INVALIDDATA;
73  dst[out++] = table[c * 2];
74  dst[out++] = table[(c * 2) + 1];
75  }
76  }
77  dst += pitch;
78 
79  for (j = 1; j < height; j++) {
80  out = 0;
81  while (out < width) {
82  int c;
83  if (get_bits_left(&ctx->gb) <= 0)
84  return AVERROR_INVALIDDATA;
85  c = ir2_get_code(&ctx->gb);
86  if (c >= 0x80) { /* we have a skip */
87  c -= 0x7F;
88  if (out + c*2 > width)
89  return AVERROR_INVALIDDATA;
90  for (i = 0; i < c * 2; i++) {
91  dst[out] = dst[out - pitch];
92  out++;
93  }
94  } else { /* add two deltas from table */
95  int t;
96  if (c <= 0)
97  return AVERROR_INVALIDDATA;
98  t = dst[out - pitch] + (table[c * 2] - 128);
99  t = av_clip_uint8(t);
100  dst[out] = t;
101  out++;
102  t = dst[out - pitch] + (table[(c * 2) + 1] - 128);
103  t = av_clip_uint8(t);
104  dst[out] = t;
105  out++;
106  }
107  }
108  dst += pitch;
109  }
110  return 0;
111 }
112 
113 static int ir2_decode_plane_inter(Ir2Context *ctx, int width, int height, uint8_t *dst,
114  int pitch, const uint8_t *table)
115 {
116  int j;
117  int out = 0;
118  int c;
119  int t;
120 
121  if (width & 1)
122  return AVERROR_INVALIDDATA;
123 
124  for (j = 0; j < height; j++) {
125  out = 0;
126  while (out < width) {
127  if (get_bits_left(&ctx->gb) <= 0)
128  return AVERROR_INVALIDDATA;
129  c = ir2_get_code(&ctx->gb);
130  if (c >= 0x80) { /* we have a skip */
131  c -= 0x7F;
132  out += c * 2;
133  } else { /* add two deltas from table */
134  if (c <= 0)
135  return AVERROR_INVALIDDATA;
136  t = dst[out] + (((table[c * 2] - 128)*3) >> 2);
137  t = av_clip_uint8(t);
138  dst[out] = t;
139  out++;
140  t = dst[out] + (((table[(c * 2) + 1] - 128)*3) >> 2);
141  t = av_clip_uint8(t);
142  dst[out] = t;
143  out++;
144  }
145  }
146  dst += pitch;
147  }
148  return 0;
149 }
150 
152  void *data, int *got_frame,
153  AVPacket *avpkt)
154 {
155  Ir2Context * const s = avctx->priv_data;
156  const uint8_t *buf = avpkt->data;
157  int buf_size = avpkt->size;
158  AVFrame *picture = data;
159  AVFrame * const p = s->picture;
160  int start, ret;
161  int ltab, ctab;
162 
163  if ((ret = ff_reget_buffer(avctx, p)) < 0)
164  return ret;
165 
166  start = 48; /* hardcoded for now */
167 
168  if (start >= buf_size) {
169  av_log(s->avctx, AV_LOG_ERROR, "input buffer size too small (%d)\n", buf_size);
170  return AVERROR_INVALIDDATA;
171  }
172 
173  s->decode_delta = buf[18];
174 
175  /* decide whether frame uses deltas or not */
176 #ifndef BITSTREAM_READER_LE
177  for (i = 0; i < buf_size; i++)
178  buf[i] = ff_reverse[buf[i]];
179 #endif
180 
181  init_get_bits(&s->gb, buf + start, (buf_size - start) * 8);
182 
183  ltab = buf[0x22] & 3;
184  ctab = buf[0x22] >> 2;
185 
186  if (ctab > 3) {
187  av_log(avctx, AV_LOG_ERROR, "ctab %d is invalid\n", ctab);
188  return AVERROR_INVALIDDATA;
189  }
190 
191  if (s->decode_delta) { /* intraframe */
192  if ((ret = ir2_decode_plane(s, avctx->width, avctx->height,
193  p->data[0], p->linesize[0],
194  ir2_delta_table[ltab])) < 0)
195  return ret;
196 
197  /* swapped U and V */
198  if ((ret = ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
199  p->data[2], p->linesize[2],
200  ir2_delta_table[ctab])) < 0)
201  return ret;
202  if ((ret = ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
203  p->data[1], p->linesize[1],
204  ir2_delta_table[ctab])) < 0)
205  return ret;
206  } else { /* interframe */
207  if ((ret = ir2_decode_plane_inter(s, avctx->width, avctx->height,
208  p->data[0], p->linesize[0],
209  ir2_delta_table[ltab])) < 0)
210  return ret;
211  /* swapped U and V */
212  if ((ret = ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
213  p->data[2], p->linesize[2],
214  ir2_delta_table[ctab])) < 0)
215  return ret;
216  if ((ret = ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
217  p->data[1], p->linesize[1],
218  ir2_delta_table[ctab])) < 0)
219  return ret;
220  }
221 
222  if ((ret = av_frame_ref(picture, p)) < 0)
223  return ret;
224 
225  *got_frame = 1;
226 
227  return buf_size;
228 }
229 
231 {
232  Ir2Context * const ic = avctx->priv_data;
233  static VLC_TYPE vlc_tables[1 << CODE_VLC_BITS][2];
234 
235  ic->avctx = avctx;
236 
237  avctx->pix_fmt= AV_PIX_FMT_YUV410P;
238 
239  ic->picture = av_frame_alloc();
240  if (!ic->picture)
241  return AVERROR(ENOMEM);
242 
243  ir2_vlc.table = vlc_tables;
244  ir2_vlc.table_allocated = 1 << CODE_VLC_BITS;
245 #ifdef BITSTREAM_READER_LE
246  init_vlc(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
247  &ir2_codes[0][1], 4, 2,
249 #else
250  init_vlc(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
251  &ir2_codes[0][1], 4, 2,
252  &ir2_codes[0][0], 4, 2, INIT_VLC_USE_NEW_STATIC);
253 #endif
254 
255  return 0;
256 }
257 
259 {
260  Ir2Context * const ic = avctx->priv_data;
261 
262  av_frame_free(&ic->picture);
263 
264  return 0;
265 }
266 
268  .name = "indeo2",
269  .long_name = NULL_IF_CONFIG_SMALL("Intel Indeo 2"),
270  .type = AVMEDIA_TYPE_VIDEO,
271  .id = AV_CODEC_ID_INDEO2,
272  .priv_data_size = sizeof(Ir2Context),
274  .close = ir2_decode_end,
276  .capabilities = AV_CODEC_CAP_DR1,
277 };
const char * s
Definition: avisynth_c.h:631
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
static int ir2_get_code(GetBitContext *gb)
Definition: indeo2.c:46
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
GetBitContext gb
Definition: indeo2.c:38
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
int decode_delta
Definition: indeo2.c:39
int size
Definition: avcodec.h:1434
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1732
#define VLC_TYPE
Definition: get_bits.h:62
AVCodec.
Definition: avcodec.h:3482
Macro definitions for various function/variable attributes.
static int ir2_decode_plane_inter(Ir2Context *ctx, int width, int height, uint8_t *dst, int pitch, const uint8_t *table)
Definition: indeo2.c:113
AVCodec ff_indeo2_decoder
Definition: indeo2.c:267
static int ir2_decode_plane(Ir2Context *ctx, int width, int height, uint8_t *dst, int pitch, const uint8_t *table)
Definition: indeo2.c:51
uint8_t
#define av_cold
Definition: attributes.h:74
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:135
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
Definition: frame.c:366
uint8_t * data
Definition: avcodec.h:1433
bitstream reader API header.
#define av_log(a,...)
static av_cold int ir2_decode_init(AVCodecContext *avctx)
Definition: indeo2.c:230
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:594
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:148
static const struct endianess table[]
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:178
const uint8_t ff_reverse[256]
Definition: reverse.c:23
const char * name
Name of the codec implementation.
Definition: avcodec.h:3489
Libavcodec external API header.
Definition: get_bits.h:64
static av_cold int ir2_decode_end(AVCodecContext *avctx)
Definition: indeo2.c:258
int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame)
Identical in function to av_frame_make_writable(), except it uses ff_get_buffer() to allocate the buf...
Definition: utils.c:1097
int width
picture width / height.
Definition: avcodec.h:1691
static av_always_inline int get_vlc2(GetBitContext *s, VLC_TYPE(*table)[2], int bits, int max_depth)
Parse a vlc code.
Definition: get_bits.h:561
#define INIT_VLC_USE_NEW_STATIC
Definition: get_bits.h:479
int table_allocated
Definition: get_bits.h:67
#define CODE_VLC_BITS
Definition: indeo2.c:42
static int ir2_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: indeo2.c:151
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:199
main external API structure.
Definition: avcodec.h:1512
#define init_vlc(vlc, nb_bits, nb_codes,bits, bits_wrap, bits_size,codes, codes_wrap, codes_size,flags)
Definition: get_bits.h:462
void * buf
Definition: avisynth_c.h:553
#define INIT_VLC_LE
Definition: get_bits.h:478
BYTE int const BYTE int int int height
Definition: avisynth_c.h:676
AVFrame * picture
Definition: indeo2.c:37
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:73
#define IR2_CODES
Definition: indeo2data.h:27
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:415
static VLC_TYPE vlc_tables[VLC_TABLES_SIZE][2]
Definition: imc.c:119
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
Definition: ccaption_dec.c:521
common internal api header.
static double c[64]
void * priv_data
Definition: avcodec.h:1554
VLC_TYPE(* table)[2]
code, bits
Definition: get_bits.h:66
AVCodecContext * avctx
Definition: indeo2.c:36
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;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);returnNULL;}returnac;}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;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->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);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> out
static const uint8_t ir2_delta_table[4][256]
Definition: indeo2data.h:106
void INT64 start
Definition: avisynth_c.h:553
static VLC ir2_vlc
Definition: indeo2.c:43
This structure stores compressed data.
Definition: avcodec.h:1410
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:857
static const uint16_t ir2_codes[IR2_CODES][2]
Definition: indeo2data.h:28
static int width