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