libavcodec/vc1data.h
04d7f601
 /*
  * VC-1 and WMV3 decoder
  * copyright (c) 2006 Konstantin Shishkov
  * (c) 2005 anonymous, Alex Beregszaszi, Michael Niedermayer
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
04d7f601
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
04d7f601
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
04d7f601
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
04d7f601
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
21aa398f
 /**
ba87f080
  * @file
be3492ec
  * VC-1 tables.
21aa398f
  */
 
98790382
 #ifndef AVCODEC_VC1DATA_H
 #define AVCODEC_VC1DATA_H
21aa398f
 
99545457
 #include <stdint.h>
245976da
 #include "libavutil/rational.h"
9106a698
 #include "get_bits.h"
99545457
 
22c3029d
 /** Table for conversion between TTBLK and TTMB */
a5c14fca
 extern const int ff_vc1_ttblk_to_tt[3][8];
22c3029d
 
a5c14fca
 extern const int ff_vc1_ttfrm_to_tt[4];
22c3029d
 
 /** MV P mode - the 5th element is only used for mode 1 */
a5c14fca
 extern const uint8_t ff_vc1_mv_pmode_table[2][5];
 extern const uint8_t ff_vc1_mv_pmode_table2[2][4];
22c3029d
 
a5c14fca
 extern const int ff_vc1_fps_nr[5], ff_vc1_fps_dr[2];
 extern const uint8_t ff_vc1_pquant_table[3][32];
22c3029d
 
 /** @name VC-1 VLC tables and defines
  *  @todo TODO move this into the context
  */
 //@{
 #define VC1_BFRACTION_VLC_BITS 7
a5c14fca
 extern VLC ff_vc1_bfraction_vlc;
22c3029d
 #define VC1_IMODE_VLC_BITS 4
a5c14fca
 extern VLC ff_vc1_imode_vlc;
22c3029d
 #define VC1_NORM2_VLC_BITS 3
a5c14fca
 extern VLC ff_vc1_norm2_vlc;
22c3029d
 #define VC1_NORM6_VLC_BITS 9
a5c14fca
 extern VLC ff_vc1_norm6_vlc;
22c3029d
 /* Could be optimized, one table only needs 8 bits */
 #define VC1_TTMB_VLC_BITS 9 //12
a5c14fca
 extern VLC ff_vc1_ttmb_vlc[3];
22c3029d
 #define VC1_MV_DIFF_VLC_BITS 9 //15
a5c14fca
 extern VLC ff_vc1_mv_diff_vlc[4];
22c3029d
 #define VC1_CBPCY_P_VLC_BITS 9 //14
a5c14fca
 extern VLC ff_vc1_cbpcy_p_vlc[4];
22c3029d
 #define VC1_4MV_BLOCK_PATTERN_VLC_BITS 6
a5c14fca
 extern VLC ff_vc1_4mv_block_pattern_vlc[4];
22c3029d
 #define VC1_TTBLK_VLC_BITS 5
a5c14fca
 extern VLC ff_vc1_ttblk_vlc[3];
22c3029d
 #define VC1_SUBBLKPAT_VLC_BITS 6
a5c14fca
 extern VLC ff_vc1_subblkpat_vlc[3];
22c3029d
 
a5c14fca
 extern VLC ff_vc1_ac_coeff_table[8];
22c3029d
 //@}
 
 
1dc1ce64
 #if 0 //original bfraction from vc9data.h, not conforming to standard
a5c14fca
 /* Denominator used for ff_vc1_bfraction_lut */
5df68893
 #define B_FRACTION_DEN  840
 
21aa398f
 /* bfraction is fractional, we scale to the GCD 3*5*7*8 = 840 */
a5c14fca
 extern const int16_t ff_vc1_bfraction_lut[23];
1dc1ce64
 #else
a5c14fca
 /* Denominator used for ff_vc1_bfraction_lut */
1dc1ce64
 #define B_FRACTION_DEN  256
 
 /* pre-computed scales for all bfractions and base=256 */
a5c14fca
 extern const int16_t ff_vc1_bfraction_lut[23];
1dc1ce64
 #endif
 
