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
6 * This file is part of Libav.
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.
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.
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
27 #include "h264chroma.h"
28 #include "mpegvideo.h"
30 #include "vc1_common.h"
35 /** Sequence quantizer mode */
38 QUANT_FRAME_IMPLICIT
, ///< Implicitly specified at frame level
39 QUANT_FRAME_EXPLICIT
, ///< Explicitly specified at frame level
40 QUANT_NON_UNIFORM
, ///< Non-uniform quant used for all frames
41 QUANT_UNIFORM
///< Uniform quant used for all frames
45 /** Where quant can be changed */
49 DQPROFILE_DOUBLE_EDGES
,
50 DQPROFILE_SINGLE_EDGE
,
55 /** @name Where quant can be changed
66 /** Which pair of edges is quantized with ALTPQUANT */
69 DQDOUBLE_BEDGE_TOPLEFT
,
70 DQDOUBLE_BEDGE_TOPRIGHT
,
71 DQDOUBLE_BEDGE_BOTTOMRIGHT
,
72 DQDOUBLE_BEDGE_BOTTOMLEFT
76 /** MV modes for P-frames */
79 MV_PMODE_1MV_HPEL_BILIN
,
83 MV_PMODE_INTENSITY_COMP
87 /** MBMODE for interlaced frame P-picture */
91 MV_PMODE_INTFR_2MV_FIELD
,
93 MV_PMODE_INTFR_4MV_FIELD
,
99 /** @name MV types for B-frames */
104 BMV_TYPE_INTERPOLATED
,
109 /** @name Block types for P/B-frames */
111 enum TransformTypes
{
115 TT_8X4
, // both halves
118 TT_4X8
, // both halves
124 CS_HIGH_MOT_INTRA
= 0,
134 /** @name Overlap conditions for Advanced Profile */
144 * FCM Frame Coding Mode
145 * @note some content might be marked interlaced
146 * but have fcm set to 0 as well (e.g. HD-DVD)
148 enum FrameCodingMode
{
149 PROGRESSIVE
= 0, ///< in the bitstream is reported as 00b
150 ILACE_FRAME
, ///< in the bitstream is reported as 10b
151 ILACE_FIELD
///< in the bitstream is reported as 11b
155 * @todo Change size wherever another size is more efficient
156 * Many members are only used for Advanced Profile
158 typedef struct VC1Context
{
161 H264ChromaContext h264chroma
;
162 VC1DSPContext vc1dsp
;
166 /** Simple/Main Profile sequence header */
168 int res_sprite
; ///< reserved, sprite mode
169 int res_y411
; ///< reserved, old interlaced mode
170 int res_x8
; ///< reserved
171 int multires
; ///< frame-level RESPIC syntax element present
172 int res_fasttx
; ///< reserved, always 1
173 int res_transtab
; ///< reserved, always 0
174 int rangered
; ///< RANGEREDFRM (range reduction) syntax element present
176 int res_rtm_flag
; ///< reserved, set to 1
177 int reserved
; ///< reserved
180 /** Advanced Profile */
182 int level
; ///< 3 bits, for Advanced/Simple Profile, provided by TS layer
183 int chromaformat
; ///< 2 bits, 2=4:2:0, only defined
184 int postprocflag
; ///< Per-frame processing suggestion flag present
185 int broadcast
; ///< TFF/RFF present
186 int interlace
; ///< Progressive/interlaced (RPTFTM syntax element)
187 int tfcntrflag
; ///< TFCNTR present
188 int panscanflag
; ///< NUMPANSCANWIN, TOPLEFT{X,Y}, BOTRIGHT{X,Y} present
189 int refdist_flag
; ///< REFDIST syntax element present in II, IP, PI or PP field picture headers
190 int extended_dmv
; ///< Additional extended dmv range at P/B-frame-level
191 int color_prim
; ///< 8 bits, chroma coordinates of the color primaries
192 int transfer_char
; ///< 8 bits, Opto-electronic transfer characteristics
193 int matrix_coef
; ///< 8 bits, Color primaries->YCbCr transform matrix
194 int hrd_param_flag
; ///< Presence of Hypothetical Reference
195 ///< Decoder parameters
196 int psf
; ///< Progressive Segmented Frame
199 /** Sequence header data for all Profiles
200 * TODO: choose between ints, uint8_ts and monobit flags
203 int profile
; ///< 2 bits, Profile
204 int frmrtq_postproc
; ///< 3 bits
205 int bitrtq_postproc
; ///< 5 bits, quantized framerate-based postprocessing strength
206 int fastuvmc
; ///< Rounding of qpel vector to hpel ? (not in Simple)
207 int extended_mv
; ///< Ext MV in P/B (not in Simple)
208 int dquant
; ///< How qscale varies with MBs, 2 bits (not in Simple)
209 int vstransform
; ///< variable-size [48]x[48] transform type + info
210 int overlap
; ///< overlapped transforms in use
211 int quantizer_mode
; ///< 2 bits, quantizer mode used for sequence, see QUANT_*
212 int finterpflag
; ///< INTERPFRM present
215 /** Frame decoding info for all profiles */
217 uint8_t mv_mode
; ///< MV coding mode
218 uint8_t mv_mode2
; ///< Secondary MV coding mode (B-frames)
219 int k_x
; ///< Number of bits for MVs (depends on MV range)
220 int k_y
; ///< Number of bits for MVs (depends on MV range)
221 int range_x
, range_y
; ///< MV range
222 uint8_t pq
, altpq
; ///< Current/alternate frame quantizer scale
223 uint8_t zz_8x8
[4][64]; ///< Zigzag table for TT_8x8, permuted for IDCT
224 int left_blk_sh
, top_blk_sh
; ///< Either 3 or 0, positions of l/t in blk[]
225 const uint8_t* zz_8x4
; ///< Zigzag scan table for TT_8x4 coding mode
226 const uint8_t* zz_4x8
; ///< Zigzag scan table for TT_4x8 coding mode
227 /** pquant parameters */
234 /** AC coding set indexes
235 * @see 8.1.1.10, p(1)10
238 int c_ac_table_index
; ///< Chroma index from ACFRM element
239 int y_ac_table_index
; ///< Luma index from AC2FRM element
241 int ttfrm
; ///< Transform type info present at frame level
242 uint8_t ttmbf
; ///< Transform type flag
243 int *ttblk_base
, *ttblk
; ///< Transform type at the block level
244 int codingset
; ///< index of current table set from 11.8 to use for luma block decoding
245 int codingset2
; ///< index of current table set from 11.8 to use for chroma block decoding
246 int pqindex
; ///< raw pqindex used in coding set selection
247 int a_avail
, c_avail
;
248 uint8_t *mb_type_base
, *mb_type
[3];
251 /** Luma compensation parameters */
256 int16_t bfraction
; ///< Relative position % anchors=> how to scale MVs
257 uint8_t halfpq
; ///< Uniform quant over image and qp+.5
258 uint8_t respic
; ///< Frame-level flag for resized images
259 int buffer_fullness
; ///< HRD info
261 * -# 0 -> [-64n 63.f] x [-32, 31.f]
262 * -# 1 -> [-128, 127.f] x [-64, 63.f]
263 * -# 2 -> [-512, 511.f] x [-128, 127.f]
264 * -# 3 -> [-1024, 1023.f] x [-256, 255.f]
266 uint8_t mvrange
; ///< Extended MV range flag
267 uint8_t pquantizer
; ///< Uniform (over sequence) quantizer in use
268 VLC
*cbpcy_vlc
; ///< CBPCY VLC table
269 int tt_index
; ///< Index for Transform Type tables (to decode TTMB)
270 uint8_t* mv_type_mb_plane
; ///< bitplane for mv_type == (4MV)
271 uint8_t* direct_mb_plane
; ///< bitplane for "direct" MBs
272 uint8_t* forward_mb_plane
; ///< bitplane for "forward" MBs
273 int mv_type_is_raw
; ///< mv type mb plane is not coded
274 int dmb_is_raw
; ///< direct mb plane is raw
275 int fmb_is_raw
; ///< forward mb plane is raw
276 int skip_is_raw
; ///< skip mb plane is not coded
277 uint8_t last_luty
[2][256], last_lutuv
[2][256]; ///< lookup tables used for intensity compensation
278 uint8_t aux_luty
[2][256], aux_lutuv
[2][256]; ///< lookup tables used for intensity compensation
279 uint8_t next_luty
[2][256], next_lutuv
[2][256]; ///< lookup tables used for intensity compensation
280 uint8_t (*curr_luty
)[256] ,(*curr_lutuv
)[256];
281 int last_use_ic
, curr_use_ic
, next_use_ic
, aux_use_ic
;
282 int rnd
; ///< rounding control
284 /** Frame decoding info for S/M profiles only */
286 uint8_t rangeredfrm
; ///< out_sample = CLIP((in_sample-128)*2+128)
290 /** Frame decoding info for Advanced profile */
292 enum FrameCodingMode fcm
;
293 uint8_t numpanscanwin
;
295 uint8_t rptfrm
, tff
, rff
;
298 uint16_t bottomrightx
;
299 uint16_t bottomrighty
;
302 int hrd_num_leaky_buckets
;
303 uint8_t bit_rate_exponent
;
304 uint8_t buffer_size_exponent
;
305 uint8_t* acpred_plane
; ///< AC prediction flags bitplane
307 uint8_t* over_flags_plane
; ///< Overflags bitplane
310 uint16_t *hrd_rate
, *hrd_buffer
;
311 uint8_t *hrd_fullness
;
312 uint8_t range_mapy_flag
;
313 uint8_t range_mapuv_flag
;
318 /** Frame decoding info for interlaced picture */
319 uint8_t dmvrange
; ///< Extended differential MV range flag
322 uint8_t lumscale2
; ///< for interlaced field P picture
330 uint8_t* fieldtx_plane
;
333 uint8_t *blk_mv_type_base
, *blk_mv_type
; ///< 0: frame MV, 1: field MV (interlaced frame)
334 uint8_t *mv_f_base
, *mv_f
[2]; ///< 0: MV obtained from same field, 1: opposite field
335 uint8_t *mv_f_next_base
, *mv_f_next
[2];
336 int field_mode
; ///< 1 for interlaced field pictures
339 int refdist
; ///< distance of the current picture from reference
340 int numref
; ///< number of past field pictures used as reference
341 // 0 corresponds to 1 and 1 corresponds to 2 references
342 int reffield
; ///< if numref = 0 (1 reference) then reffield decides which
343 // field to use among the two fields from previous frame
344 int intcompfield
; ///< which of the two fields to be intensity compensated
345 // 0: both fields, 1: bottom field, 2: top field
346 int cur_field_type
; ///< 0: top, 1: bottom
347 int ref_field_type
[2]; ///< forward and backward reference field type (top or bottom)
348 int blocks_off
, mb_off
;
349 int qs_last
; ///< if qpel has been used in the previous (tr.) picture
351 int frfd
, brfd
; ///< reference frame distance (forward or backward)
352 int first_pic_header_flag
;
355 /** Frame decoding info for sprite modes */
359 AVFrame
*sprite_output_frame
;
360 int output_width
, output_height
, sprite_width
, sprite_height
;
361 uint8_t* sr_rows
[2][2]; ///< Sprite resizer line cache
368 int16_t (*block
)[6][64];
369 int n_allocated_blks
, cur_blk_idx
, left_blk_idx
, topleft_blk_idx
, top_blk_idx
;
370 uint32_t *cbp_base
, *cbp
;
371 uint8_t *is_intra_base
, *is_intra
;
372 int16_t (*luma_mv_base
)[2], (*luma_mv
)[2];
373 uint8_t bfraction_lut_index
; ///< Index for BFRACTION value (see Table 40, reproduced into ff_vc1_bfraction_lut[])
374 uint8_t broken_link
; ///< Broken link flag (BROKEN_LINK syntax element)
375 uint8_t closed_entry
; ///< Closed entry point flag (CLOSED_ENTRY syntax element)
377 int end_mb_x
; ///< Horizontal macroblock limit (used only by mss2)
379 int parse_only
; ///< Context is used within parser
380 int resync_marker
; ///< could this stream contain resync markers
384 * Decode Simple/Main Profiles sequence header
385 * @see Figure 7-8, p16-17
386 * @param avctx Codec context
387 * @param gb GetBit context initialized from Codec context extra_data
390 int ff_vc1_decode_sequence_header(AVCodecContext
*avctx
, VC1Context
*v
, GetBitContext
*gb
);
392 int ff_vc1_decode_entry_point(AVCodecContext
*avctx
, VC1Context
*v
, GetBitContext
*gb
);
394 int ff_vc1_parse_frame_header (VC1Context
*v
, GetBitContext
*gb
);
395 int ff_vc1_parse_frame_header_adv(VC1Context
*v
, GetBitContext
*gb
);
396 int ff_vc1_init_common(VC1Context
*v
);
398 int ff_vc1_decode_init_alloc_tables(VC1Context
*v
);
399 void ff_vc1_init_transposed_scantables(VC1Context
*v
);
400 int ff_vc1_decode_end(AVCodecContext
*avctx
);
401 void ff_vc1_decode_blocks(VC1Context
*v
);
403 void ff_vc1_loop_filter_iblk(VC1Context
*v
, int pq
);
404 void ff_vc1_loop_filter_iblk_delayed(VC1Context
*v
, int pq
);
405 void ff_vc1_smooth_overlap_filter_iblk(VC1Context
*v
);
406 void ff_vc1_apply_p_loop_filter(VC1Context
*v
);
408 void ff_vc1_mc_1mv(VC1Context
*v
, int dir
);
409 void ff_vc1_mc_4mv_luma(VC1Context
*v
, int n
, int dir
, int avg
);
410 void ff_vc1_mc_4mv_chroma(VC1Context
*v
, int dir
);
411 void ff_vc1_mc_4mv_chroma4(VC1Context
*v
, int dir
, int dir2
, int avg
);
413 void ff_vc1_interp_mc(VC1Context
*v
);
415 #endif /* AVCODEC_VC1_H */