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.

442 lines
15KB

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