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 stride, const uint8_t *table)
53 {
54  int i;
55  int j;
56  int out = 0;
57  int c;
58  int t;
59 
60  if (width & 1)
61  return AVERROR_INVALIDDATA;
62 
63  /* first line contain absolute values, other lines contain deltas */
64  while (out < width) {
65  c = ir2_get_code(&ctx->gb);
66  if (c >= 0x80) { /* we have a run */
67  c -= 0x7F;
68  if (out + c*2 > width)
69  return AVERROR_INVALIDDATA;
70  for (i = 0; i < c * 2; i++)
71  dst[out++] = 0x80;
72  } else { /* copy two values from table */
73  dst[out++] = table[c * 2];
74  dst[out++] = table[(c * 2) + 1];
75  }
76  }
77  dst += stride;
78 
79  for (j = 1; j < height; j++) {
80  out = 0;
81  while (out < width) {
82  c = ir2_get_code(&ctx->gb);
83  if (c >= 0x80) { /* we have a skip */
84  c -= 0x7F;
85  if (out + c*2 > width)
86  return AVERROR_INVALIDDATA;
87  for (i = 0; i < c * 2; i++) {
88  dst[out] = dst[out - stride];
89  out++;
90  }
91  } else { /* add two deltas from table */
92  t = dst[out - stride] + (table[c * 2] - 128);
93  t = av_clip_uint8(t);
94  dst[out] = t;
95  out++;
96  t = dst[out - stride] + (table[(c * 2) + 1] - 128);
97  t = av_clip_uint8(t);
98  dst[out] = t;
99  out++;
100  }
101  }
102  dst += stride;
103  }
104  return 0;
105 }
106 
108  int stride, const uint8_t *table)
109 {
110  int j;
111  int out = 0;
112  int c;
113  int t;
114 
115  if (width & 1)
116  return AVERROR_INVALIDDATA;
117 
118  for (j = 0; j < height; j++) {
119  out = 0;
120  while (out < width) {
121  c = ir2_get_code(&ctx->gb);
122  if (c >= 0x80) { /* we have a skip */
123  c -= 0x7F;
124  out += c * 2;
125  } else { /* add two deltas from table */
126  t = dst[out] + (((table[c * 2] - 128)*3) >> 2);
127  t = av_clip_uint8(t);
128  dst[out] = t;
129  out++;
130  t = dst[out] + (((table[(c * 2) + 1] - 128)*3) >> 2);
131  t = av_clip_uint8(t);
132  dst[out] = t;
133  out++;
134  }
135  }
136  dst += stride;
137  }
138  return 0;
139 }
140 
142  void *data, int *got_frame,
143  AVPacket *avpkt)
144 {
145  Ir2Context * const s = avctx->priv_data;
146  const uint8_t *buf = avpkt->data;
147  int buf_size = avpkt->size;
148  AVFrame *picture = data;
149  AVFrame * const p = &s->picture;
150  int start, ret;
151 
152  if ((ret = ff_reget_buffer(avctx, p)) < 0)
153  return ret;
154 
155  start = 48; /* hardcoded for now */
156 
157  if (start >= buf_size) {
158  av_log(s->avctx, AV_LOG_ERROR, "input buffer size too small (%d)\n", buf_size);
159  return AVERROR_INVALIDDATA;
160  }
161 
162  s->decode_delta = buf[18];
163 
164  /* decide whether frame uses deltas or not */
165 #ifndef BITSTREAM_READER_LE
166  for (i = 0; i < buf_size; i++)
167  buf[i] = ff_reverse[buf[i]];
168 #endif
169 
170  init_get_bits(&s->gb, buf + start, (buf_size - start) * 8);
171 
172  if (s->decode_delta) { /* intraframe */
173  if ((ret = ir2_decode_plane(s, avctx->width, avctx->height,
174  s->picture.data[0], s->picture.linesize[0],
175  ir2_luma_table)) < 0)
176  return ret;
177 
178  /* swapped U and V */
179  if ((ret = ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
180  s->picture.data[2], s->picture.linesize[2],
181  ir2_luma_table)) < 0)
182  return ret;
183  if ((ret = ir2_decode_plane(s, avctx->width >> 2, avctx->height >> 2,
184  s->picture.data[1], s->picture.linesize[1],
185  ir2_luma_table)) < 0)
186  return ret;
187  } else { /* interframe */
188  if ((ret = ir2_decode_plane_inter(s, avctx->width, avctx->height,
189  s->picture.data[0], s->picture.linesize[0],
190  ir2_luma_table)) < 0)
191  return ret;
192  /* swapped U and V */
193  if ((ret = ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
194  s->picture.data[2], s->picture.linesize[2],
195  ir2_luma_table)) < 0)
196  return ret;
197  if ((ret = ir2_decode_plane_inter(s, avctx->width >> 2, avctx->height >> 2,
198  s->picture.data[1], s->picture.linesize[1],
199  ir2_luma_table)) < 0)
200  return ret;
201  }
202 
203  if ((ret = av_frame_ref(picture, &s->picture)) < 0)
204  return ret;
205 
206  *got_frame = 1;
207 
208  return buf_size;
209 }
210 
212 {
213  Ir2Context * const ic = avctx->priv_data;
214  static VLC_TYPE vlc_tables[1 << CODE_VLC_BITS][2];
215 
217  ic->avctx = avctx;
218 
219  avctx->pix_fmt= AV_PIX_FMT_YUV410P;
220 
222 
223  ir2_vlc.table = vlc_tables;
224  ir2_vlc.table_allocated = 1 << CODE_VLC_BITS;
225 #ifdef BITSTREAM_READER_LE
226  init_vlc(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
227  &ir2_codes[0][1], 4, 2,
229 #else
230  init_vlc(&ir2_vlc, CODE_VLC_BITS, IR2_CODES,
231  &ir2_codes[0][1], 4, 2,
232  &ir2_codes[0][0], 4, 2, INIT_VLC_USE_NEW_STATIC);
233 #endif
234 
235  return 0;
236 }
237 
239 {
240  Ir2Context * const ic = avctx->priv_data;
241  AVFrame *pic = &ic->picture;
242 
243  av_frame_unref(pic);
244 
245  return 0;
246 }
247 
249  .name = "indeo2",
250  .type = AVMEDIA_TYPE_VIDEO,
251  .id = AV_CODEC_ID_INDEO2,
252  .priv_data_size = sizeof(Ir2Context),
256  .capabilities = CODEC_CAP_DR1,
257  .long_name = NULL_IF_CONFIG_SMALL("Intel Indeo 2"),
258 };
const char * s
Definition: avisynth_c.h:668
#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:76
GetBitContext gb
Definition: indeo2.c:38
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
int decode_delta
Definition: indeo2.c:39
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
#define VLC_TYPE
Definition: get_bits.h:61
int stride
Definition: mace.c:144
Macro definitions for various function/variable attributes.
AVCodec ff_indeo2_decoder
Definition: indeo2.c:248
uint8_t
#define av_cold
Definition: attributes.h:78
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
uint8_t * data
bitstream reader API header.
static av_cold int ir2_decode_init(AVCodecContext *avctx)
Definition: indeo2.c:211
static const struct endianess table[]
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Spectrum Plot time data
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:246
const char * name
Name of the codec implementation.
external API header
Definition: get_bits.h:63
struct Ir2Context Ir2Context
static av_cold int ir2_decode_end(AVCodecContext *avctx)
Definition: indeo2.c:238
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...
ret
Definition: avfilter.c:821
int width
picture width / height.
t
Definition: genspecsines3.m:6
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:524
AVFrame picture
Definition: indeo2.c:37
#define INIT_VLC_USE_NEW_STATIC
Definition: get_bits.h:443
int table_allocated
Definition: get_bits.h:66
#define CODE_VLC_BITS
Definition: indeo2.c:42
static int width
Definition: tests/utils.c:158
static int ir2_decode_plane(Ir2Context *ctx, int width, int height, uint8_t *dst, int stride, const uint8_t *table)
Definition: indeo2.c:51
static int ir2_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: indeo2.c:141
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:101
main external API structure.
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:375
static int ir2_decode_plane_inter(Ir2Context *ctx, int width, int height, uint8_t *dst, int stride, const uint8_t *table)
Definition: indeo2.c:107
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:148
#define init_vlc(vlc, nb_bits, nb_codes,bits, bits_wrap, bits_size,codes, codes_wrap, codes_size,flags)
Definition: get_bits.h:426
void * buf
Definition: avisynth_c.h:594
#define INIT_VLC_LE
Definition: get_bits.h:442
BYTE int const BYTE int int int height
Definition: avisynth_c.h:713
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:74
void avcodec_get_frame_defaults(AVFrame *frame)
Set the fields of the given AVFrame to default values.
#define IR2_CODES
Definition: indeo2data.h:27
synthesis window for stochastic i
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:379
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:330
static VLC_TYPE vlc_tables[VLC_TABLES_SIZE][2]
Definition: imc.c:117
static const uint8_t ir2_luma_table[256]
Definition: indeo2data.h:106
int av_frame_ref(AVFrame *dst, AVFrame *src)
Setup a new reference to the data described by an given frame.
Definition: frame.c:228
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:87
common internal api header.
static double c[64]
else dst[i][x+y *dst_stride[i]]
Definition: vf_mcdeint.c:160
VLC_TYPE(* table)[2]
code, bits
Definition: get_bits.h:65
AVCodecContext * avctx
Definition: indeo2.c:36
void INT64 start
Definition: avisynth_c.h:594
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=av_sample_fmt_is_planar(in_fmt);out_planar=av_sample_fmt_is_planar(out_fmt);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_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)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> out
static int decode(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: crystalhd.c:868
const uint8_t ff_reverse[256]
Definition: mathtables.c:72
static VLC ir2_vlc
Definition: indeo2.c:43
This structure stores compressed data.
static const uint16_t ir2_codes[IR2_CODES][2]
Definition: indeo2data.h:28