vc1.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. /*
  2. * VC-1 and WMV3 decoder
  3. * Copyright (c) 2006-2007 Konstantin Shishkov
  4. * Partly based on vc9.c (c) 2005 Anonymous, Alex Beregszaszi, Michael Niedermayer
  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. #ifndef AVCODEC_VC1_H
  23. #define AVCODEC_VC1_H
  24. #include "avcodec.h"
  25. #include "h264chroma.h"
  26. #include "mpegvideo.h"
  27. #include "intrax8.h"
  28. #include "vc1_common.h"
  29. #include "vc1dsp.h"
  30. #define AC_VLC_BITS 9
  31. /** Sequence quantizer mode */
  32. //@{
  33. enum QuantMode {
  34. QUANT_FRAME_IMPLICIT, ///< Implicitly specified at frame level
  35. QUANT_FRAME_EXPLICIT, ///< Explicitly specified at frame level
  36. QUANT_NON_UNIFORM, ///< Non-uniform quant used for all frames
  37. QUANT_UNIFORM ///< Uniform quant used for all frames
  38. };
  39. //@}
  40. /** Where quant can be changed */
  41. //@{
  42. enum DQProfile {
  43. DQPROFILE_FOUR_EDGES,
  44. DQPROFILE_DOUBLE_EDGES,
  45. DQPROFILE_SINGLE_EDGE,
  46. DQPROFILE_ALL_MBS
  47. };
  48. //@}
  49. /** @name Where quant can be changed
  50. */
  51. //@{
  52. enum DQSingleEdge {
  53. DQSINGLE_BEDGE_LEFT,
  54. DQSINGLE_BEDGE_TOP,
  55. DQSINGLE_BEDGE_RIGHT,
  56. DQSINGLE_BEDGE_BOTTOM
  57. };
  58. //@}
  59. /** Which pair of edges is quantized with ALTPQUANT */
  60. //@{
  61. enum DQDoubleEdge {
  62. DQDOUBLE_BEDGE_TOPLEFT,
  63. DQDOUBLE_BEDGE_TOPRIGHT,
  64. DQDOUBLE_BEDGE_BOTTOMRIGHT,
  65. DQDOUBLE_BEDGE_BOTTOMLEFT
  66. };
  67. //@}
  68. /** MV modes for P-frames */
  69. //@{
  70. enum MVModes {
  71. MV_PMODE_1MV_HPEL_BILIN,
  72. MV_PMODE_1MV,
  73. MV_PMODE_1MV_HPEL,
  74. MV_PMODE_MIXED_MV,
  75. MV_PMODE_INTENSITY_COMP
  76. };
  77. //@}
  78. /** MBMODE for interlaced frame P-picture */
  79. //@{
  80. enum MBModesIntfr {
  81. MV_PMODE_INTFR_1MV,
  82. MV_PMODE_INTFR_2MV_FIELD,
  83. MV_PMODE_INTFR_2MV,
  84. MV_PMODE_INTFR_4MV_FIELD,
  85. MV_PMODE_INTFR_4MV,
  86. MV_PMODE_INTFR_INTRA,
  87. };
  88. //@}
  89. /** @name MV types for B-frames */
  90. //@{
  91. enum BMVTypes {
  92. BMV_TYPE_BACKWARD,
  93. BMV_TYPE_FORWARD,
  94. BMV_TYPE_INTERPOLATED,
  95. BMV_TYPE_DIRECT
  96. };
  97. //@}
  98. /** @name Block types for P/B-frames */
  99. //@{
  100. enum TransformTypes {
  101. TT_8X8,
  102. TT_8X4_BOTTOM,
  103. TT_8X4_TOP,
  104. TT_8X4, // both halves
  105. TT_4X8_RIGHT,
  106. TT_4X8_LEFT,
  107. TT_4X8, // both halves
  108. TT_4X4
  109. };
  110. //@}
  111. enum CodingSet {
  112. CS_HIGH_MOT_INTRA = 0,
  113. CS_HIGH_MOT_INTER,
  114. CS_LOW_MOT_INTRA,
  115. CS_LOW_MOT_INTER,
  116. CS_MID_RATE_INTRA,
  117. CS_MID_RATE_INTER,
  118. CS_HIGH_RATE_INTRA,
  119. CS_HIGH_RATE_INTER
  120. };
  121. /** @name Overlap conditions for Advanced Profile */
  122. //@{
  123. enum COTypes {
  124. CONDOVER_NONE = 0,
  125. CONDOVER_ALL,
  126. CONDOVER_SELECT
  127. };
  128. //@}
  129. /**
  130. * FCM Frame Coding Mode
  131. * @note some content might be marked interlaced
  132. * but have fcm set to 0 as well (e.g. HD-DVD)
  133. */
  134. enum FrameCodingMode {
  135. PROGRESSIVE = 0, ///< in the bitstream is reported as 00b
  136. ILACE_FRAME, ///< in the bitstream is reported as 10b
  137. ILACE_FIELD ///< in the bitstream is reported as 11b
  138. };
  139. /**
  140. * Imode types
  141. * @{
  142. */
  143. enum Imode {
  144. IMODE_RAW,
  145. IMODE_NORM2,
  146. IMODE_DIFF2,
  147. IMODE_NORM6,
  148. IMODE_DIFF6,
  149. IMODE_ROWSKIP,
  150. IMODE_COLSKIP
  151. };
  152. /** @} */ //imode defines
  153. /** The VC1 Context
  154. * @todo Change size wherever another size is more efficient
  155. * Many members are only used for Advanced Profile
  156. */
  157. typedef struct VC1Context{
  158. MpegEncContext s;
  159. IntraX8Context x8;
  160. H264ChromaContext h264chroma;
  161. VC1DSPContext vc1dsp;
  162. /** Simple/Main Profile sequence header */
  163. //@{
  164. int res_sprite; ///< reserved, sprite mode
  165. int res_y411; ///< reserved, old interlaced mode
  166. int res_x8; ///< reserved
  167. int multires; ///< frame-level RESPIC syntax element present
  168. int res_fasttx; ///< reserved, always 1
  169. int res_transtab; ///< reserved, always 0
  170. int rangered; ///< RANGEREDFRM (range reduction) syntax element present
  171. ///< at frame level
  172. int res_rtm_flag; ///< reserved, set to 1
  173. int reserved; ///< reserved
  174. //@}
  175. /** Advanced Profile */
  176. //@{
  177. int level; ///< 3 bits, for Advanced/Simple Profile, provided by TS layer
  178. int chromaformat; ///< 2 bits, 2=4:2:0, only defined
  179. int postprocflag; ///< Per-frame processing suggestion flag present
  180. int broadcast; ///< TFF/RFF present
  181. int interlace; ///< Progressive/interlaced (RPTFTM syntax element)
  182. int tfcntrflag; ///< TFCNTR present
  183. int panscanflag; ///< NUMPANSCANWIN, TOPLEFT{X,Y}, BOTRIGHT{X,Y} present
  184. int refdist_flag; ///< REFDIST syntax element present in II, IP, PI or PP field picture headers
  185. int extended_dmv; ///< Additional extended dmv range at P/B-frame-level
  186. int color_prim; ///< 8 bits, chroma coordinates of the color primaries
  187. int transfer_char; ///< 8 bits, Opto-electronic transfer characteristics
  188. int matrix_coef; ///< 8 bits, Color primaries->YCbCr transform matrix
  189. int hrd_param_flag; ///< Presence of Hypothetical Reference
  190. ///< Decoder parameters
  191. int psf; ///< Progressive Segmented Frame
  192. //@}
  193. /** Sequence header data for all Profiles
  194. * TODO: choose between ints, uint8_ts and monobit flags
  195. */
  196. //@{
  197. int profile; ///< 2 bits, Profile
  198. int frmrtq_postproc; ///< 3 bits,
  199. int bitrtq_postproc; ///< 5 bits, quantized framerate-based postprocessing strength
  200. int max_coded_width, max_coded_height;
  201. int fastuvmc; ///< Rounding of qpel vector to hpel ? (not in Simple)
  202. int extended_mv; ///< Ext MV in P/B (not in Simple)
  203. int dquant; ///< How qscale varies with MBs, 2 bits (not in Simple)
  204. int vstransform; ///< variable-size [48]x[48] transform type + info
  205. int overlap; ///< overlapped transforms in use
  206. int quantizer_mode; ///< 2 bits, quantizer mode used for sequence, see QUANT_*
  207. int finterpflag; ///< INTERPFRM present
  208. //@}
  209. /** Frame decoding info for all profiles */
  210. //@{
  211. uint8_t mv_mode; ///< MV coding mode
  212. uint8_t mv_mode2; ///< Secondary MV coding mode (B-frames)
  213. int k_x; ///< Number of bits for MVs (depends on MV range)
  214. int k_y; ///< Number of bits for MVs (depends on MV range)
  215. int range_x, range_y; ///< MV range
  216. uint8_t pq, altpq; ///< Current/alternate frame quantizer scale
  217. uint8_t zz_8x8[4][64]; ///< Zigzag table for TT_8x8, permuted for IDCT
  218. int left_blk_sh, top_blk_sh; ///< Either 3 or 0, positions of l/t in blk[]
  219. const uint8_t* zz_8x4; ///< Zigzag scan table for TT_8x4 coding mode
  220. const uint8_t* zz_4x8; ///< Zigzag scan table for TT_4x8 coding mode
  221. /** pquant parameters */
  222. //@{
  223. uint8_t dquantfrm;
  224. uint8_t dqprofile;
  225. uint8_t dqsbedge;
  226. uint8_t dqbilevel;
  227. //@}
  228. /** AC coding set indexes
  229. * @see 8.1.1.10, p(1)10
  230. */
  231. //@{
  232. int c_ac_table_index; ///< Chroma index from ACFRM element
  233. int y_ac_table_index; ///< Luma index from AC2FRM element
  234. //@}
  235. int ttfrm; ///< Transform type info present at frame level
  236. uint8_t ttmbf; ///< Transform type flag
  237. int *ttblk_base, *ttblk; ///< Transform type at the block level
  238. int codingset; ///< index of current table set from 11.8 to use for luma block decoding
  239. int codingset2; ///< index of current table set from 11.8 to use for chroma block decoding
  240. int pqindex; ///< raw pqindex used in coding set selection
  241. int a_avail, c_avail;
  242. uint8_t *mb_type_base, *mb_type[3];
  243. /** Luma compensation parameters */
  244. //@{
  245. uint8_t lumscale;
  246. uint8_t lumshift;
  247. //@}
  248. int16_t bfraction; ///< Relative position % anchors=> how to scale MVs
  249. uint8_t halfpq; ///< Uniform quant over image and qp+.5
  250. uint8_t respic; ///< Frame-level flag for resized images
  251. int buffer_fullness; ///< HRD info
  252. /** Ranges:
  253. * -# 0 -> [-64n 63.f] x [-32, 31.f]
  254. * -# 1 -> [-128, 127.f] x [-64, 63.f]
  255. * -# 2 -> [-512, 511.f] x [-128, 127.f]
  256. * -# 3 -> [-1024, 1023.f] x [-256, 255.f]
  257. */
  258. uint8_t mvrange; ///< Extended MV range flag
  259. uint8_t pquantizer; ///< Uniform (over sequence) quantizer in use
  260. VLC *cbpcy_vlc; ///< CBPCY VLC table
  261. int tt_index; ///< Index for Transform Type tables (to decode TTMB)
  262. uint8_t* mv_type_mb_plane; ///< bitplane for mv_type == (4MV)
  263. uint8_t* direct_mb_plane; ///< bitplane for "direct" MBs
  264. uint8_t* forward_mb_plane; ///< bitplane for "forward" MBs
  265. int mv_type_is_raw; ///< mv type mb plane is not coded
  266. int dmb_is_raw; ///< direct mb plane is raw
  267. int fmb_is_raw; ///< forward mb plane is raw
  268. int skip_is_raw; ///< skip mb plane is not coded
  269. uint8_t last_luty[2][256], last_lutuv[2][256]; ///< lookup tables used for intensity compensation
  270. uint8_t aux_luty[2][256], aux_lutuv[2][256]; ///< lookup tables used for intensity compensation
  271. uint8_t next_luty[2][256], next_lutuv[2][256]; ///< lookup tables used for intensity compensation
  272. uint8_t (*curr_luty)[256] ,(*curr_lutuv)[256];
  273. int last_use_ic, *curr_use_ic, next_use_ic, aux_use_ic;
  274. int rnd; ///< rounding control
  275. int cbptab;
  276. /** Frame decoding info for S/M profiles only */
  277. //@{
  278. uint8_t rangeredfrm; ///< out_sample = CLIP((in_sample-128)*2+128)
  279. uint8_t interpfrm;
  280. //@}
  281. /** Frame decoding info for Advanced profile */
  282. //@{
  283. enum FrameCodingMode fcm;
  284. uint8_t numpanscanwin;
  285. uint8_t tfcntr;
  286. uint8_t rptfrm, tff, rff;
  287. uint16_t topleftx;
  288. uint16_t toplefty;
  289. uint16_t bottomrightx;
  290. uint16_t bottomrighty;
  291. uint8_t uvsamp;
  292. uint8_t postproc;
  293. int hrd_num_leaky_buckets;
  294. uint8_t bit_rate_exponent;
  295. uint8_t buffer_size_exponent;
  296. uint8_t* acpred_plane; ///< AC prediction flags bitplane
  297. int acpred_is_raw;
  298. uint8_t* over_flags_plane; ///< Overflags bitplane
  299. int overflg_is_raw;
  300. uint8_t condover;
  301. uint16_t *hrd_rate, *hrd_buffer;
  302. uint8_t *hrd_fullness;
  303. uint8_t range_mapy_flag;
  304. uint8_t range_mapuv_flag;
  305. uint8_t range_mapy;
  306. uint8_t range_mapuv;
  307. //@}
  308. /** Frame decoding info for interlaced picture */
  309. uint8_t dmvrange; ///< Extended differential MV range flag
  310. int fourmvswitch;
  311. int intcomp;
  312. uint8_t lumscale2; ///< for interlaced field P picture
  313. uint8_t lumshift2;
  314. VLC* mbmode_vlc;
  315. VLC* imv_vlc;
  316. VLC* twomvbp_vlc;
  317. VLC* fourmvbp_vlc;
  318. uint8_t twomvbp;
  319. uint8_t fourmvbp;
  320. uint8_t* fieldtx_plane;
  321. int fieldtx_is_raw;
  322. uint8_t zzi_8x8[64];
  323. uint8_t *blk_mv_type_base, *blk_mv_type; ///< 0: frame MV, 1: field MV (interlaced frame)
  324. uint8_t *mv_f_base, *mv_f[2]; ///< 0: MV obtained from same field, 1: opposite field
  325. uint8_t *mv_f_next_base, *mv_f_next[2];
  326. int field_mode; ///< 1 for interlaced field pictures
  327. int fptype;
  328. int second_field;
  329. int refdist; ///< distance of the current picture from reference
  330. int numref; ///< number of past field pictures used as reference
  331. // 0 corresponds to 1 and 1 corresponds to 2 references
  332. int reffield; ///< if numref = 0 (1 reference) then reffield decides which
  333. // field to use among the two fields from previous frame
  334. int intcompfield; ///< which of the two fields to be intensity compensated
  335. // 0: both fields, 1: bottom field, 2: top field
  336. int cur_field_type; ///< 0: top, 1: bottom
  337. int ref_field_type[2]; ///< forward and backward reference field type (top or bottom)
  338. int blocks_off, mb_off;
  339. int qs_last; ///< if qpel has been used in the previous (tr.) picture
  340. int bmvtype;
  341. int frfd, brfd; ///< reference frame distance (forward or backward)
  342. int first_pic_header_flag;
  343. int pic_header_flag;
  344. int mbmodetab;
  345. int icbptab;
  346. int imvtab;
  347. int twomvbptab;
  348. int fourmvbptab;
  349. /** Frame decoding info for sprite modes */
  350. //@{
  351. int new_sprite;
  352. int two_sprites;
  353. AVFrame *sprite_output_frame;
  354. int output_width, output_height, sprite_width, sprite_height;
  355. uint8_t* sr_rows[2][2]; ///< Sprite resizer line cache
  356. //@}
  357. int p_frame_skipped;
  358. int bi_type;
  359. int x8_type;
  360. int16_t (*block)[6][64];
  361. int n_allocated_blks, cur_blk_idx, left_blk_idx, topleft_blk_idx, top_blk_idx;
  362. uint32_t *cbp_base, *cbp;
  363. uint8_t *is_intra_base, *is_intra;
  364. int16_t (*luma_mv_base)[2], (*luma_mv)[2];
  365. uint8_t bfraction_lut_index; ///< Index for BFRACTION value (see Table 40, reproduced into ff_vc1_bfraction_lut[])
  366. uint8_t broken_link; ///< Broken link flag (BROKEN_LINK syntax element)
  367. uint8_t closed_entry; ///< Closed entry point flag (CLOSED_ENTRY syntax element)
  368. int end_mb_x; ///< Horizontal macroblock limit (used only by mss2)
  369. int parse_only; ///< Context is used within parser
  370. int resync_marker; ///< could this stream contain resync markers
  371. } VC1Context;
  372. /**
  373. * Decode Simple/Main Profiles sequence header
  374. * @see Figure 7-8, p16-17
  375. * @param avctx Codec context
  376. * @param gb GetBit context initialized from Codec context extra_data
  377. * @return Status
  378. */
  379. int ff_vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitContext *gb);
  380. int ff_vc1_decode_entry_point(AVCodecContext *avctx, VC1Context *v, GetBitContext *gb);
  381. int ff_vc1_parse_frame_header (VC1Context *v, GetBitContext *gb);
  382. int ff_vc1_parse_frame_header_adv(VC1Context *v, GetBitContext *gb);
  383. int ff_vc1_init_common(VC1Context *v);
  384. int ff_vc1_decode_init_alloc_tables(VC1Context *v);
  385. void ff_vc1_init_transposed_scantables(VC1Context *v);
  386. int ff_vc1_decode_end(AVCodecContext *avctx);
  387. void ff_vc1_decode_blocks(VC1Context *v);
  388. void ff_vc1_i_overlap_filter(VC1Context *v);
  389. void ff_vc1_p_overlap_filter(VC1Context *v);
  390. void ff_vc1_i_loop_filter(VC1Context *v);
  391. void ff_vc1_p_loop_filter(VC1Context *v);
  392. void ff_vc1_p_intfr_loop_filter(VC1Context *v);
  393. void ff_vc1_b_intfi_loop_filter(VC1Context *v);
  394. void ff_vc1_mc_1mv(VC1Context *v, int dir);
  395. void ff_vc1_mc_4mv_luma(VC1Context *v, int n, int dir, int avg);
  396. void ff_vc1_mc_4mv_chroma(VC1Context *v, int dir);
  397. void ff_vc1_mc_4mv_chroma4(VC1Context *v, int dir, int dir2, int avg);
  398. void ff_vc1_interp_mc(VC1Context *v);
  399. #endif /* AVCODEC_VC1_H */