FFmpeg
Loading...
Searching...
No Matches
ivi.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 FFmpeg.
7 *
8 * FFmpeg 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 * FFmpeg 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 FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23/**
24 * @file
25 * This file contains structures and macros shared by both Indeo4 and
26 * Indeo5 decoders.
27 */
28
29#ifndef AVCODEC_IVI_H
30#define AVCODEC_IVI_H
31
32#include "avcodec.h"
33#include "get_bits.h"
34#include <stdint.h>
35
36/**
37 * Indeo 4 frame types.
38 */
39enum {
41 IVI4_FRAMETYPE_INTRA1 = 1, ///< intra frame with slightly different bitstream coding
42 IVI4_FRAMETYPE_INTER = 2, ///< non-droppable P-frame
43 IVI4_FRAMETYPE_BIDIR = 3, ///< bidirectional frame
44 IVI4_FRAMETYPE_INTER_NOREF = 4, ///< droppable P-frame
45 IVI4_FRAMETYPE_NULL_FIRST = 5, ///< empty frame with no data
46 IVI4_FRAMETYPE_NULL_LAST = 6 ///< empty frame with no data
47};
48
49#define IVI_VLC_BITS 13 ///< max number of bits of the ivi's huffman codes
50#define IVI5_IS_PROTECTED 0x20
51
52/**
53 * huffman codebook descriptor
54 */
55typedef struct IVIHuffDesc {
57 uint8_t xbits[16];
59
60/**
61 * macroblock/block huffman table descriptor
62 */
63typedef struct IVIHuffTab {
64 int32_t tab_sel; ///< index of one of the predefined tables, or "7" for custom one
65 VLC *tab; ///< pointer to the table associated with tab_sel
66
67 // the following are used only when tab_sel == 7
68 IVIHuffDesc cust_desc; ///< custom Huffman codebook descriptor
69 VLC cust_tab; ///< vlc table for custom codebook
71
72enum {
73 IVI_MB_HUFF = 0, ///< Huffman table is used for coding macroblocks
74 IVI_BLK_HUFF = 1 ///< Huffman table is used for coding blocks
75};
76
77
78/**
79 * Common scan patterns (defined in ivi_common.c)
80 */
81extern const uint8_t ff_ivi_vertical_scan_8x8[64];
82extern const uint8_t ff_ivi_horizontal_scan_8x8[64];
83extern const uint8_t ff_ivi_direct_scan_4x4[16];
84
85
86/**
87 * Declare inverse transform function types
88 */
89typedef void (InvTransformPtr)(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags);
90typedef void (DCTransformPtr) (const int32_t *in, int16_t *out, ptrdiff_t pitch, int blk_size);
91
92
93/**
94 * run-value (RLE) table descriptor
95 */
96typedef struct RVMapDesc {
97 uint8_t eob_sym; ///< end of block symbol
98 uint8_t esc_sym; ///< escape symbol
99 uint8_t runtab[256];
100 int8_t valtab[256];
101} RVMapDesc;
102
103extern const RVMapDesc ff_ivi_rvmap_tabs[9];
104
105
106/**
107 * information for Indeo macroblock (16x16, 8x8 or 4x4)
108 */
109typedef struct IVIMbInfo {
110 int16_t xpos;
111 int16_t ypos;
112 uint32_t buf_offs; ///< address in the output buffer for this mb
113 uint8_t type; ///< macroblock type: 0 - INTRA, 1 - INTER
114 uint8_t cbp; ///< coded block pattern
115 int8_t q_delta; ///< quant delta
116 int8_t mv_x; ///< motion vector (x component)
117 int8_t mv_y; ///< motion vector (y component)
118 int8_t b_mv_x; ///< second motion vector (x component)
119 int8_t b_mv_y; ///< second motion vector (y component)
120} IVIMbInfo;
121
122
123/**
124 * information for Indeo tile
125 */
126typedef struct IVITile {
127 int xpos;
128 int ypos;
129 int width;
132 int is_empty; ///< = 1 if this tile doesn't contain any data
133 int data_size; ///< size of the data in bytes
134 int num_MBs; ///< number of macroblocks in this tile
135 IVIMbInfo *mbs; ///< array of macroblock descriptors
136 IVIMbInfo *ref_mbs; ///< ptr to the macroblock descriptors of the reference tile
137} IVITile;
138
139
140/**
141 * information for Indeo wavelet band
142 */
143typedef struct IVIBandDesc {
144 int plane; ///< plane number this band belongs to
145 int band_num; ///< band number
146 int width;
148 int aheight; ///< aligned band height
149 const uint8_t *data_ptr; ///< ptr to the first byte of the band data
150 int data_size; ///< size of the band data
151 int16_t *buf; ///< pointer to the output buffer for this band
152 int16_t *ref_buf; ///< pointer to the reference frame buffer (for motion compensation)
153 int16_t *b_ref_buf; ///< pointer to the second reference frame buffer (for motion compensation)
154 int16_t *bufs[4]; ///< array of pointers to the band buffers
155 ptrdiff_t pitch; ///< pitch associated with the buffers above
156 int is_empty; ///< = 1 if this band doesn't contain any data
157 int mb_size; ///< macroblock size
158 int blk_size; ///< block size
159 int is_halfpel; ///< precision of the motion compensation: 0 - fullpel, 1 - halfpel
160 int inherit_mv; ///< tells if motion vector is inherited from reference macroblock
161 int inherit_qdelta; ///< tells if quantiser delta is inherited from reference macroblock
162 int qdelta_present; ///< tells if Qdelta signal is present in the bitstream (Indeo5 only)
163 int quant_mat; ///< dequant matrix index
164 int glob_quant; ///< quant base for this band
165 const uint8_t *scan; ///< ptr to the scan pattern
166 int scan_size; ///< size of the scantable
167
168 IVIHuffTab blk_vlc; ///< vlc table for decoding block data
169
170 int num_corr; ///< number of correction entries
171 uint8_t corr[61*2]; ///< rvmap correction pairs
172 int rvmap_sel; ///< rvmap table selector
173 RVMapDesc *rv_map; ///< ptr to the RLE table for this band
174 int num_tiles; ///< number of tiles in this band
175 IVITile *tiles; ///< array of tile descriptors
179 int is_2d_trans; ///< 1 indicates that the two-dimensional inverse transform is used
180 int32_t checksum; ///< for debug purposes
182 int bufsize; ///< band buffer size in bytes
183 const uint16_t *intra_base; ///< quantization matrix for intra blocks
184 const uint16_t *inter_base; ///< quantization matrix for inter blocks
185 const uint8_t *intra_scale; ///< quantization coefficient for intra blocks
186 const uint8_t *inter_scale; ///< quantization coefficient for inter blocks
188
189
190/**
191 * color plane (luma or chroma) information
192 */
193typedef struct IVIPlaneDesc {
194 uint16_t width;
195 uint16_t height;
196 uint8_t num_bands; ///< number of bands this plane subdivided into
197 IVIBandDesc *bands; ///< array of band descriptors
199
200
201typedef struct IVIPicConfig {
202 uint16_t pic_width;
203 uint16_t pic_height;
204 uint16_t chroma_width;
206 uint16_t tile_width;
207 uint16_t tile_height;
208 uint8_t luma_bands;
211
212typedef struct IVI45DecContext {
214 RVMapDesc rvmap_tabs[9]; ///< local corrected copy of the static rvmap tables
215
216 uint32_t frame_num;
218 int prev_frame_type; ///< frame type of the previous frame
219 uint32_t data_size; ///< size of the frame data in bytes from picture header
221 const uint8_t *frame_data; ///< input frame data pointer
222 int inter_scal; ///< signals a sequence of scalable inter frames
223 uint32_t frame_size; ///< frame size in bytes
224 uint32_t pic_hdr_size; ///< picture header size in bytes
225 uint8_t frame_flags;
226 uint16_t checksum; ///< frame checksum
227
229 IVIPlaneDesc planes[3]; ///< color planes
230
231 int buf_switch; ///< used to switch between three buffers
232 int dst_buf; ///< buffer index for the currently decoded frame
233 int ref_buf; ///< inter frame reference buffer index
234 int ref2_buf; ///< temporal storage for switching buffers
235 int b_ref_buf; ///< second reference frame buffer index
236
237 IVIHuffTab mb_vlc; ///< current macroblock table descriptor
238 IVIHuffTab blk_vlc; ///< current block table descriptor
239
240 uint8_t rvmap_sel;
241 uint8_t in_imf;
242 uint8_t in_q; ///< flag for explicitly stored quantiser delta
244 uint8_t unknown1;
245
246 uint16_t gop_hdr_size;
247 uint8_t gop_flags;
248 uint32_t lock_word;
249
252 uint8_t has_transp; ///< transparency mode status: 1 - enabled
253 uint8_t uses_tiling;
254 uint8_t uses_haar;
256
262
265
267
271
272/** compare some properties of two pictures */
273static inline int ivi_pic_config_cmp(IVIPicConfig *str1, IVIPicConfig *str2)
274{
275 return str1->pic_width != str2->pic_width || str1->pic_height != str2->pic_height ||
276 str1->chroma_width != str2->chroma_width || str1->chroma_height != str2->chroma_height ||
277 str1->tile_width != str2->tile_width || str1->tile_height != str2->tile_height ||
278 str1->luma_bands != str2->luma_bands || str1->chroma_bands != str2->chroma_bands;
279}
280
281/** calculate number of tiles in a stride */
282#define IVI_NUM_TILES(stride, tile_size) (((stride) + (tile_size) - 1) / (tile_size))
283
284/** calculate number of macroblocks in a tile */
285#define IVI_MBs_PER_TILE(tile_width, tile_height, mb_size) \
286 ((((tile_width) + (mb_size) - 1) / (mb_size)) * (((tile_height) + (mb_size) - 1) / (mb_size)))
287
288/** convert unsigned values into signed ones (the sign is in the LSB) */
289#define IVI_TOSIGNED(val) (-(((val) >> 1) ^ -((val) & 1)))
290
291/** scale motion vector */
292static inline int ivi_scale_mv(int mv, int mv_scale)
293{
294 return (mv + (mv > 0) + (mv_scale - 1)) >> mv_scale;
295}
296
297/**
298 * Initialize static codes used for macroblock and block decoding.
299 */
300void ff_ivi_init_static_vlc(void);
301
302/**
303 * Decode a huffman codebook descriptor from the bitstream
304 * and select specified huffman table.
305 *
306 * @param[in,out] gb the GetBit context
307 * @param[in] desc_coded flag signalling if table descriptor was coded
308 * @param[in] which_tab codebook purpose (IVI_MB_HUFF or IVI_BLK_HUFF)
309 * @param[out] huff_tab pointer to the descriptor of the selected table
310 * @param[in] avctx AVCodecContext pointer
311 * @return zero on success, negative value otherwise
312 */
313int ff_ivi_dec_huff_desc(GetBitContext *gb, int desc_coded, int which_tab,
314 IVIHuffTab *huff_tab, AVCodecContext *avctx);
315
316/**
317 * Initialize planes (prepares descriptors, allocates buffers etc).
318 *
319 * @param[in,out] planes pointer to the array of the plane descriptors
320 * @param[in] cfg pointer to the ivi_pic_config structure describing picture layout
321 * @param[in] is_indeo4 flag signalling if it is Indeo 4 or not
322 * @return result code: 0 - OK
323 */
325 const IVIPicConfig *cfg, int is_indeo4);
326
327/**
328 * Initialize tile and macroblock descriptors.
329 *
330 * @param[in,out] planes pointer to the array of the plane descriptors
331 * @param[in] tile_width tile width
332 * @param[in] tile_height tile height
333 * @return result code: 0 - OK
334 */
335int ff_ivi_init_tiles(IVIPlaneDesc *planes, int tile_width, int tile_height);
336
338 int *got_frame, AVPacket *avpkt);
340
341#endif /* AVCODEC_IVI_H */
static FILE * out
static AVFormatContext * ctx
int32_t
Libavcodec external API header.
static int FUNC tile(CodedBitstreamContext *ctx, RWContext *rw, APVRawTile *current, int tile_idx, uint32_t tile_size)
#define flags(name, subs,...)
Definition cbs_h264.c:74
static CheckasmConfig cfg
Definition checkasm.c:74
bitstream reader API header.
static av_always_inline void mv_scale(Mv *dst, const Mv *src, int td, int tb)
Definition mvs.c:116
const uint8_t ff_ivi_direct_scan_4x4[16]
Definition ivi.c:1257
const RVMapDesc ff_ivi_rvmap_tabs[9]
Run-value (RLE) tables.
Definition ivi.c:1265
const uint8_t ff_ivi_horizontal_scan_8x8[64]
Definition ivi.c:1246
const uint8_t ff_ivi_vertical_scan_8x8[64]
Scan patterns shared between indeo4 and indeo5.
Definition ivi.c:1235
static int ivi_pic_config_cmp(IVIPicConfig *str1, IVIPicConfig *str2)
compare some properties of two pictures
Definition ivi.h:273
int ff_ivi_init_tiles(IVIPlaneDesc *planes, int tile_width, int tile_height)
Initialize tile and macroblock descriptors.
Definition ivi.c:396
int ff_ivi_decode_frame(AVCodecContext *avctx, AVFrame *data, int *got_frame, AVPacket *avpkt)
Definition ivi.c:1071
int ff_ivi_decode_close(AVCodecContext *avctx)
Close Indeo5 decoder and clean up its context.
Definition ivi.c:1214
int ff_ivi_init_planes(AVCodecContext *avctx, IVIPlaneDesc *planes, const IVIPicConfig *cfg, int is_indeo4)
Initialize planes (prepares descriptors, allocates buffers etc).
Definition ivi.c:292
static int ivi_scale_mv(int mv, int mv_scale)
scale motion vector
Definition ivi.h:292
@ IVI_BLK_HUFF
Huffman table is used for coding blocks.
Definition ivi.h:74
@ IVI_MB_HUFF
Huffman table is used for coding macroblocks.
Definition ivi.h:73
@ IVI4_FRAMETYPE_INTER_NOREF
droppable P-frame
Definition ivi.h:44
@ IVI4_FRAMETYPE_NULL_LAST
empty frame with no data
Definition ivi.h:46
@ IVI4_FRAMETYPE_INTER
non-droppable P-frame
Definition ivi.h:42
@ IVI4_FRAMETYPE_BIDIR
bidirectional frame
Definition ivi.h:43
@ IVI4_FRAMETYPE_INTRA1
intra frame with slightly different bitstream coding
Definition ivi.h:41
@ IVI4_FRAMETYPE_NULL_FIRST
empty frame with no data
Definition ivi.h:45
@ IVI4_FRAMETYPE_INTRA
Definition ivi.h:40
void InvTransformPtr(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags)
Declare inverse transform function types.
Definition ivi.h:89
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.c:211
void ff_ivi_init_static_vlc(void)
Initialize static codes used for macroblock and block decoding.
Definition ivi.c:179
void DCTransformPtr(const int32_t *in, int16_t *out, ptrdiff_t pitch, int blk_size)
Definition ivi.h:90
static const int8_t mv[256][2]
Definition 4xm.c:81
static const struct @257111027162314367033347246032313251342043035002 planes[]
const char data[16]
Definition mxf.c:149
main external API structure.
Definition avcodec.h:443
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
uint32_t lock_word
Definition ivi.h:248
uint8_t uses_haar
Definition ivi.h:254
uint8_t frame_flags
Definition ivi.h:225
uint16_t checksum
frame checksum
Definition ivi.h:226
int is_scalable
Definition ivi.h:220
int dst_buf
buffer index for the currently decoded frame
Definition ivi.h:232
int buf_switch
used to switch between three buffers
Definition ivi.h:231
int is_indeo4
Definition ivi.h:266
int(* decode_band_hdr)(struct IVI45DecContext *ctx, IVIBandDesc *band, AVCodecContext *avctx)
Definition ivi.h:258
int show_indeo4_info
Definition ivi.h:250
int(* decode_pic_hdr)(struct IVI45DecContext *ctx, AVCodecContext *avctx)
Definition ivi.h:257
uint8_t unknown1
Definition ivi.h:244
uint32_t frame_num
Definition ivi.h:216
IVIPlaneDesc planes[3]
color planes
Definition ivi.h:229
RVMapDesc rvmap_tabs[9]
local corrected copy of the static rvmap tables
Definition ivi.h:214
uint8_t in_q
flag for explicitly stored quantiser delta
Definition ivi.h:242
int inter_scal
signals a sequence of scalable inter frames
Definition ivi.h:222
int prev_frame_type
frame type of the previous frame
Definition ivi.h:218
uint8_t has_transp
transparency mode status: 1 - enabled
Definition ivi.h:252
IVIHuffTab mb_vlc
current macroblock table descriptor
Definition ivi.h:237
int ref2_buf
temporal storage for switching buffers
Definition ivi.h:234
int frame_type
Definition ivi.h:217
int got_p_frame
Definition ivi.h:269
const uint8_t * frame_data
input frame data pointer
Definition ivi.h:221
uint32_t frame_size
frame size in bytes
Definition ivi.h:223
AVFrame * p_frame
Definition ivi.h:268
int(* decode_mb_info)(struct IVI45DecContext *ctx, IVIBandDesc *band, IVITile *tile, AVCodecContext *avctx)
Definition ivi.h:259
int(* is_nonnull_frame)(struct IVI45DecContext *ctx)
Definition ivi.h:261
uint8_t uses_tiling
Definition ivi.h:253
int b_ref_buf
second reference frame buffer index
Definition ivi.h:235
uint8_t gop_flags
Definition ivi.h:247
uint32_t pic_hdr_size
picture header size in bytes
Definition ivi.h:224
uint8_t pic_glob_quant
Definition ivi.h:243
uint8_t uses_fullpel
Definition ivi.h:255
uint32_t data_size
size of the frame data in bytes from picture header
Definition ivi.h:219
uint16_t gop_hdr_size
Definition ivi.h:246
uint8_t has_b_frames
Definition ivi.h:251
uint8_t in_imf
Definition ivi.h:241
int ref_buf
inter frame reference buffer index
Definition ivi.h:233
void(* switch_buffers)(struct IVI45DecContext *ctx)
Definition ivi.h:260
IVIPicConfig pic_conf
Definition ivi.h:228
uint8_t rvmap_sel
Definition ivi.h:240
GetBitContext gb
Definition ivi.h:213
int gop_invalid
Definition ivi.h:263
IVIHuffTab blk_vlc
current block table descriptor
Definition ivi.h:238
int buf_invalid[4]
Definition ivi.h:264
information for Indeo wavelet band
Definition ivi.h:143
const uint8_t * inter_scale
quantization coefficient for inter blocks
Definition ivi.h:186
int inherit_qdelta
tells if quantiser delta is inherited from reference macroblock
Definition ivi.h:161
const uint8_t * intra_scale
quantization coefficient for intra blocks
Definition ivi.h:185
int inherit_mv
tells if motion vector is inherited from reference macroblock
Definition ivi.h:160
int blk_size
block size
Definition ivi.h:158
int width
Definition ivi.h:146
int is_2d_trans
1 indicates that the two-dimensional inverse transform is used
Definition ivi.h:179
int16_t * b_ref_buf
pointer to the second reference frame buffer (for motion compensation)
Definition ivi.h:153
int data_size
size of the band data
Definition ivi.h:150
DCTransformPtr * dc_transform
Definition ivi.h:178
int quant_mat
dequant matrix index
Definition ivi.h:163
int qdelta_present
tells if Qdelta signal is present in the bitstream (Indeo5 only)
Definition ivi.h:162
int band_num
band number
Definition ivi.h:145
const uint16_t * inter_base
quantization matrix for inter blocks
Definition ivi.h:184
IVIHuffTab blk_vlc
vlc table for decoding block data
Definition ivi.h:168
int16_t * ref_buf
pointer to the reference frame buffer (for motion compensation)
Definition ivi.h:152
int bufsize
band buffer size in bytes
Definition ivi.h:182
int16_t * buf
pointer to the output buffer for this band
Definition ivi.h:151
const uint8_t * data_ptr
ptr to the first byte of the band data
Definition ivi.h:149
InvTransformPtr * inv_transform
Definition ivi.h:176
int scan_size
size of the scantable
Definition ivi.h:166
int num_tiles
number of tiles in this band
Definition ivi.h:174
int num_corr
number of correction entries
Definition ivi.h:170
int mb_size
macroblock size
Definition ivi.h:157
int is_halfpel
precision of the motion compensation: 0 - fullpel, 1 - halfpel
Definition ivi.h:159
const uint16_t * intra_base
quantization matrix for intra blocks
Definition ivi.h:183
int height
Definition ivi.h:147
uint8_t corr[61 *2]
rvmap correction pairs
Definition ivi.h:171
const uint8_t * scan
ptr to the scan pattern
Definition ivi.h:165
int checksum_present
Definition ivi.h:181
RVMapDesc * rv_map
ptr to the RLE table for this band
Definition ivi.h:173
int aheight
aligned band height
Definition ivi.h:148
int transform_size
Definition ivi.h:177
int glob_quant
quant base for this band
Definition ivi.h:164
int rvmap_sel
rvmap table selector
Definition ivi.h:172
int32_t checksum
for debug purposes
Definition ivi.h:180
IVITile * tiles
array of tile descriptors
Definition ivi.h:175
int is_empty
= 1 if this band doesn't contain any data
Definition ivi.h:156
int16_t * bufs[4]
array of pointers to the band buffers
Definition ivi.h:154
int plane
plane number this band belongs to
Definition ivi.h:144
ptrdiff_t pitch
pitch associated with the buffers above
Definition ivi.h:155
huffman codebook descriptor
Definition ivi.h:55
int32_t num_rows
Definition ivi.h:56
uint8_t xbits[16]
Definition ivi.h:57
macroblock/block huffman table descriptor
Definition ivi.h:63
VLC cust_tab
vlc table for custom codebook
Definition ivi.h:69
int32_t tab_sel
index of one of the predefined tables, or "7" for custom one
Definition ivi.h:64
VLC * tab
pointer to the table associated with tab_sel
Definition ivi.h:65
IVIHuffDesc cust_desc
custom Huffman codebook descriptor
Definition ivi.h:68
information for Indeo macroblock (16x16, 8x8 or 4x4)
Definition ivi.h:109
uint8_t type
macroblock type: 0 - INTRA, 1 - INTER
Definition ivi.h:113
uint32_t buf_offs
address in the output buffer for this mb
Definition ivi.h:112
uint8_t cbp
coded block pattern
Definition ivi.h:114
int8_t mv_y
motion vector (y component)
Definition ivi.h:117
int8_t q_delta
quant delta
Definition ivi.h:115
int8_t b_mv_x
second motion vector (x component)
Definition ivi.h:118
int8_t b_mv_y
second motion vector (y component)
Definition ivi.h:119
int16_t xpos
Definition ivi.h:110
int8_t mv_x
motion vector (x component)
Definition ivi.h:116
int16_t ypos
Definition ivi.h:111
uint16_t pic_width
Definition ivi.h:202
uint16_t pic_height
Definition ivi.h:203
uint16_t tile_width
Definition ivi.h:206
uint8_t chroma_bands
Definition ivi.h:209
uint16_t chroma_height
Definition ivi.h:205
uint8_t luma_bands
Definition ivi.h:208
uint16_t chroma_width
Definition ivi.h:204
uint16_t tile_height
Definition ivi.h:207
color plane (luma or chroma) information
Definition ivi.h:193
uint8_t num_bands
number of bands this plane subdivided into
Definition ivi.h:196
IVIBandDesc * bands
array of band descriptors
Definition ivi.h:197
uint16_t width
Definition ivi.h:194
uint16_t height
Definition ivi.h:195
information for Indeo tile
Definition ivi.h:126
int is_empty
= 1 if this tile doesn't contain any data
Definition ivi.h:132
int mb_size
Definition ivi.h:131
int width
Definition ivi.h:129
IVIMbInfo * ref_mbs
ptr to the macroblock descriptors of the reference tile
Definition ivi.h:136
IVIMbInfo * mbs
array of macroblock descriptors
Definition ivi.h:135
int ypos
Definition ivi.h:128
int xpos
Definition ivi.h:127
int data_size
size of the data in bytes
Definition ivi.h:133
int num_MBs
number of macroblocks in this tile
Definition ivi.h:134
int height
Definition ivi.h:130
run-value (RLE) table descriptor
Definition ivi.h:96
uint8_t eob_sym
end of block symbol
Definition ivi.h:97
uint8_t esc_sym
escape symbol
Definition ivi.h:98
int8_t valtab[256]
Definition ivi.h:100
uint8_t runtab[256]
Definition ivi.h:99
Definition vlc.h:50