a5c14fca
 extern const uint8_t ff_vc1_bfraction_bits[23];
 extern const uint8_t ff_vc1_bfraction_codes[23];
21aa398f
 
 //Same as H.264
a5c14fca
 extern const AVRational ff_vc1_pixel_aspect[16];
21aa398f
 
 /* BitPlane IMODE - such a small table... */
a5c14fca
 extern const uint8_t ff_vc1_imode_codes[7];
 extern const uint8_t ff_vc1_imode_bits[7];
21aa398f
 
 /* Normal-2 imode */
a5c14fca
 extern const uint8_t ff_vc1_norm2_codes[4];
 extern const uint8_t ff_vc1_norm2_bits[4];
 extern const uint16_t ff_vc1_norm6_codes[64];
 extern const uint8_t ff_vc1_norm6_bits[64];
9c68c65a
 /* Normal-6 imode */
a5c14fca
 extern const uint8_t ff_vc1_norm6_spec[64][5];
5e424311
 
21aa398f
 /* 4MV Block pattern VLC tables */
a5c14fca
 extern const uint8_t ff_vc1_4mv_block_pattern_codes[4][16];
 extern const uint8_t ff_vc1_4mv_block_pattern_bits[4][16];
21aa398f
 
986a865f
 extern const uint8_t wmv3_dc_scale_table[32];
21aa398f
 
 /* P-Picture CBPCY VLC tables */
a5c14fca
 extern const uint16_t ff_vc1_cbpcy_p_codes[4][64];
 extern const uint8_t ff_vc1_cbpcy_p_bits[4][64];
21aa398f
 
e5540b3f
 /* MacroBlock Transform Type: 7.1.3.11, p89
21aa398f
  * 8x8:B
  * 8x4:B:btm  8x4:B:top  8x4:B:both,
  * 4x8:B:right  4x8:B:left  4x8:B:both
  * 4x4:B  8x8:MB
  * 8x4:MB:btm  8x4:MB:top  8x4,MB,both
  * 4x8,MB,right  4x8,MB,left
  * 4x4,MB                               */
a5c14fca
 extern const uint16_t ff_vc1_ttmb_codes[3][16];
21aa398f
 
a5c14fca
 extern const uint8_t ff_vc1_ttmb_bits[3][16];
21aa398f
 
7cc84d24
 /* TTBLK (Transform Type per Block) tables */
a5c14fca
 extern const uint8_t ff_vc1_ttblk_codes[3][8];
 extern const uint8_t ff_vc1_ttblk_bits[3][8];
7cc84d24
 
 /* SUBBLKPAT tables, p93-94, reordered */
a5c14fca
 extern const uint8_t ff_vc1_subblkpat_codes[3][15];
 extern const uint8_t ff_vc1_subblkpat_bits[3][15];
21aa398f
 
 /* MV differential tables, p265 */
a5c14fca
 extern const uint16_t ff_vc1_mv_diff_codes[4][73];
 extern const uint8_t ff_vc1_mv_diff_bits[4][73];
21aa398f
 
0c040aac
 /* DC differentials low+hi-mo, p217 are the same as in msmpeg4data .h */
e5540b3f
 
 /* Scantables/ZZ scan are at 11.9 (p262) and 8.1.1.12 (p10) */
a5c14fca
 extern const int8_t ff_vc1_simple_progressive_4x4_zz [16];
 extern const int8_t ff_vc1_adv_progressive_8x4_zz [32];
 extern const int8_t ff_vc1_adv_progressive_4x8_zz [32];
 extern const int8_t ff_vc1_adv_interlaced_8x8_zz [64];
 extern const int8_t ff_vc1_adv_interlaced_8x4_zz [32];
 extern const int8_t ff_vc1_adv_interlaced_4x8_zz [32];
 extern const int8_t ff_vc1_adv_interlaced_4x4_zz [16];
be3492ec
 
 /* DQScale as specified in 8.1.3.9 - almost identical to 0x40000/i */
a5c14fca
 extern const int32_t ff_vc1_dqscale[63];
986a865f
 
98790382
 #endif /* AVCODEC_VC1DATA_H */