annotate vc1.h @ 4925:ff4cd98bc90c libavcodec

simplify
author lorenm
date Sun, 06 May 2007 09:17:50 +0000
parents 811b9d7e1d3d
children 194f4ced7c50
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4900
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
1 /*
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
2 * VC-1 and WMV3 decoder
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
3 * Copyright (c) 2006-2007 Konstantin Shishkov
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
4 * Partly based on vc9.c (c) 2005 Anonymous, Alex Beregszaszi, Michael Niedermayer
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
5 *
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
6 * This file is part of FFmpeg.
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
7 *
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
8 * FFmpeg is free software; you can redistribute it and/or
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
9 * modify it under the terms of the GNU Lesser General Public
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
10 * License as published by the Free Software Foundation; either
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
11 * version 2.1 of the License, or (at your option) any later version.
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
12 *
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
13 * FFmpeg is distributed in the hope that it will be useful,
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
16 * Lesser General Public License for more details.
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
17 *
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
18 * You should have received a copy of the GNU Lesser General Public
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
19 * License along with FFmpeg; if not, write to the Free Software
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
21 */
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
22
4903
kostya
parents: 4902
diff changeset
23 /** Markers used in VC-1 AP frame data */
4900
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
24 //@{
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
25 enum VC1Code{
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
26 VC1_CODE_RES0 = 0x00000100,
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
27 VC1_CODE_ENDOFSEQ = 0x0000010A,
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
28 VC1_CODE_SLICE,
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
29 VC1_CODE_FIELD,
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
30 VC1_CODE_FRAME,
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
31 VC1_CODE_ENTRYPOINT,
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
32 VC1_CODE_SEQHDR,
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
33 };
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
34 //@}
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
35
36051a4c182a Move VC1 parser to its own file.
diego
parents:
diff changeset
36 #define IS_MARKER(x) (((x) & ~0xFF) == VC1_CODE_RES0)
4902
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
37
4904
811b9d7e1d3d 100l to myself. Do not include stuff unneeded by parser
kostya
parents: 4903
diff changeset
38 #ifndef VC1_PARSER_ONLY
4902
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
39 /** Available Profiles */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
40 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
41 enum Profile {
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
42 PROFILE_SIMPLE,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
43 PROFILE_MAIN,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
44 PROFILE_COMPLEX, ///< TODO: WMV9 specific
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
45 PROFILE_ADVANCED
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
46 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
47 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
48
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
49 /** Sequence quantizer mode */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
50 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
51 enum QuantMode {
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
52 QUANT_FRAME_IMPLICIT, ///< Implicitly specified at frame level
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
53 QUANT_FRAME_EXPLICIT, ///< Explicitly specified at frame level
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
54 QUANT_NON_UNIFORM, ///< Non-uniform quant used for all frames
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
55 QUANT_UNIFORM ///< Uniform quant used for all frames
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
56 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
57 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
58
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
59 /** Where quant can be changed */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
60 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
61 enum DQProfile {
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
62 DQPROFILE_FOUR_EDGES,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
63 DQPROFILE_DOUBLE_EDGES,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
64 DQPROFILE_SINGLE_EDGE,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
65 DQPROFILE_ALL_MBS
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
66 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
67 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
68
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
69 /** @name Where quant can be changed
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
70 */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
71 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
72 enum DQSingleEdge {
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
73 DQSINGLE_BEDGE_LEFT,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
74 DQSINGLE_BEDGE_TOP,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
75 DQSINGLE_BEDGE_RIGHT,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
76 DQSINGLE_BEDGE_BOTTOM
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
77 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
78 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
79
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
80 /** Which pair of edges is quantized with ALTPQUANT */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
81 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
82 enum DQDoubleEdge {
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
83 DQDOUBLE_BEDGE_TOPLEFT,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
84 DQDOUBLE_BEDGE_TOPRIGHT,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
85 DQDOUBLE_BEDGE_BOTTOMRIGHT,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
86 DQDOUBLE_BEDGE_BOTTOMLEFT
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
87 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
88 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
89
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
90 /** MV modes for P frames */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
91 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
92 enum MVModes {
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
93 MV_PMODE_1MV_HPEL_BILIN,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
94 MV_PMODE_1MV,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
95 MV_PMODE_1MV_HPEL,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
96 MV_PMODE_MIXED_MV,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
97 MV_PMODE_INTENSITY_COMP
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
98 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
99 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
100
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
101 /** @name MV types for B frames */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
102 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
103 enum BMVTypes {
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
104 BMV_TYPE_BACKWARD,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
105 BMV_TYPE_FORWARD,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
106 BMV_TYPE_INTERPOLATED
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
107 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
108 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
109
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
110 /** @name Block types for P/B frames */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
111 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
112 enum TransformTypes {
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
113 TT_8X8,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
114 TT_8X4_BOTTOM,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
115 TT_8X4_TOP,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
116 TT_8X4, //Both halves
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
117 TT_4X8_RIGHT,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
118 TT_4X8_LEFT,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
119 TT_4X8, //Both halves
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
120 TT_4X4
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
121 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
122 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
123
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
124 /** Table for conversion between TTBLK and TTMB */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
125 static const int ttblk_to_tt[3][8] = {
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
126 { TT_8X4, TT_4X8, TT_8X8, TT_4X4, TT_8X4_TOP, TT_8X4_BOTTOM, TT_4X8_RIGHT, TT_4X8_LEFT },
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
127 { TT_8X8, TT_4X8_RIGHT, TT_4X8_LEFT, TT_4X4, TT_8X4, TT_4X8, TT_8X4_BOTTOM, TT_8X4_TOP },
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
128 { TT_8X8, TT_4X8, TT_4X4, TT_8X4_BOTTOM, TT_4X8_RIGHT, TT_4X8_LEFT, TT_8X4, TT_8X4_TOP }
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
129 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
130
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
131 static const int ttfrm_to_tt[4] = { TT_8X8, TT_8X4, TT_4X8, TT_4X4 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
132
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
133 /** MV P mode - the 5th element is only used for mode 1 */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
134 static const uint8_t mv_pmode_table[2][5] = {
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
135 { MV_PMODE_1MV_HPEL_BILIN, MV_PMODE_1MV, MV_PMODE_1MV_HPEL, MV_PMODE_INTENSITY_COMP, MV_PMODE_MIXED_MV },
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
136 { MV_PMODE_1MV, MV_PMODE_MIXED_MV, MV_PMODE_1MV_HPEL, MV_PMODE_INTENSITY_COMP, MV_PMODE_1MV_HPEL_BILIN }
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
137 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
138 static const uint8_t mv_pmode_table2[2][4] = {
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
139 { MV_PMODE_1MV_HPEL_BILIN, MV_PMODE_1MV, MV_PMODE_1MV_HPEL, MV_PMODE_MIXED_MV },
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
140 { MV_PMODE_1MV, MV_PMODE_MIXED_MV, MV_PMODE_1MV_HPEL, MV_PMODE_1MV_HPEL_BILIN }
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
141 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
142
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
143 /** One more frame type */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
144 #define BI_TYPE 7
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
145
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
146 static const int fps_nr[5] = { 24, 25, 30, 50, 60 },
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
147 fps_dr[2] = { 1000, 1001 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
148 static const uint8_t pquant_table[3][32] = {
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
149 { /* Implicit quantizer */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
150 0, 1, 2, 3, 4, 5, 6, 7, 8, 6, 7, 8, 9, 10, 11, 12,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
151 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 29, 31
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
152 },
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
153 { /* Explicit quantizer, pquantizer uniform */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
154 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
155 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
156 },
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
157 { /* Explicit quantizer, pquantizer non-uniform */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
158 0, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
159 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
160 }
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
161 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
162
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
163 /** @name VC-1 VLC tables and defines
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
164 * @todo TODO move this into the context
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
165 */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
166 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
167 #define VC1_BFRACTION_VLC_BITS 7
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
168 static VLC vc1_bfraction_vlc;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
169 #define VC1_IMODE_VLC_BITS 4
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
170 static VLC vc1_imode_vlc;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
171 #define VC1_NORM2_VLC_BITS 3
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
172 static VLC vc1_norm2_vlc;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
173 #define VC1_NORM6_VLC_BITS 9
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
174 static VLC vc1_norm6_vlc;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
175 /* Could be optimized, one table only needs 8 bits */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
176 #define VC1_TTMB_VLC_BITS 9 //12
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
177 static VLC vc1_ttmb_vlc[3];
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
178 #define VC1_MV_DIFF_VLC_BITS 9 //15
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
179 static VLC vc1_mv_diff_vlc[4];
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
180 #define VC1_CBPCY_P_VLC_BITS 9 //14
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
181 static VLC vc1_cbpcy_p_vlc[4];
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
182 #define VC1_4MV_BLOCK_PATTERN_VLC_BITS 6
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
183 static VLC vc1_4mv_block_pattern_vlc[4];
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
184 #define VC1_TTBLK_VLC_BITS 5
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
185 static VLC vc1_ttblk_vlc[3];
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
186 #define VC1_SUBBLKPAT_VLC_BITS 6
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
187 static VLC vc1_subblkpat_vlc[3];
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
188
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
189 static VLC vc1_ac_coeff_table[8];
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
190 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
191
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
192 enum CodingSet {
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
193 CS_HIGH_MOT_INTRA = 0,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
194 CS_HIGH_MOT_INTER,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
195 CS_LOW_MOT_INTRA,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
196 CS_LOW_MOT_INTER,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
197 CS_MID_RATE_INTRA,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
198 CS_MID_RATE_INTER,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
199 CS_HIGH_RATE_INTRA,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
200 CS_HIGH_RATE_INTER
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
201 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
202
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
203 /** @name Overlap conditions for Advanced Profile */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
204 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
205 enum COTypes {
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
206 CONDOVER_NONE = 0,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
207 CONDOVER_ALL,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
208 CONDOVER_SELECT
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
209 };
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
210 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
211
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
212
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
213 /** The VC1 Context
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
214 * @fixme Change size wherever another size is more efficient
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
215 * Many members are only used for Advanced Profile
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
216 */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
217 typedef struct VC1Context{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
218 MpegEncContext s;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
219
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
220 int bits;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
221
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
222 /** Simple/Main Profile sequence header */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
223 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
224 int res_sm; ///< reserved, 2b
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
225 int res_x8; ///< reserved
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
226 int multires; ///< frame-level RESPIC syntax element present
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
227 int res_fasttx; ///< reserved, always 1
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
228 int res_transtab; ///< reserved, always 0
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
229 int rangered; ///< RANGEREDFRM (range reduction) syntax element present
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
230 ///< at frame level
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
231 int res_rtm_flag; ///< reserved, set to 1
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
232 int reserved; ///< reserved
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
233 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
234
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
235 /** Advanced Profile */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
236 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
237 int level; ///< 3bits, for Advanced/Simple Profile, provided by TS layer
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
238 int chromaformat; ///< 2bits, 2=4:2:0, only defined
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
239 int postprocflag; ///< Per-frame processing suggestion flag present
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
240 int broadcast; ///< TFF/RFF present
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
241 int interlace; ///< Progressive/interlaced (RPTFTM syntax element)
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
242 int tfcntrflag; ///< TFCNTR present
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
243 int panscanflag; ///< NUMPANSCANWIN, TOPLEFT{X,Y}, BOTRIGHT{X,Y} present
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
244 int extended_dmv; ///< Additional extended dmv range at P/B frame-level
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
245 int color_prim; ///< 8bits, chroma coordinates of the color primaries
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
246 int transfer_char; ///< 8bits, Opto-electronic transfer characteristics
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
247 int matrix_coef; ///< 8bits, Color primaries->YCbCr transform matrix
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
248 int hrd_param_flag; ///< Presence of Hypothetical Reference
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
249 ///< Decoder parameters
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
250 int psf; ///< Progressive Segmented Frame
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
251 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
252
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
253 /** Sequence header data for all Profiles
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
254 * TODO: choose between ints, uint8_ts and monobit flags
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
255 */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
256 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
257 int profile; ///< 2bits, Profile
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
258 int frmrtq_postproc; ///< 3bits,
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
259 int bitrtq_postproc; ///< 5bits, quantized framerate-based postprocessing strength
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
260 int fastuvmc; ///< Rounding of qpel vector to hpel ? (not in Simple)
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
261 int extended_mv; ///< Ext MV in P/B (not in Simple)
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
262 int dquant; ///< How qscale varies with MBs, 2bits (not in Simple)
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
263 int vstransform; ///< variable-size [48]x[48] transform type + info
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
264 int overlap; ///< overlapped transforms in use
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
265 int quantizer_mode; ///< 2bits, quantizer mode used for sequence, see QUANT_*
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
266 int finterpflag; ///< INTERPFRM present
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
267 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
268
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
269 /** Frame decoding info for all profiles */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
270 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
271 uint8_t mv_mode; ///< MV coding monde
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
272 uint8_t mv_mode2; ///< Secondary MV coding mode (B frames)
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
273 int k_x; ///< Number of bits for MVs (depends on MV range)
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
274 int k_y; ///< Number of bits for MVs (depends on MV range)
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
275 int range_x, range_y; ///< MV range
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
276 uint8_t pq, altpq; ///< Current/alternate frame quantizer scale
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
277 /** pquant parameters */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
278 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
279 uint8_t dquantfrm;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
280 uint8_t dqprofile;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
281 uint8_t dqsbedge;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
282 uint8_t dqbilevel;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
283 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
284 /** AC coding set indexes
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
285 * @see 8.1.1.10, p(1)10
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
286 */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
287 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
288 int c_ac_table_index; ///< Chroma index from ACFRM element
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
289 int y_ac_table_index; ///< Luma index from AC2FRM element
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
290 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
291 int ttfrm; ///< Transform type info present at frame level
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
292 uint8_t ttmbf; ///< Transform type flag
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
293 uint8_t ttblk4x4; ///< Value of ttblk which indicates a 4x4 transform
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
294 int codingset; ///< index of current table set from 11.8 to use for luma block decoding
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
295 int codingset2; ///< index of current table set from 11.8 to use for chroma block decoding
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
296 int pqindex; ///< raw pqindex used in coding set selection
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
297 int a_avail, c_avail;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
298 uint8_t *mb_type_base, *mb_type[3];
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
299
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
300
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
301 /** Luma compensation parameters */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
302 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
303 uint8_t lumscale;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
304 uint8_t lumshift;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
305 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
306 int16_t bfraction; ///< Relative position % anchors=> how to scale MVs
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
307 uint8_t halfpq; ///< Uniform quant over image and qp+.5
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
308 uint8_t respic; ///< Frame-level flag for resized images
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
309 int buffer_fullness; ///< HRD info
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
310 /** Ranges:
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
311 * -# 0 -> [-64n 63.f] x [-32, 31.f]
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
312 * -# 1 -> [-128, 127.f] x [-64, 63.f]
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
313 * -# 2 -> [-512, 511.f] x [-128, 127.f]
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
314 * -# 3 -> [-1024, 1023.f] x [-256, 255.f]
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
315 */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
316 uint8_t mvrange;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
317 uint8_t pquantizer; ///< Uniform (over sequence) quantizer in use
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
318 VLC *cbpcy_vlc; ///< CBPCY VLC table
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
319 int tt_index; ///< Index for Transform Type tables
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
320 uint8_t* mv_type_mb_plane; ///< bitplane for mv_type == (4MV)
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
321 uint8_t* direct_mb_plane; ///< bitplane for "direct" MBs
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
322 int mv_type_is_raw; ///< mv type mb plane is not coded
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
323 int dmb_is_raw; ///< direct mb plane is raw
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
324 int skip_is_raw; ///< skip mb plane is not coded
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
325 uint8_t luty[256], lutuv[256]; // lookup tables used for intensity compensation
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
326 int use_ic; ///< use intensity compensation in B-frames
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
327 int rnd; ///< rounding control
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
328
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
329 /** Frame decoding info for S/M profiles only */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
330 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
331 uint8_t rangeredfrm; ///< out_sample = CLIP((in_sample-128)*2+128)
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
332 uint8_t interpfrm;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
333 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
334
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
335 /** Frame decoding info for Advanced profile */
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
336 //@{
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
337 uint8_t fcm; ///< 0->Progressive, 2->Frame-Interlace, 3->Field-Interlace
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
338 uint8_t numpanscanwin;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
339 uint8_t tfcntr;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
340 uint8_t rptfrm, tff, rff;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
341 uint16_t topleftx;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
342 uint16_t toplefty;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
343 uint16_t bottomrightx;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
344 uint16_t bottomrighty;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
345 uint8_t uvsamp;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
346 uint8_t postproc;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
347 int hrd_num_leaky_buckets;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
348 uint8_t bit_rate_exponent;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
349 uint8_t buffer_size_exponent;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
350 uint8_t* acpred_plane; ///< AC prediction flags bitplane
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
351 int acpred_is_raw;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
352 uint8_t* over_flags_plane; ///< Overflags bitplane
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
353 int overflg_is_raw;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
354 uint8_t condover;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
355 uint16_t *hrd_rate, *hrd_buffer;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
356 uint8_t *hrd_fullness;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
357 uint8_t range_mapy_flag;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
358 uint8_t range_mapuv_flag;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
359 uint8_t range_mapy;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
360 uint8_t range_mapuv;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
361 //@}
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
362
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
363 int p_frame_skipped;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
364 int bi_type;
1296fd337cdf Move some declarations into header
kostya
parents: 4900
diff changeset
365 } VC1Context;
4904
811b9d7e1d3d 100l to myself. Do not include stuff unneeded by parser
kostya
parents: 4903
diff changeset
366 #endif