Libav
ivi_common.h
Go to the documentation of this file.
1 /*
2  * common functions for Indeo Video Interactive codecs (Indeo4 and Indeo5)
3  *
4  * Copyright (c) 2009 Maxim Poliakovski
5  *
6  * This file is part of Libav.
7  *
8  * Libav is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * Libav is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with Libav; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
29 #ifndef AVCODEC_IVI_COMMON_H
30 #define AVCODEC_IVI_COMMON_H
31 
32 #include "avcodec.h"
33 #include "get_bits.h"
34 #include <stdint.h>
35 
36 #define IVI_VLC_BITS 13
37 #define IVI4_STREAM_ANALYSER 0
38 #define IVI5_IS_PROTECTED 0x20
39 
43 typedef struct IVIHuffDesc {
46 } IVIHuffDesc;
47 
51 typedef struct IVIHuffTab {
53  VLC *tab;
55 
59 } IVIHuffTab;
60 
61 enum {
64 };
65 
66 
70 extern const uint8_t ff_ivi_vertical_scan_8x8[64];
71 extern const uint8_t ff_ivi_horizontal_scan_8x8[64];
72 extern const uint8_t ff_ivi_direct_scan_4x4[16];
73 
74 
78 typedef void (InvTransformPtr)(const int32_t *in, int16_t *out, uint32_t pitch, const uint8_t *flags);
79 typedef void (DCTransformPtr) (const int32_t *in, int16_t *out, uint32_t pitch, int blk_size);
80 
81 
85 typedef struct RVMapDesc {
89  int8_t valtab[256];
90 } RVMapDesc;
91 
92 extern const RVMapDesc ff_ivi_rvmap_tabs[9];
93 
94 
98 typedef struct IVIMbInfo {
99  int16_t xpos;
100  int16_t ypos;
101  uint32_t buf_offs;
104  int8_t q_delta;
105  int8_t mv_x;
106  int8_t mv_y;
107 } IVIMbInfo;
108 
109 
113 typedef struct IVITile {
114  int xpos;
115  int ypos;
116  int width;
117  int height;
118  int mb_size;
119  int is_empty;
120  int data_size;
121  int num_MBs;
124 } IVITile;
125 
126 
130 typedef struct IVIBandDesc {
131  int plane;
132  int band_num;
133  int width;
134  int height;
135  int aheight;
136  const uint8_t *data_ptr;
137  int data_size;
138  int16_t *buf;
139  int16_t *ref_buf;
140  int16_t *bufs[3];
141  int pitch;
142  int is_empty;
143  int mb_size;
144  int blk_size;
149  int quant_mat;
151  const uint8_t *scan;
152 
154 
155  int num_corr;
156  uint8_t corr[61*2];
157  int rvmap_sel;
159  int num_tiles;
167  int bufsize;
168  const uint16_t *intra_base;
169  const uint16_t *inter_base;
172 } IVIBandDesc;
173 
174 
178 typedef struct IVIPlaneDesc {
179  uint16_t width;
180  uint16_t height;
183 } IVIPlaneDesc;
184 
185 
186 typedef struct IVIPicConfig {
187  uint16_t pic_width;
188  uint16_t pic_height;
189  uint16_t chroma_width;
190  uint16_t chroma_height;
191  uint16_t tile_width;
192  uint16_t tile_height;
195 } IVIPicConfig;
196 
197 typedef struct IVI45DecContext {
200 
201  uint32_t frame_num;
204  uint32_t data_size;
209  uint32_t frame_size;
210  uint32_t pic_hdr_size;
212  uint16_t checksum;
213 
216 
218  int dst_buf;
219  int ref_buf;
220  int ref2_buf;
221 
224 
230 
231  uint16_t gop_hdr_size;
233  uint32_t lock_word;
234 
235 #if IVI4_STREAM_ANALYSER
236  uint8_t has_b_frames;
237  uint8_t has_transp;
238  uint8_t uses_tiling;
239  uint8_t uses_haar;
240  uint8_t uses_fullpel;
241 #endif
242 
243  int (*decode_pic_hdr) (struct IVI45DecContext *ctx, AVCodecContext *avctx);
244  int (*decode_band_hdr) (struct IVI45DecContext *ctx, IVIBandDesc *band, AVCodecContext *avctx);
245  int (*decode_mb_info) (struct IVI45DecContext *ctx, IVIBandDesc *band, IVITile *tile, AVCodecContext *avctx);
247  int (*is_nonnull_frame)(struct IVI45DecContext *ctx);
248 
251 
253 static inline int ivi_pic_config_cmp(IVIPicConfig *str1, IVIPicConfig *str2)
254 {
255  return str1->pic_width != str2->pic_width || str1->pic_height != str2->pic_height ||
256  str1->chroma_width != str2->chroma_width || str1->chroma_height != str2->chroma_height ||
257  str1->tile_width != str2->tile_width || str1->tile_height != str2->tile_height ||
258  str1->luma_bands != str2->luma_bands || str1->chroma_bands != str2->chroma_bands;
259 }
260 
262 #define IVI_NUM_TILES(stride, tile_size) (((stride) + (tile_size) - 1) / (tile_size))
263 
265 #define IVI_MBs_PER_TILE(tile_width, tile_height, mb_size) \
266  ((((tile_width) + (mb_size) - 1) / (mb_size)) * (((tile_height) + (mb_size) - 1) / (mb_size)))
267 
269 #define IVI_TOSIGNED(val) (-(((val) >> 1) ^ -((val) & 1)))
270 
272 static inline int ivi_scale_mv(int mv, int mv_scale)
273 {
274  return (mv + (mv > 0) + (mv_scale - 1)) >> mv_scale;
275 }
276 
280 void ff_ivi_init_static_vlc(void);
281 
293 int ff_ivi_dec_huff_desc(GetBitContext *gb, int desc_coded, int which_tab,
294  IVIHuffTab *huff_tab, AVCodecContext *avctx);
295 
304 
313 int ff_ivi_init_tiles(IVIPlaneDesc *planes, int tile_width, int tile_height);
314 
315 int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
316  AVPacket *avpkt);
318 
319 #endif /* AVCODEC_IVI_COMMON_H */
int is_empty
= 1 if this band doesn't contain any data
Definition: ivi_common.h:142
uint32_t data_size
size of the frame data in bytes from picture header
Definition: ivi_common.h:204
uint8_t type
macroblock type: 0 - INTRA, 1 - INTER
Definition: ivi_common.h:102
int num_MBs
number of macroblocks in this tile
Definition: ivi_common.h:121
static av_always_inline void mv_scale(Mv *dst, Mv *src, int td, int tb)
Definition: hevc_mvs.c:139
macroblock/block huffman table descriptor
Definition: ivi_common.h:51
InvTransformPtr * inv_transform
Definition: ivi_common.h:161
Huffman table is used for coding macroblocks.
Definition: ivi_common.h:63
int(* decode_pic_hdr)(struct IVI45DecContext *ctx, AVCodecContext *avctx)
Definition: ivi_common.h:243
int inter_scal
signals a sequence of scalable inter frames
Definition: ivi_common.h:208
int(* decode_mb_info)(struct IVI45DecContext *ctx, IVIBandDesc *band, IVITile *tile, AVCodecContext *avctx)
Definition: ivi_common.h:245
int num_tiles
number of tiles in this band
Definition: ivi_common.h:159
int dst_buf
buffer index for the currently decoded frame
Definition: ivi_common.h:218
int16_t * ref_buf
pointer to the reference frame buffer (for motion compensation)
Definition: ivi_common.h:139
uint8_t eob_sym
end of block symbol
Definition: ivi_common.h:86
int16_t * buf
pointer to the output buffer for this band
Definition: ivi_common.h:138
IVITile * tiles
array of tile descriptors
Definition: ivi_common.h:160
int is_halfpel
precision of the motion compensation: 0 - fullpel, 1 - halfpel
Definition: ivi_common.h:145
const RVMapDesc ff_ivi_rvmap_tabs[9]
Run-value (RLE) tables.
Definition: ivi_common.c:1111
uint8_t chroma_bands
Definition: ivi_common.h:194
const uint8_t ff_ivi_direct_scan_4x4[16]
Definition: ivi_common.c:1103
int plane
plane number this band belongs to
Definition: ivi_common.h:131
int mb_size
Definition: ivi_common.h:118
int bufsize
band buffer size in bytes
Definition: ivi_common.h:167
IVIPicConfig pic_conf
Definition: ivi_common.h:214
void ff_ivi_init_static_vlc(void)
Initialize static codes used for macroblock and block decoding.
Definition: ivi_common.c:155
int quant_mat
dequant matrix index
Definition: ivi_common.h:149
uint16_t height
Definition: ivi_common.h:180
RVMapDesc * rv_map
ptr to the RLE table for this band
Definition: ivi_common.h:158
uint8_t xbits[16]
Definition: ivi_common.h:45
uint8_t luma_bands
Definition: ivi_common.h:193
VLC * tab
index of one of the predefined tables or "7" for custom one
Definition: ivi_common.h:54
uint8_t
uint8_t pic_glob_quant
Definition: ivi_common.h:228
const uint8_t * frame_data
input frame data pointer
Definition: ivi_common.h:207
const uint16_t * inter_base
quantization matrix for inter blocks
Definition: ivi_common.h:169
const uint8_t * data_ptr
ptr to the first byte of the band data
Definition: ivi_common.h:136
uint16_t pic_height
Definition: ivi_common.h:188
const uint8_t ff_ivi_vertical_scan_8x8[64]
Common scan patterns (defined in ivi_common.c)
Definition: ivi_common.c:1081
int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: ivi_common.c:947
int inherit_mv
tells if motion vector is inherited from reference macroblock
Definition: ivi_common.h:146
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=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;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->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);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_dlog(ac->avr,"%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
uint16_t tile_height
Definition: ivi_common.h:192
GetBitContext gb
Definition: ivi_common.h:198
const char data[16]
Definition: mxf.c:66
uint16_t chroma_width
Definition: ivi_common.h:189
int16_t * bufs[3]
array of pointers to the band buffers
Definition: ivi_common.h:140
int pitch
pitch associated with the buffers above
Definition: ivi_common.h:141
uint8_t cbp
coded block pattern
Definition: ivi_common.h:103
int qdelta_present
tells if Qdelta signal is present in the bitstream (Indeo5 only)
Definition: ivi_common.h:148
static int flags
Definition: log.c:44
uint16_t checksum
frame checksum
Definition: ivi_common.h:212
bitstream reader API header.
uint32_t pic_hdr_size
picture header size in bytes
Definition: ivi_common.h:210
uint16_t pic_width
Definition: ivi_common.h:187
IVIPlaneDesc planes[3]
color planes
Definition: ivi_common.h:215
int ff_ivi_init_planes(IVIPlaneDesc *planes, const IVIPicConfig *cfg)
Initialize planes (prepares descriptors, allocates buffers etc).
Definition: ivi_common.c:279
const uint16_t * intra_base
quantization matrix for intra blocks
Definition: ivi_common.h:168
int data_size
size of the band data
Definition: ivi_common.h:137
uint8_t unknown1
Definition: ivi_common.h:229
IVIHuffDesc cust_desc
pointer to the table associated with tab_sel
Definition: ivi_common.h:57
int blk_size
block size
Definition: ivi_common.h:144
uint8_t runtab[256]
Definition: ivi_common.h:88
uint8_t corr[61 *2]
rvmap correction pairs
Definition: ivi_common.h:156
int32_t tab_sel
Definition: ivi_common.h:52
static int ivi_pic_config_cmp(IVIPicConfig *str1, IVIPicConfig *str2)
compare some properties of two pictures
Definition: ivi_common.h:253
RVMapDesc rvmap_tabs[9]
local corrected copy of the static rvmap tables
Definition: ivi_common.h:199
uint8_t in_q
flag for explicitly stored quantiser delta
Definition: ivi_common.h:227
int ff_ivi_decode_close(AVCodecContext *avctx)
Close Indeo5 decoder and clean up its context.
Definition: ivi_common.c:1048
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=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;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->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);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_dlog(ac->avr,"%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-> in
int ref_buf
inter frame reference buffer index
Definition: ivi_common.h:219
DCTransformPtr * dc_transform
Definition: ivi_common.h:163
int ff_ivi_init_tiles(IVIPlaneDesc *planes, int tile_width, int tile_height)
Initialize tile and macroblock descriptors.
Definition: ivi_common.c:386
int32_t num_rows
Definition: ivi_common.h:44
uint8_t esc_sym
escape symbol
Definition: ivi_common.h:87
uint16_t width
Definition: ivi_common.h:179
Definition: get_bits.h:64
run-value (RLE) table descriptor
Definition: ivi_common.h:85
int inherit_qdelta
tells if quantiser delta is inherited from reference macroblock
Definition: ivi_common.h:147
uint32_t frame_num
Definition: ivi_common.h:201
uint8_t num_bands
number of bands this plane subdivided into
Definition: ivi_common.h:181
int(* decode_band_hdr)(struct IVI45DecContext *ctx, IVIBandDesc *band, AVCodecContext *avctx)
Definition: ivi_common.h:244
IVIMbInfo * mbs
array of macroblock descriptors
Definition: ivi_common.h:122
int32_t
const uint8_t * inter_scale
quantization coefficient for inter blocks
Definition: ivi_common.h:171
uint16_t chroma_height
Definition: ivi_common.h:190
uint32_t lock_word
Definition: ivi_common.h:233
int8_t q_delta
quant delta
Definition: ivi_common.h:104
uint32_t frame_size
frame size in bytes
Definition: ivi_common.h:209
static const int8_t mv[256][2]
Definition: 4xm.c:72
uint16_t tile_width
Definition: ivi_common.h:191
int ypos
Definition: ivi_common.h:115
IVIHuffTab mb_vlc
current macroblock table descriptor
Definition: ivi_common.h:222
int is_2d_trans
1 indicates that the two-dimensional inverse transform is used
Definition: ivi_common.h:164
Libavcodec external API header.
int glob_quant
quant base for this band
Definition: ivi_common.h:150
int height
Definition: ivi_common.h:117
main external API structure.
Definition: avcodec.h:1054
static void(WINAPI *cond_broadcast)(pthread_cond_t *cond)
int aheight
aligned band height
Definition: ivi_common.h:135
int is_empty
= 1 if this tile doesn't contain any data
Definition: ivi_common.h:119
uint8_t frame_flags
Definition: ivi_common.h:211
int8_t valtab[256]
Definition: ivi_common.h:89
int num_corr
number of correction entries
Definition: ivi_common.h:155
information for Indeo tile
Definition: ivi_common.h:113
int(* is_nonnull_frame)(struct IVI45DecContext *ctx)
Definition: ivi_common.h:247
int buf_switch
used to switch between three buffers
Definition: ivi_common.h:217
uint8_t in_imf
Definition: ivi_common.h:226
uint8_t gop_flags
Definition: ivi_common.h:232
void(* switch_buffers)(struct IVI45DecContext *ctx)
Definition: ivi_common.h:246
IVIBandDesc * bands
array of band descriptors
Definition: ivi_common.h:182
int32_t checksum
for debug purposes
Definition: ivi_common.h:165
int rvmap_sel
rvmap table selector
Definition: ivi_common.h:157
int8_t mv_x
motion vector (x component)
Definition: ivi_common.h:105
int8_t mv_y
motion vector (y component)
Definition: ivi_common.h:106
int mb_size
macroblock size
Definition: ivi_common.h:143
huffman codebook descriptor
Definition: ivi_common.h:43
IVIMbInfo * ref_mbs
ptr to the macroblock descriptors of the reference tile
Definition: ivi_common.h:123
int xpos
Definition: ivi_common.h:114
IVIHuffTab blk_vlc
current block table descriptor
Definition: ivi_common.h:223
uint16_t gop_hdr_size
Definition: ivi_common.h:231
int16_t xpos
Definition: ivi_common.h:99
int band_num
band number
Definition: ivi_common.h:132
int transform_size
Definition: ivi_common.h:162
void( InvTransformPtr)(const int32_t *in, int16_t *out, uint32_t pitch, const uint8_t *flags)
Declare inverse transform function types.
Definition: ivi_common.h:78
int ref2_buf
temporal storage for switching buffers
Definition: ivi_common.h:220
VLC cust_tab
custom Huffman codebook descriptor
Definition: ivi_common.h:58
const uint8_t * scan
ptr to the scan pattern
Definition: ivi_common.h:151
int width
Definition: ivi_common.h:116
int checksum_present
Definition: ivi_common.h:166
static int ivi_scale_mv(int mv, int mv_scale)
scale motion vector
Definition: ivi_common.h:272
int transp_status
transparency mode status: 1 - enabled
Definition: ivi_common.h:206
int16_t ypos
Definition: ivi_common.h:100
int prev_frame_type
frame type of the previous frame
Definition: ivi_common.h:203
information for Indeo macroblock (16x16, 8x8 or 4x4)
Definition: ivi_common.h:98
IVIHuffTab blk_vlc
vlc table for decoding block data
Definition: ivi_common.h:153
const uint8_t * intra_scale
quantization coefficient for intra blocks
Definition: ivi_common.h:170
color plane (luma or chroma) information
Definition: ivi_common.h:178
int ff_ivi_dec_huff_desc(GetBitContext *gb, int desc_coded, int which_tab, IVIHuffTab *huff_tab, AVCodecContext *avctx)
Decode a huffman codebook descriptor from the bitstream and select specified huffman table...
Definition: ivi_common.c:202
uint32_t buf_offs
address in the output buffer for this mb
Definition: ivi_common.h:101
information for Indeo wavelet band
Definition: ivi_common.h:130
void( DCTransformPtr)(const int32_t *in, int16_t *out, uint32_t pitch, int blk_size)
Definition: ivi_common.h:79
This structure stores compressed data.
Definition: avcodec.h:950
const uint8_t ff_ivi_horizontal_scan_8x8[64]
Definition: ivi_common.c:1092
uint8_t rvmap_sel
Definition: ivi_common.h:225
int data_size
size of the data in bytes
Definition: ivi_common.h:120