ivi.h 13 KB

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