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.

408 lines
15KB

  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_COMMON_H
  28. #define AVCODEC_IVI_COMMON_H
  29. #include "avcodec.h"
  30. #include "get_bits.h"
  31. #include <stdint.h>
  32. #define IVI_VLC_BITS 13 ///< max number of bits of the ivi's huffman codes
  33. #define IVI4_STREAM_ANALYSER 0
  34. #define IVI5_IS_PROTECTED 0x20
  35. /**
  36. * huffman codebook descriptor
  37. */
  38. typedef struct {
  39. int32_t num_rows;
  40. uint8_t xbits[16];
  41. } IVIHuffDesc;
  42. /**
  43. * macroblock/block huffman table descriptor
  44. */
  45. typedef struct {
  46. int32_t tab_sel; /// index of one of the predefined tables
  47. /// or "7" for custom one
  48. VLC *tab; /// pointer to the table associated with tab_sel
  49. /// the following are used only when tab_sel == 7
  50. IVIHuffDesc cust_desc; /// custom Huffman codebook descriptor
  51. VLC cust_tab; /// vlc table for custom codebook
  52. } IVIHuffTab;
  53. enum {
  54. IVI_MB_HUFF = 0, /// Huffman table is used for coding macroblocks
  55. IVI_BLK_HUFF = 1 /// Huffman table is used for coding blocks
  56. };
  57. extern VLC ff_ivi_mb_vlc_tabs [8]; ///< static macroblock Huffman tables
  58. extern VLC ff_ivi_blk_vlc_tabs[8]; ///< static block Huffman tables
  59. /**
  60. * Common scan patterns (defined in ivi_common.c)
  61. */
  62. extern const uint8_t ff_ivi_vertical_scan_8x8[64];
  63. extern const uint8_t ff_ivi_horizontal_scan_8x8[64];
  64. extern const uint8_t ff_ivi_direct_scan_4x4[16];
  65. /**
  66. * Declare inverse transform function types
  67. */
  68. typedef void (InvTransformPtr)(const int32_t *in, int16_t *out, uint32_t pitch, const uint8_t *flags);
  69. typedef void (DCTransformPtr) (const int32_t *in, int16_t *out, uint32_t pitch, int blk_size);
  70. /**
  71. * run-value (RLE) table descriptor
  72. */
  73. typedef struct {
  74. uint8_t eob_sym; ///< end of block symbol
  75. uint8_t esc_sym; ///< escape symbol
  76. uint8_t runtab[256];
  77. int8_t valtab[256];
  78. } RVMapDesc;
  79. extern const RVMapDesc ff_ivi_rvmap_tabs[9];
  80. /**
  81. * information for Indeo macroblock (16x16, 8x8 or 4x4)
  82. */
  83. typedef struct {
  84. int16_t xpos;
  85. int16_t ypos;
  86. uint32_t buf_offs; ///< address in the output buffer for this mb
  87. uint8_t type; ///< macroblock type: 0 - INTRA, 1 - INTER
  88. uint8_t cbp; ///< coded block pattern
  89. int8_t q_delta; ///< quant delta
  90. int8_t mv_x; ///< motion vector (x component)
  91. int8_t mv_y; ///< motion vector (y component)
  92. } IVIMbInfo;
  93. /**
  94. * information for Indeo tile
  95. */
  96. typedef struct {
  97. int xpos;
  98. int ypos;
  99. int width;
  100. int height;
  101. int mb_size;
  102. int is_empty; ///< = 1 if this tile doesn't contain any data
  103. int data_size; ///< size of the data in bytes
  104. int num_MBs; ///< number of macroblocks in this tile
  105. IVIMbInfo *mbs; ///< array of macroblock descriptors
  106. IVIMbInfo *ref_mbs; ///< ptr to the macroblock descriptors of the reference tile
  107. } IVITile;
  108. /**
  109. * information for Indeo wavelet band
  110. */
  111. typedef struct {
  112. int plane; ///< plane number this band belongs to
  113. int band_num; ///< band number
  114. int width;
  115. int height;
  116. int aheight; ///< aligned band height
  117. const uint8_t *data_ptr; ///< ptr to the first byte of the band data
  118. int data_size; ///< size of the band data
  119. int16_t *buf; ///< pointer to the output buffer for this band
  120. int16_t *ref_buf; ///< pointer to the reference frame buffer (for motion compensation)
  121. int16_t *bufs[3]; ///< array of pointers to the band buffers
  122. int pitch; ///< pitch associated with the buffers above
  123. int is_empty; ///< = 1 if this band doesn't contain any data
  124. int mb_size; ///< macroblock size
  125. int blk_size; ///< block size
  126. int is_halfpel; ///< precision of the motion compensation: 0 - fullpel, 1 - halfpel
  127. int inherit_mv; ///< tells if motion vector is inherited from reference macroblock
  128. int inherit_qdelta; ///< tells if quantiser delta is inherited from reference macroblock
  129. int qdelta_present; ///< tells if Qdelta signal is present in the bitstream (Indeo5 only)
  130. int quant_mat; ///< dequant matrix index
  131. int glob_quant; ///< quant base for this band
  132. const uint8_t *scan; ///< ptr to the scan pattern
  133. IVIHuffTab blk_vlc; ///< vlc table for decoding block data
  134. int num_corr; ///< number of correction entries
  135. uint8_t corr[61*2]; ///< rvmap correction pairs
  136. int rvmap_sel; ///< rvmap table selector
  137. RVMapDesc *rv_map; ///< ptr to the RLE table for this band
  138. int num_tiles; ///< number of tiles in this band
  139. IVITile *tiles; ///< array of tile descriptors
  140. InvTransformPtr *inv_transform;
  141. DCTransformPtr *dc_transform;
  142. int is_2d_trans; ///< 1 indicates that the two-dimensional inverse transform is used
  143. int transform_size; ///< block size of the transform
  144. int32_t checksum; ///< for debug purposes
  145. int checksum_present;
  146. int bufsize; ///< band buffer size in bytes
  147. const uint16_t *intra_base; ///< quantization matrix for intra blocks
  148. const uint16_t *inter_base; ///< quantization matrix for inter blocks
  149. const uint8_t *intra_scale; ///< quantization coefficient for intra blocks
  150. const uint8_t *inter_scale; ///< quantization coefficient for inter blocks
  151. } IVIBandDesc;
  152. /**
  153. * color plane (luma or chroma) information
  154. */
  155. typedef struct {
  156. uint16_t width;
  157. uint16_t height;
  158. uint8_t num_bands; ///< number of bands this plane subdivided into
  159. IVIBandDesc *bands; ///< array of band descriptors
  160. } IVIPlaneDesc;
  161. typedef struct {
  162. uint16_t pic_width;
  163. uint16_t pic_height;
  164. uint16_t chroma_width;
  165. uint16_t chroma_height;
  166. uint16_t tile_width;
  167. uint16_t tile_height;
  168. uint8_t luma_bands;
  169. uint8_t chroma_bands;
  170. } IVIPicConfig;
  171. typedef struct IVI45DecContext {
  172. GetBitContext gb;
  173. AVFrame frame;
  174. RVMapDesc rvmap_tabs[9]; ///< local corrected copy of the static rvmap tables
  175. uint32_t frame_num;
  176. int frame_type;
  177. int prev_frame_type; ///< frame type of the previous frame
  178. uint32_t data_size; ///< size of the frame data in bytes from picture header
  179. int is_scalable;
  180. int transp_status; ///< transparency mode status: 1 - enabled
  181. const uint8_t *frame_data; ///< input frame data pointer
  182. int inter_scal; ///< signals a sequence of scalable inter frames
  183. uint32_t frame_size; ///< frame size in bytes
  184. uint32_t pic_hdr_size; ///< picture header size in bytes
  185. uint8_t frame_flags;
  186. uint16_t checksum; ///< frame checksum
  187. IVIPicConfig pic_conf;
  188. IVIPlaneDesc planes[3]; ///< color planes
  189. int buf_switch; ///< used to switch between three buffers
  190. int dst_buf; ///< buffer index for the currently decoded frame
  191. int ref_buf; ///< inter frame reference buffer index
  192. int ref2_buf; ///< temporal storage for switching buffers
  193. IVIHuffTab mb_vlc; ///< current macroblock table descriptor
  194. IVIHuffTab blk_vlc; ///< current block table descriptor
  195. uint8_t rvmap_sel;
  196. uint8_t in_imf;
  197. uint8_t in_q; ///< flag for explicitly stored quantiser delta
  198. uint8_t pic_glob_quant;
  199. uint8_t unknown1;
  200. uint16_t gop_hdr_size;
  201. uint8_t gop_flags;
  202. uint32_t lock_word;
  203. #if IVI4_STREAM_ANALYSER
  204. uint8_t has_b_frames;
  205. uint8_t has_transp;
  206. uint8_t uses_tiling;
  207. uint8_t uses_haar;
  208. uint8_t uses_fullpel;
  209. #endif
  210. int (*decode_pic_hdr) (struct IVI45DecContext *ctx, AVCodecContext *avctx);
  211. int (*decode_band_hdr) (struct IVI45DecContext *ctx, IVIBandDesc *band, AVCodecContext *avctx);
  212. int (*decode_mb_info) (struct IVI45DecContext *ctx, IVIBandDesc *band, IVITile *tile, AVCodecContext *avctx);
  213. void (*switch_buffers) (struct IVI45DecContext *ctx);
  214. int (*is_nonnull_frame)(struct IVI45DecContext *ctx);
  215. int gop_invalid;
  216. int buf_invalid[3];
  217. } IVI45DecContext;
  218. /** compare some properties of two pictures */
  219. static inline int ivi_pic_config_cmp(IVIPicConfig *str1, IVIPicConfig *str2)
  220. {
  221. return str1->pic_width != str2->pic_width || str1->pic_height != str2->pic_height ||
  222. str1->chroma_width != str2->chroma_width || str1->chroma_height != str2->chroma_height ||
  223. str1->tile_width != str2->tile_width || str1->tile_height != str2->tile_height ||
  224. str1->luma_bands != str2->luma_bands || str1->chroma_bands != str2->chroma_bands;
  225. }
  226. /** calculate number of tiles in a stride */
  227. #define IVI_NUM_TILES(stride, tile_size) (((stride) + (tile_size) - 1) / (tile_size))
  228. /** calculate number of macroblocks in a tile */
  229. #define IVI_MBs_PER_TILE(tile_width, tile_height, mb_size) \
  230. ((((tile_width) + (mb_size) - 1) / (mb_size)) * (((tile_height) + (mb_size) - 1) / (mb_size)))
  231. /** convert unsigned values into signed ones (the sign is in the LSB) */
  232. #define IVI_TOSIGNED(val) (-(((val) >> 1) ^ -((val) & 1)))
  233. /** scale motion vector */
  234. static inline int ivi_scale_mv(int mv, int mv_scale)
  235. {
  236. return (mv + (mv > 0) + (mv_scale - 1)) >> mv_scale;
  237. }
  238. /**
  239. * Generate a huffman codebook from the given descriptor
  240. * and convert it into the FFmpeg VLC table.
  241. *
  242. * @param[in] cb pointer to codebook descriptor
  243. * @param[out] vlc where to place the generated VLC table
  244. * @param[in] flag flag: 1 - for static or 0 for dynamic tables
  245. * @return result code: 0 - OK, -1 = error (invalid codebook descriptor)
  246. */
  247. int ff_ivi_create_huff_from_desc(const IVIHuffDesc *cb, VLC *vlc, int flag);
  248. /**
  249. * Initialize static codes used for macroblock and block decoding.
  250. */
  251. void ff_ivi_init_static_vlc(void);
  252. /**
  253. * Decode a huffman codebook descriptor from the bitstream
  254. * and select specified huffman table.
  255. *
  256. * @param[in,out] gb the GetBit context
  257. * @param[in] desc_coded flag signalling if table descriptor was coded
  258. * @param[in] which_tab codebook purpose (IVI_MB_HUFF or IVI_BLK_HUFF)
  259. * @param[out] huff_tab pointer to the descriptor of the selected table
  260. * @param[in] avctx AVCodecContext pointer
  261. * @return zero on success, negative value otherwise
  262. */
  263. int ff_ivi_dec_huff_desc(GetBitContext *gb, int desc_coded, int which_tab,
  264. IVIHuffTab *huff_tab, AVCodecContext *avctx);
  265. /**
  266. * Compare two huffman codebook descriptors.
  267. *
  268. * @param[in] desc1 ptr to the 1st descriptor to compare
  269. * @param[in] desc2 ptr to the 2nd descriptor to compare
  270. * @return comparison result: 0 - equal, 1 - not equal
  271. */
  272. int ff_ivi_huff_desc_cmp(const IVIHuffDesc *desc1, const IVIHuffDesc *desc2);
  273. /**
  274. * Copy huffman codebook descriptors.
  275. *
  276. * @param[out] dst ptr to the destination descriptor
  277. * @param[in] src ptr to the source descriptor
  278. */
  279. void ff_ivi_huff_desc_copy(IVIHuffDesc *dst, const IVIHuffDesc *src);
  280. /**
  281. * Initialize planes (prepares descriptors, allocates buffers etc).
  282. *
  283. * @param[in,out] planes pointer to the array of the plane descriptors
  284. * @param[in] cfg pointer to the ivi_pic_config structure describing picture layout
  285. * @return result code: 0 - OK
  286. */
  287. int ff_ivi_init_planes(IVIPlaneDesc *planes, const IVIPicConfig *cfg);
  288. /**
  289. * Free planes, bands and macroblocks buffers.
  290. *
  291. * @param[in] planes pointer to the array of the plane descriptors
  292. */
  293. void ff_ivi_free_buffers(IVIPlaneDesc *planes);
  294. /**
  295. * Initialize tile and macroblock descriptors.
  296. *
  297. * @param[in,out] planes pointer to the array of the plane descriptors
  298. * @param[in] tile_width tile width
  299. * @param[in] tile_height tile height
  300. * @return result code: 0 - OK
  301. */
  302. int ff_ivi_init_tiles(IVIPlaneDesc *planes, int tile_width, int tile_height);
  303. /**
  304. * Decode size of the tile data.
  305. * The size is stored as a variable-length field having the following format:
  306. * if (tile_data_size < 255) than this field is only one byte long
  307. * if (tile_data_size >= 255) than this field four is byte long: 0xFF X1 X2 X3
  308. * where X1-X3 is size of the tile data
  309. *
  310. * @param[in,out] gb the GetBit context
  311. * @return size of the tile data in bytes
  312. */
  313. int ff_ivi_dec_tile_data_size(GetBitContext *gb);
  314. /**
  315. * Decode block data:
  316. * extract huffman-coded transform coefficients from the bitstream,
  317. * dequantize them, apply inverse transform and motion compensation
  318. * in order to reconstruct the picture.
  319. *
  320. * @param[in,out] gb the GetBit context
  321. * @param[in] band pointer to the band descriptor
  322. * @param[in] tile pointer to the tile descriptor
  323. * @return result code: 0 - OK, -1 = error (corrupted blocks data)
  324. */
  325. int ff_ivi_decode_blocks(GetBitContext *gb, IVIBandDesc *band, IVITile *tile);
  326. /**
  327. * Handle empty tiles by performing data copying and motion
  328. * compensation respectively.
  329. *
  330. * @param[in] avctx ptr to the AVCodecContext
  331. * @param[in] band pointer to the band descriptor
  332. * @param[in] tile pointer to the tile descriptor
  333. * @param[in] mv_scale scaling factor for motion vectors
  334. */
  335. void ff_ivi_process_empty_tile(AVCodecContext *avctx, IVIBandDesc *band,
  336. IVITile *tile, int32_t mv_scale);
  337. /**
  338. * Convert and output the current plane.
  339. * This conversion is done by adding back the bias value of 128
  340. * (subtracted in the encoder) and clipping the result.
  341. *
  342. * @param[in] plane pointer to the descriptor of the plane being processed
  343. * @param[out] dst pointer to the buffer receiving converted pixels
  344. * @param[in] dst_pitch pitch for moving to the next y line
  345. */
  346. void ff_ivi_output_plane(IVIPlaneDesc *plane, uint8_t *dst, int dst_pitch);
  347. int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
  348. AVPacket *avpkt);
  349. av_cold int ff_ivi_decode_close(AVCodecContext *avctx);
  350. #endif /* AVCODEC_IVI_COMMON_H */