You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

346 lines
13KB

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