]> git.sesse.net Git - ffmpeg/blob - libavcodec/ivi_common.h
Remove outdated comment.
[ffmpeg] / libavcodec / ivi_common.h
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 libavcodec/ivi_common.h
25  * This file contains structures and macros shared by both Indeo4 and
26  * Indeo5 decoders.
27  */
28
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_DEBUG 0
37
38 #define IVI_VLC_BITS 13 ///< max number of bits of the ivi's huffman codes
39
40 /**
41  *  huffman codebook descriptor
42  */
43 typedef struct {
44     int32_t     num_rows;
45     uint8_t     xbits[16];
46 } IVIHuffDesc;
47
48 extern const IVIHuffDesc ff_ivi_mb_huff_desc[8];  ///< static macroblock huffman tables
49 extern const IVIHuffDesc ff_ivi_blk_huff_desc[8]; ///< static block huffman tables
50
51
52 /**
53  *  run-value (RLE) table descriptor
54  */
55 typedef struct {
56     uint8_t     eob_sym; ///< end of block symbol
57     uint8_t     esc_sym; ///< escape symbol
58     uint8_t     runtab[256];
59     int8_t      valtab[256];
60 } RVMapDesc;
61
62 extern const RVMapDesc ff_ivi_rvmap_tabs[9];
63
64
65 /**
66  *  information for Indeo macroblock (16x16, 8x8 or 4x4)
67  */
68 typedef struct {
69     int16_t     xpos;
70     int16_t     ypos;
71     uint32_t    buf_offs; ///< address in the output buffer for this mb
72     uint8_t     type;     ///< macroblock type: 0 - INTRA, 1 - INTER
73     uint8_t     cbp;      ///< coded block pattern
74     uint8_t     q_delta;  ///< quant delta
75     int8_t      mv_x;     ///< motion vector (x component)
76     int8_t      mv_y;     ///< motion vector (y component)
77 } IVIMbInfo;
78
79
80 /**
81  *  information for Indeo tile
82  */
83 typedef struct {
84     int         xpos;
85     int         ypos;
86     int         width;
87     int         height;
88     int         is_empty;  ///< = 1 if this tile doesn't contain any data
89     int         data_size; ///< size of the data in bytes
90     int         num_MBs;   ///< number of macroblocks in this tile
91     IVIMbInfo   *mbs;      ///< array of macroblock descriptors
92     IVIMbInfo   *ref_mbs;  ///< ptr to the macroblock descriptors of the reference tile
93 } IVITile;
94
95
96 /**
97  *  information for Indeo wavelet band
98  */
99 typedef struct {
100     int             plane;          ///< plane number this band belongs to
101     int             band_num;       ///< band number
102     int             width;
103     int             height;
104     const uint8_t   *data_ptr;      ///< ptr to the first byte of the band data
105     int             data_size;      ///< size of the band data
106     int16_t         *buf;           ///< pointer to the output buffer for this band
107     int16_t         *ref_buf;       ///< pointer to the reference frame buffer (for motion compensation)
108     int16_t         *bufs[3];       ///< array of pointers to the band buffers
109     int             pitch;          ///< pitch associated with the buffers above
110     int             is_empty;       ///< = 1 if this band doesn't contain any data
111     int             mb_size;        ///< macroblock size
112     int             blk_size;       ///< block size
113     int             is_halfpel;     ///< precision of the motion compensation: 0 - fullpel, 1 - halfpel
114     int             inherit_mv;     ///< tells if motion vector is inherited from reference macroblock
115     int             inherit_qdelta; ///< tells if quantiser delta is inherited from reference macroblock
116     int             qdelta_present; ///< tells if Qdelta signal is present in the bitstream (Indeo5 only)
117     int             quant_mat;      ///< dequant matrix index
118     int             glob_quant;     ///< quant base for this band
119     const uint8_t   *scan;          ///< ptr to the scan pattern
120
121     int             huff_sel;       ///< huffman table for this band
122     IVIHuffDesc     huff_desc;      ///< table descriptor associated with the selector above
123     VLC             *blk_vlc;       ///< ptr to the vlc table for decoding block data
124     VLC             blk_vlc_cust;   ///< custom block vlc table
125
126     uint16_t        *dequant_intra; ///< ptr to dequant tables for intra blocks
127     uint16_t        *dequant_inter; ///< ptr dequant tables for inter blocks
128     int             num_corr;       ///< number of correction entries
129     uint8_t         corr[61*2];     ///< rvmap correction pairs
130     int             rvmap_sel;      ///< rvmap table selector
131     RVMapDesc       *rv_map;        ///< ptr to the RLE table for this band
132     int             num_tiles;      ///< number of tiles in this band
133     IVITile         *tiles;         ///< array of tile descriptors
134     void (*inv_transform)(const int32_t *in, int16_t *out, uint32_t pitch, const uint8_t *flags); ///< inverse transform function pointer
135     void (*dc_transform) (const int32_t *in, int16_t *out, uint32_t pitch, int blk_size);   ///< dc transform function pointer, it may be NULL
136     int             is_2d_trans;    ///< 1 indicates that the two-dimensional inverse transform is used
137     int32_t         checksum;       ///< for debug purposes
138     int             checksum_present;
139     int             bufsize;        ///< band buffer size in bytes
140     const uint8_t   *intra_base;    ///< quantization matrix for intra blocks
141     const uint8_t   *inter_base;    ///< quantization matrix for inter blocks
142     const uint8_t   *intra_scale;   ///< quantization coefficient for intra blocks
143     const uint8_t   *inter_scale;   ///< quantization coefficient for inter blocks
144 } IVIBandDesc;
145
146
147 /**
148  *  color plane (luma or chroma) information
149  */
150 typedef struct {
151     uint16_t    width;
152     uint16_t    height;
153     uint8_t     num_bands;  ///< number of bands this plane subdivided into
154     IVIBandDesc *bands;     ///< array of band descriptors
155 } IVIPlaneDesc;
156
157
158 typedef struct {
159     uint16_t    pic_width;
160     uint16_t    pic_height;
161     uint16_t    chroma_width;
162     uint16_t    chroma_height;
163     uint16_t    tile_width;
164     uint16_t    tile_height;
165     uint8_t     luma_bands;
166     uint8_t     chroma_bands;
167 } IVIPicConfig;
168
169 /** compares some properties of two pictures */
170 static inline int ivi_pic_config_cmp(IVIPicConfig *str1, IVIPicConfig *str2)
171 {
172     return (str1->pic_width    != str2->pic_width    || str1->pic_height    != str2->pic_height    ||
173             str1->chroma_width != str2->chroma_width || str1->chroma_height != str2->chroma_height ||
174             str1->tile_width   != str2->tile_width   || str1->tile_height   != str2->tile_height   ||
175             str1->luma_bands   != str2->luma_bands   || str1->chroma_bands  != str2->chroma_bands);
176 }
177
178 /** calculate number of tiles in a stride */
179 #define IVI_NUM_TILES(stride, tile_size) (((stride) + (tile_size) - 1) / (tile_size))
180
181 /** calculate number of macroblocks in a tile */
182 #define IVI_MBs_PER_TILE(tile_width, tile_height, mb_size) \
183     ((((tile_width) + (mb_size) - 1) / (mb_size)) * (((tile_height) + (mb_size) - 1) / (mb_size)))
184
185 /** convert unsigned values into signed ones (the sign is in the LSB) */
186 #define IVI_TOSIGNED(val) (-(((val) >> 1) ^ -((val) & 1)))
187
188 /** scales motion vector */
189 static inline int ivi_scale_mv(int mv, int mv_scale)
190 {
191     return (mv + (mv > 0) + (mv_scale - 1)) >> mv_scale;
192 }
193
194 /**
195  *  Generates a huffman codebook from the given descriptor
196  *  and converts it into the FFmpeg VLC table.
197  *
198  *  @param cb   [in]  pointer to codebook descriptor
199  *  @param vlc  [out] where to place the generated VLC table
200  *  @param flag [in]  flag: 1 - for static or 0 for dynamic tables
201  *  @return     result code: 0 - OK, -1 = error (invalid codebook descriptor)
202  */
203 int  ff_ivi_create_huff_from_desc(const IVIHuffDesc *cb, VLC *vlc, int flag);
204
205 /**
206  *  Decodes a huffman codebook descriptor from the bitstream.
207  *
208  *  @param gb   [in,out] the GetBit context
209  *  @param desc [out] ptr to descriptor to be filled with data
210  *  @return     selector indicating huffman table:
211  *              (0...6 - predefined, 7 - custom one supplied with the bitstream)
212  */
213 int  ff_ivi_dec_huff_desc(GetBitContext *gb, IVIHuffDesc *desc);
214
215 /**
216  *  Compares two huffman codebook descriptors.
217  *
218  *  @param desc1    [in] ptr to the 1st descriptor to compare
219  *  @param desc2    [in] ptr to the 2nd descriptor to compare
220  *  @return         comparison result: 0 - equal, 1 - not equal
221  */
222 int  ff_ivi_huff_desc_cmp(const IVIHuffDesc *desc1, const IVIHuffDesc *desc2);
223
224 /**
225  *  Copies huffman codebook descriptors.
226  *
227  *  @param dst  [out] ptr to the destination descriptor
228  *  @param src  [in]  ptr to the source descriptor
229  */
230 void ff_ivi_huff_desc_copy(IVIHuffDesc *dst, const IVIHuffDesc *src);
231
232 /**
233  *  Initializes planes (prepares descriptors, allocates buffers etc).
234  *
235  *  @param planes       [in,out] pointer to the array of the plane descriptors
236  *  @param cfg          [in] pointer to the ivi_pic_config structure describing picture layout
237  *  @return             result code: 0 - OK
238  */
239 int  ff_ivi_init_planes(IVIPlaneDesc *planes, const IVIPicConfig *cfg);
240
241 /**
242  *  Frees planes, bands and macroblocks buffers.
243  *
244  *  @param planes       [in] pointer to the array of the plane descriptors
245  */
246 void ff_ivi_free_buffers(IVIPlaneDesc *planes);
247
248 /**
249  *  Initializes tile and macroblock descriptors.
250  *
251  *  @param planes       [in,out] pointer to the array of the plane descriptors
252  *  @param tile_width   [in]     tile width
253  *  @param tile_height  [in]     tile height
254  *  @return             result code: 0 - OK
255  */
256 int  ff_ivi_init_tiles(IVIPlaneDesc *planes, int tile_width, int tile_height);
257
258 /**
259  *  Decodes size of the tile data.
260  *  The size is stored as a variable-length field having the following format:
261  *  if (tile_data_size < 255) than this field is only one byte long
262  *  if (tile_data_size >= 255) than this field four is byte long: 0xFF X1 X2 X3
263  *  where X1-X3 is size of the tile data
264  *
265  *  @param gb   [in,out] the GetBit context
266  *  @return     size of the tile data in bytes
267  */
268 int  ff_ivi_dec_tile_data_size(GetBitContext *gb);
269
270 /**
271  *  Decodes block data:
272  *  extracts huffman-coded transform coefficients from the bitstream,
273  *  dequantizes them, applies inverse transform and motion compensation
274  *  in order to reconstruct the picture.
275  *
276  *  @param gb   [in,out] the GetBit context
277  *  @param band [in]     pointer to the band descriptor
278  *  @param tile [in]     pointer to the tile descriptor
279  *  @return     result code: 0 - OK, -1 = error (corrupted blocks data)
280  */
281 int  ff_ivi_decode_blocks(GetBitContext *gb, IVIBandDesc *band, IVITile *tile);
282
283 /**
284  *  Handles empty tiles by performing data copying and motion
285  *  compensation respectively.
286  *
287  *  @param avctx    [in] ptr to the AVCodecContext
288  *  @param band     [in] pointer to the band descriptor
289  *  @param tile     [in] pointer to the tile descriptor
290  *  @param mv_scale [in] scaling factor for motion vectors
291  */
292 void ff_ivi_process_empty_tile(AVCodecContext *avctx, IVIBandDesc *band,
293                                IVITile *tile, int32_t mv_scale);
294
295 /**
296  *  Converts and outputs the current plane.
297  *  This conversion is done by adding back the bias value of 128
298  *  (subtracted in the encoder) and clipping the result.
299  *
300  *  @param plane        [in]  pointer to the descriptor of the plane being processed
301  *  @param dst          [out] pointer to the buffer receiving converted pixels
302  *  @param dst_pitch    [in]  pitch for moving to the next y line
303  */
304 void ff_ivi_output_plane(IVIPlaneDesc *plane, uint8_t *dst, int dst_pitch);
305
306 #if IVI_DEBUG
307 /**
308  *  Calculates band checksum from band data.
309  */
310 uint16_t ivi_calc_band_checksum (IVIBandDesc *band);
311
312 /**
313  *  Verifies that band data lies in range.
314  */
315 int ivi_check_band (IVIBandDesc *band, const uint8_t *ref, int pitch);
316 #endif
317
318 #endif /* AVCODEC_IVI_COMMON_H */