vc1.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  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 Libav.
  7. *
  8. * Libav 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. * Libav 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 Libav; 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. /** @name MV types for B frames */
  98. //@{
  99. enum BMVTypes {
  100. BMV_TYPE_BACKWARD,
  101. BMV_TYPE_FORWARD,
  102. BMV_TYPE_INTERPOLATED
  103. };
  104. //@}
  105. /** @name Block types for P/B frames */
  106. //@{
  107. enum TransformTypes {
  108. TT_8X8,
  109. TT_8X4_BOTTOM,
  110. TT_8X4_TOP,
  111. TT_8X4, //Both halves
  112. TT_4X8_RIGHT,
  113. TT_4X8_LEFT,
  114. TT_4X8, //Both halves
  115. TT_4X4
  116. };
  117. //@}
  118. enum CodingSet {
  119. CS_HIGH_MOT_INTRA = 0,
  120. CS_HIGH_MOT_INTER,
  121. CS_LOW_MOT_INTRA,
  122. CS_LOW_MOT_INTER,
  123. CS_MID_RATE_INTRA,
  124. CS_MID_RATE_INTER,
  125. CS_HIGH_RATE_INTRA,
  126. CS_HIGH_RATE_INTER
  127. };
  128. /** @name Overlap conditions for Advanced Profile */
  129. //@{
  130. enum COTypes {
  131. CONDOVER_NONE = 0,
  132. CONDOVER_ALL,
  133. CONDOVER_SELECT
  134. };
  135. //@}
  136. /** The VC1 Context
  137. * @todo Change size wherever another size is more efficient
  138. * Many members are only used for Advanced Profile
  139. */
  140. typedef struct VC1Context{
  141. MpegEncContext s;
  142. IntraX8Context x8;
  143. VC1DSPContext vc1dsp;
  144. int bits;
  145. /** Simple/Main Profile sequence header */
  146. //@{
  147. int res_sprite; ///< reserved, sprite mode
  148. int res_y411; ///< reserved, old interlaced mode
  149. int res_x8; ///< reserved
  150. int multires; ///< frame-level RESPIC syntax element present
  151. int res_fasttx; ///< reserved, always 1
  152. int res_transtab; ///< reserved, always 0
  153. int rangered; ///< RANGEREDFRM (range reduction) syntax element present
  154. ///< at frame level
  155. int res_rtm_flag; ///< reserved, set to 1
  156. int reserved; ///< reserved
  157. //@}
  158. /** Advanced Profile */
  159. //@{
  160. int level; ///< 3bits, for Advanced/Simple Profile, provided by TS layer
  161. int chromaformat; ///< 2bits, 2=4:2:0, only defined
  162. int postprocflag; ///< Per-frame processing suggestion flag present
  163. int broadcast; ///< TFF/RFF present
  164. int interlace; ///< Progressive/interlaced (RPTFTM syntax element)
  165. int tfcntrflag; ///< TFCNTR present
  166. int panscanflag; ///< NUMPANSCANWIN, TOPLEFT{X,Y}, BOTRIGHT{X,Y} present
  167. int refdist_flag; ///< REFDIST syntax element present in II, IP, PI or PP field picture headers
  168. int extended_dmv; ///< Additional extended dmv range at P/B frame-level
  169. int color_prim; ///< 8bits, chroma coordinates of the color primaries
  170. int transfer_char; ///< 8bits, Opto-electronic transfer characteristics
  171. int matrix_coef; ///< 8bits, Color primaries->YCbCr transform matrix
  172. int hrd_param_flag; ///< Presence of Hypothetical Reference
  173. ///< Decoder parameters
  174. int psf; ///< Progressive Segmented Frame
  175. //@}
  176. /** Sequence header data for all Profiles
  177. * TODO: choose between ints, uint8_ts and monobit flags
  178. */
  179. //@{
  180. int profile; ///< 2bits, Profile
  181. int frmrtq_postproc; ///< 3bits,
  182. int bitrtq_postproc; ///< 5bits, quantized framerate-based postprocessing strength
  183. int fastuvmc; ///< Rounding of qpel vector to hpel ? (not in Simple)
  184. int extended_mv; ///< Ext MV in P/B (not in Simple)
  185. int dquant; ///< How qscale varies with MBs, 2bits (not in Simple)
  186. int vstransform; ///< variable-size [48]x[48] transform type + info
  187. int overlap; ///< overlapped transforms in use
  188. int quantizer_mode; ///< 2bits, quantizer mode used for sequence, see QUANT_*
  189. int finterpflag; ///< INTERPFRM present
  190. //@}
  191. /** Frame decoding info for all profiles */
  192. //@{
  193. uint8_t mv_mode; ///< MV coding monde
  194. uint8_t mv_mode2; ///< Secondary MV coding mode (B frames)
  195. int k_x; ///< Number of bits for MVs (depends on MV range)
  196. int k_y; ///< Number of bits for MVs (depends on MV range)
  197. int range_x, range_y; ///< MV range
  198. uint8_t pq, altpq; ///< Current/alternate frame quantizer scale
  199. uint8_t zz_8x8[4][64];///< Zigzag table for TT_8x8, permuted for IDCT
  200. int left_blk_sh, top_blk_sh; ///< Either 3 or 0, positions of l/t in blk[]
  201. const uint8_t* zz_8x4;///< Zigzag scan table for TT_8x4 coding mode
  202. const uint8_t* zz_4x8;///< Zigzag scan table for TT_4x8 coding mode
  203. /** pquant parameters */
  204. //@{
  205. uint8_t dquantfrm;
  206. uint8_t dqprofile;
  207. uint8_t dqsbedge;
  208. uint8_t dqbilevel;
  209. //@}
  210. /** AC coding set indexes
  211. * @see 8.1.1.10, p(1)10
  212. */
  213. //@{
  214. int c_ac_table_index; ///< Chroma index from ACFRM element
  215. int y_ac_table_index; ///< Luma index from AC2FRM element
  216. //@}
  217. int ttfrm; ///< Transform type info present at frame level
  218. uint8_t ttmbf; ///< Transform type flag
  219. int *ttblk_base, *ttblk; ///< Transform type at the block level
  220. int codingset; ///< index of current table set from 11.8 to use for luma block decoding
  221. int codingset2; ///< index of current table set from 11.8 to use for chroma block decoding
  222. int pqindex; ///< raw pqindex used in coding set selection
  223. int a_avail, c_avail;
  224. uint8_t *mb_type_base, *mb_type[3];
  225. /** Luma compensation parameters */
  226. //@{
  227. uint8_t lumscale;
  228. uint8_t lumshift;
  229. //@}
  230. int16_t bfraction; ///< Relative position % anchors=> how to scale MVs
  231. uint8_t halfpq; ///< Uniform quant over image and qp+.5
  232. uint8_t respic; ///< Frame-level flag for resized images
  233. int buffer_fullness; ///< HRD info
  234. /** Ranges:
  235. * -# 0 -> [-64n 63.f] x [-32, 31.f]
  236. * -# 1 -> [-128, 127.f] x [-64, 63.f]
  237. * -# 2 -> [-512, 511.f] x [-128, 127.f]
  238. * -# 3 -> [-1024, 1023.f] x [-256, 255.f]
  239. */
  240. uint8_t mvrange;
  241. uint8_t pquantizer; ///< Uniform (over sequence) quantizer in use
  242. VLC *cbpcy_vlc; ///< CBPCY VLC table
  243. int tt_index; ///< Index for Transform Type tables
  244. uint8_t* mv_type_mb_plane; ///< bitplane for mv_type == (4MV)
  245. uint8_t* direct_mb_plane; ///< bitplane for "direct" MBs
  246. int mv_type_is_raw; ///< mv type mb plane is not coded
  247. int dmb_is_raw; ///< direct mb plane is raw
  248. int skip_is_raw; ///< skip mb plane is not coded
  249. uint8_t luty[256], lutuv[256]; // lookup tables used for intensity compensation
  250. int use_ic; ///< use intensity compensation in B-frames
  251. int rnd; ///< rounding control
  252. /** Frame decoding info for S/M profiles only */
  253. //@{
  254. uint8_t rangeredfrm; ///< out_sample = CLIP((in_sample-128)*2+128)
  255. uint8_t interpfrm;
  256. //@}
  257. /** Frame decoding info for Advanced profile */
  258. //@{
  259. uint8_t fcm; ///< 0->Progressive, 2->Frame-Interlace, 3->Field-Interlace
  260. uint8_t numpanscanwin;
  261. uint8_t tfcntr;
  262. uint8_t rptfrm, tff, rff;
  263. uint16_t topleftx;
  264. uint16_t toplefty;
  265. uint16_t bottomrightx;
  266. uint16_t bottomrighty;
  267. uint8_t uvsamp;
  268. uint8_t postproc;
  269. int hrd_num_leaky_buckets;
  270. uint8_t bit_rate_exponent;
  271. uint8_t buffer_size_exponent;
  272. uint8_t* acpred_plane; ///< AC prediction flags bitplane
  273. int acpred_is_raw;
  274. uint8_t* over_flags_plane; ///< Overflags bitplane
  275. int overflg_is_raw;
  276. uint8_t condover;
  277. uint16_t *hrd_rate, *hrd_buffer;
  278. uint8_t *hrd_fullness;
  279. uint8_t range_mapy_flag;
  280. uint8_t range_mapuv_flag;
  281. uint8_t range_mapy;
  282. uint8_t range_mapuv;
  283. //@}
  284. /** Frame decoding info for sprite modes */
  285. //@{
  286. int new_sprite;
  287. int two_sprites;
  288. //@}
  289. int p_frame_skipped;
  290. int bi_type;
  291. int x8_type;
  292. uint32_t *cbp_base, *cbp;
  293. uint8_t *is_intra_base, *is_intra;
  294. int16_t (*luma_mv_base)[2], (*luma_mv)[2];
  295. uint8_t bfraction_lut_index;///< Index for BFRACTION value (see Table 40, reproduced into ff_vc1_bfraction_lut[])
  296. uint8_t broken_link; ///< Broken link flag (BROKEN_LINK syntax element)
  297. uint8_t closed_entry; ///< Closed entry point flag (CLOSED_ENTRY syntax element)
  298. int parse_only; ///< Context is used within parser
  299. int warn_interlaced;
  300. } VC1Context;
  301. /** Find VC-1 marker in buffer
  302. * @return position where next marker starts or end of buffer if no marker found
  303. */
  304. static av_always_inline const uint8_t* find_next_marker(const uint8_t *src, const uint8_t *end)
  305. {
  306. uint32_t mrk = 0xFFFFFFFF;
  307. if(end-src < 4) return end;
  308. while(src < end){
  309. mrk = (mrk << 8) | *src++;
  310. if(IS_MARKER(mrk))
  311. return src-4;
  312. }
  313. return end;
  314. }
  315. static av_always_inline int vc1_unescape_buffer(const uint8_t *src, int size, uint8_t *dst)
  316. {
  317. int dsize = 0, i;
  318. if(size < 4){
  319. for(dsize = 0; dsize < size; dsize++) *dst++ = *src++;
  320. return size;
  321. }
  322. for(i = 0; i < size; i++, src++) {
  323. if(src[0] == 3 && i >= 2 && !src[-1] && !src[-2] && i < size-1 && src[1] < 4) {
  324. dst[dsize++] = src[1];
  325. src++;
  326. i++;
  327. } else
  328. dst[dsize++] = *src;
  329. }
  330. return dsize;
  331. }
  332. /**
  333. * Decode Simple/Main Profiles sequence header
  334. * @see Figure 7-8, p16-17
  335. * @param avctx Codec context
  336. * @param gb GetBit context initialized from Codec context extra_data
  337. * @return Status
  338. */
  339. int vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitContext *gb);
  340. int vc1_decode_entry_point(AVCodecContext *avctx, VC1Context *v, GetBitContext *gb);
  341. int vc1_parse_frame_header (VC1Context *v, GetBitContext *gb);
  342. int vc1_parse_frame_header_adv(VC1Context *v, GetBitContext *gb);
  343. #endif /* AVCODEC_VC1_H */