2 * common functions for Indeo Video Interactive codecs (Indeo4 and Indeo5)
4 * Copyright (c) 2009 Maxim Poliakovski
6 * This file is part of FFmpeg.
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.
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.
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
25 * This file contains structures and macros shared by both Indeo4 and
37 * Indeo 4 frame types.
40 IVI4_FRAMETYPE_INTRA = 0,
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
49 #define IVI_VLC_BITS 13 ///< max number of bits of the ivi's huffman codes
50 #define IVI5_IS_PROTECTED 0x20
53 * huffman codebook descriptor
55 typedef struct IVIHuffDesc {
61 * macroblock/block huffman table descriptor
63 typedef struct IVIHuffTab {
64 int32_t tab_sel; /// index of one of the predefined tables
65 /// or "7" for custom one
66 VLC *tab; /// pointer to the table associated with tab_sel
68 /// the following are used only when tab_sel == 7
69 IVIHuffDesc cust_desc; /// custom Huffman codebook descriptor
70 VLC cust_tab; /// vlc table for custom codebook
74 IVI_MB_HUFF = 0, /// Huffman table is used for coding macroblocks
75 IVI_BLK_HUFF = 1 /// Huffman table is used for coding blocks
80 * Common scan patterns (defined in ivi_common.c)
82 extern const uint8_t ff_ivi_vertical_scan_8x8[64];
83 extern const uint8_t ff_ivi_horizontal_scan_8x8[64];
84 extern const uint8_t ff_ivi_direct_scan_4x4[16];
88 * Declare inverse transform function types
90 typedef void (InvTransformPtr)(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags);
91 typedef void (DCTransformPtr) (const int32_t *in, int16_t *out, ptrdiff_t pitch, int blk_size);
95 * run-value (RLE) table descriptor
97 typedef struct RVMapDesc {
98 uint8_t eob_sym; ///< end of block symbol
99 uint8_t esc_sym; ///< escape symbol
104 extern const RVMapDesc ff_ivi_rvmap_tabs[9];
108 * information for Indeo macroblock (16x16, 8x8 or 4x4)
110 typedef struct IVIMbInfo {
113 uint32_t buf_offs; ///< address in the output buffer for this mb
114 uint8_t type; ///< macroblock type: 0 - INTRA, 1 - INTER
115 uint8_t cbp; ///< coded block pattern
116 int8_t q_delta; ///< quant delta
117 int8_t mv_x; ///< motion vector (x component)
118 int8_t mv_y; ///< motion vector (y component)
119 int8_t b_mv_x; ///< second motion vector (x component)
120 int8_t b_mv_y; ///< second motion vector (y component)
125 * information for Indeo tile
127 typedef struct IVITile {
133 int is_empty; ///< = 1 if this tile doesn't contain any data
134 int data_size; ///< size of the data in bytes
135 int num_MBs; ///< number of macroblocks in this tile
136 IVIMbInfo *mbs; ///< array of macroblock descriptors
137 IVIMbInfo *ref_mbs; ///< ptr to the macroblock descriptors of the reference tile
142 * information for Indeo wavelet band
144 typedef struct IVIBandDesc {
145 int plane; ///< plane number this band belongs to
146 int band_num; ///< band number
149 int aheight; ///< aligned band height
150 const uint8_t *data_ptr; ///< ptr to the first byte of the band data
151 int data_size; ///< size of the band data
152 int16_t *buf; ///< pointer to the output buffer for this band
153 int16_t *ref_buf; ///< pointer to the reference frame buffer (for motion compensation)
154 int16_t *b_ref_buf; ///< pointer to the second reference frame buffer (for motion compensation)
155 int16_t *bufs[4]; ///< array of pointers to the band buffers
156 ptrdiff_t pitch; ///< pitch associated with the buffers above
157 int is_empty; ///< = 1 if this band doesn't contain any data
158 int mb_size; ///< macroblock size
159 int blk_size; ///< block size
160 int is_halfpel; ///< precision of the motion compensation: 0 - fullpel, 1 - halfpel
161 int inherit_mv; ///< tells if motion vector is inherited from reference macroblock
162 int inherit_qdelta; ///< tells if quantiser delta is inherited from reference macroblock
163 int qdelta_present; ///< tells if Qdelta signal is present in the bitstream (Indeo5 only)
164 int quant_mat; ///< dequant matrix index
165 int glob_quant; ///< quant base for this band
166 const uint8_t *scan; ///< ptr to the scan pattern
167 int scan_size; ///< size of the scantable
169 IVIHuffTab blk_vlc; ///< vlc table for decoding block data
171 int num_corr; ///< number of correction entries
172 uint8_t corr[61*2]; ///< rvmap correction pairs
173 int rvmap_sel; ///< rvmap table selector
174 RVMapDesc *rv_map; ///< ptr to the RLE table for this band
175 int num_tiles; ///< number of tiles in this band
176 IVITile *tiles; ///< array of tile descriptors
177 InvTransformPtr *inv_transform;
179 DCTransformPtr *dc_transform;
180 int is_2d_trans; ///< 1 indicates that the two-dimensional inverse transform is used
181 int32_t checksum; ///< for debug purposes
182 int checksum_present;
183 int bufsize; ///< band buffer size in bytes
184 const uint16_t *intra_base; ///< quantization matrix for intra blocks
185 const uint16_t *inter_base; ///< quantization matrix for inter blocks
186 const uint8_t *intra_scale; ///< quantization coefficient for intra blocks
187 const uint8_t *inter_scale; ///< quantization coefficient for inter blocks
192 * color plane (luma or chroma) information
194 typedef struct IVIPlaneDesc {
197 uint8_t num_bands; ///< number of bands this plane subdivided into
198 IVIBandDesc *bands; ///< array of band descriptors
202 typedef struct IVIPicConfig {
205 uint16_t chroma_width;
206 uint16_t chroma_height;
208 uint16_t tile_height;
210 uint8_t chroma_bands;
213 typedef struct IVI45DecContext {
215 RVMapDesc rvmap_tabs[9]; ///< local corrected copy of the static rvmap tables
219 int prev_frame_type; ///< frame type of the previous frame
220 uint32_t data_size; ///< size of the frame data in bytes from picture header
222 const uint8_t *frame_data; ///< input frame data pointer
223 int inter_scal; ///< signals a sequence of scalable inter frames
224 uint32_t frame_size; ///< frame size in bytes
225 uint32_t pic_hdr_size; ///< picture header size in bytes
227 uint16_t checksum; ///< frame checksum
229 IVIPicConfig pic_conf;
230 IVIPlaneDesc planes[3]; ///< color planes
232 int buf_switch; ///< used to switch between three buffers
233 int dst_buf; ///< buffer index for the currently decoded frame
234 int ref_buf; ///< inter frame reference buffer index
235 int ref2_buf; ///< temporal storage for switching buffers
236 int b_ref_buf; ///< second reference frame buffer index
238 IVIHuffTab mb_vlc; ///< current macroblock table descriptor
239 IVIHuffTab blk_vlc; ///< current block table descriptor
243 uint8_t in_q; ///< flag for explicitly stored quantiser delta
244 uint8_t pic_glob_quant;
247 uint16_t gop_hdr_size;
251 int show_indeo4_info;
252 uint8_t has_b_frames;
253 uint8_t has_transp; ///< transparency mode status: 1 - enabled
256 uint8_t uses_fullpel;
258 int (*decode_pic_hdr) (struct IVI45DecContext *ctx, AVCodecContext *avctx);
259 int (*decode_band_hdr) (struct IVI45DecContext *ctx, IVIBandDesc *band, AVCodecContext *avctx);
260 int (*decode_mb_info) (struct IVI45DecContext *ctx, IVIBandDesc *band, IVITile *tile, AVCodecContext *avctx);
261 void (*switch_buffers) (struct IVI45DecContext *ctx);
262 int (*is_nonnull_frame)(struct IVI45DecContext *ctx);
273 /** compare some properties of two pictures */
274 static inline int ivi_pic_config_cmp(IVIPicConfig *str1, IVIPicConfig *str2)
276 return str1->pic_width != str2->pic_width || str1->pic_height != str2->pic_height ||
277 str1->chroma_width != str2->chroma_width || str1->chroma_height != str2->chroma_height ||
278 str1->tile_width != str2->tile_width || str1->tile_height != str2->tile_height ||
279 str1->luma_bands != str2->luma_bands || str1->chroma_bands != str2->chroma_bands;
282 /** calculate number of tiles in a stride */
283 #define IVI_NUM_TILES(stride, tile_size) (((stride) + (tile_size) - 1) / (tile_size))
285 /** calculate number of macroblocks in a tile */
286 #define IVI_MBs_PER_TILE(tile_width, tile_height, mb_size) \
287 ((((tile_width) + (mb_size) - 1) / (mb_size)) * (((tile_height) + (mb_size) - 1) / (mb_size)))
289 /** convert unsigned values into signed ones (the sign is in the LSB) */
290 #define IVI_TOSIGNED(val) (-(((val) >> 1) ^ -((val) & 1)))
292 /** scale motion vector */
293 static inline int ivi_scale_mv(int mv, int mv_scale)
295 return (mv + (mv > 0) + (mv_scale - 1)) >> mv_scale;
299 * Initialize static codes used for macroblock and block decoding.
301 void ff_ivi_init_static_vlc(void);
304 * Decode a huffman codebook descriptor from the bitstream
305 * and select specified huffman table.
307 * @param[in,out] gb the GetBit context
308 * @param[in] desc_coded flag signalling if table descriptor was coded
309 * @param[in] which_tab codebook purpose (IVI_MB_HUFF or IVI_BLK_HUFF)
310 * @param[out] huff_tab pointer to the descriptor of the selected table
311 * @param[in] avctx AVCodecContext pointer
312 * @return zero on success, negative value otherwise
314 int ff_ivi_dec_huff_desc(GetBitContext *gb, int desc_coded, int which_tab,
315 IVIHuffTab *huff_tab, AVCodecContext *avctx);
318 * Initialize planes (prepares descriptors, allocates buffers etc).
320 * @param[in,out] planes pointer to the array of the plane descriptors
321 * @param[in] cfg pointer to the ivi_pic_config structure describing picture layout
322 * @param[in] is_indeo4 flag signalling if it is Indeo 4 or not
323 * @return result code: 0 - OK
325 int ff_ivi_init_planes(AVCodecContext *avctx, IVIPlaneDesc *planes,
326 const IVIPicConfig *cfg, int is_indeo4);
329 * Initialize tile and macroblock descriptors.
331 * @param[in,out] planes pointer to the array of the plane descriptors
332 * @param[in] tile_width tile width
333 * @param[in] tile_height tile height
334 * @return result code: 0 - OK
336 int ff_ivi_init_tiles(IVIPlaneDesc *planes, int tile_width, int tile_height);
338 int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
340 int ff_ivi_decode_close(AVCodecContext *avctx);
342 #endif /* AVCODEC_IVI_H */