annotate vc1data.h @ 12530:63edd10ad4bc libavcodec tip

Try to fix crashes introduced by r25218 r25218 made assumptions about the existence of past reference frames that weren't necessarily true.
author darkshikari
date Tue, 28 Sep 2010 09:06:22 +0000
parents 7dd2a45249a9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
1 /*
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
2 * VC-1 and WMV3 decoder
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
3 * copyright (c) 2006 Konstantin Shishkov
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
4 * (c) 2005 anonymous, Alex Beregszaszi, Michael Niedermayer
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
5 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
6 * This file is part of FFmpeg.
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
7 *
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
8 * FFmpeg is free software; you can redistribute it and/or
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
9 * modify it under the terms of the GNU Lesser General Public
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
10 * License as published by the Free Software Foundation; either
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
11 * version 2.1 of the License, or (at your option) any later version.
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
12 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
13 * FFmpeg is distributed in the hope that it will be useful,
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
16 * Lesser General Public License for more details.
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
17 *
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
18 * You should have received a copy of the GNU Lesser General Public
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
19 * License along with FFmpeg; if not, write to the Free Software
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
21 */
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3689
diff changeset
22
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
23 /**
11644
7dd2a45249a9 Remove explicit filename from Doxygen @file commands.
diego
parents: 9428
diff changeset
24 * @file
3360
2c4ddf5b9217 VC-1 decoder with I-frames support and partial P-frames decoding
kostya
parents: 3359
diff changeset
25 * VC-1 tables.
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
26 */
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
27
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 7136
diff changeset
28 #ifndef AVCODEC_VC1DATA_H
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 7136
diff changeset
29 #define AVCODEC_VC1DATA_H
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
30
5162
4394344397d8 include all prerequisites in header files
mru
parents: 4949
diff changeset
31 #include <stdint.h>
6763
f7cbb7733146 Use full path for #includes from another directory.
diego
parents: 5830
diff changeset
32 #include "libavutil/rational.h"
9428
0dce4fe6e6f3 Rename bitstream.h to get_bits.h.
stefano
parents: 8718
diff changeset
33 #include "get_bits.h"
5162
4394344397d8 include all prerequisites in header files
mru
parents: 4949
diff changeset
34
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
35 /** Table for conversion between TTBLK and TTMB */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
36 extern const int ff_vc1_ttblk_to_tt[3][8];
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
37
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
38 extern const int ff_vc1_ttfrm_to_tt[4];
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
39
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
40 /** MV P mode - the 5th element is only used for mode 1 */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
41 extern const uint8_t ff_vc1_mv_pmode_table[2][5];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
42 extern const uint8_t ff_vc1_mv_pmode_table2[2][4];
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
43
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
44 extern const int ff_vc1_fps_nr[5], ff_vc1_fps_dr[2];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
45 extern const uint8_t ff_vc1_pquant_table[3][32];
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
46
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
47 /** @name VC-1 VLC tables and defines
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
48 * @todo TODO move this into the context
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
49 */
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
50 //@{
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
51 #define VC1_BFRACTION_VLC_BITS 7
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
52 extern VLC ff_vc1_bfraction_vlc;
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
53 #define VC1_IMODE_VLC_BITS 4
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
54 extern VLC ff_vc1_imode_vlc;
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
55 #define VC1_NORM2_VLC_BITS 3
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
56 extern VLC ff_vc1_norm2_vlc;
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
57 #define VC1_NORM6_VLC_BITS 9
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
58 extern VLC ff_vc1_norm6_vlc;
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
59 /* Could be optimized, one table only needs 8 bits */
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
60 #define VC1_TTMB_VLC_BITS 9 //12
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
61 extern VLC ff_vc1_ttmb_vlc[3];
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
62 #define VC1_MV_DIFF_VLC_BITS 9 //15
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
63 extern VLC ff_vc1_mv_diff_vlc[4];
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
64 #define VC1_CBPCY_P_VLC_BITS 9 //14
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
65 extern VLC ff_vc1_cbpcy_p_vlc[4];
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
66 #define VC1_4MV_BLOCK_PATTERN_VLC_BITS 6
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
67 extern VLC ff_vc1_4mv_block_pattern_vlc[4];
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
68 #define VC1_TTBLK_VLC_BITS 5
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
69 extern VLC ff_vc1_ttblk_vlc[3];
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
70 #define VC1_SUBBLKPAT_VLC_BITS 6
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
71 extern VLC ff_vc1_subblkpat_vlc[3];
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
72
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
73 extern VLC ff_vc1_ac_coeff_table[8];
4926
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
74 //@}
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
75
194f4ced7c50 Move variables to vc1data.h
kostya
parents: 4473
diff changeset
76
3689
6d9e8253da2a Proper support for B/BI frames
kostya
parents: 3515
diff changeset
77 #if 0 //original bfraction from vc9data.h, not conforming to standard
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
78 /* Denominator used for ff_vc1_bfraction_lut */
3515
20938be7b67b Some B-frames support (parsing and decoding only, no motion compesation is done)
kostya
parents: 3360
diff changeset
79 #define B_FRACTION_DEN 840
20938be7b67b Some B-frames support (parsing and decoding only, no motion compesation is done)
kostya
parents: 3360
diff changeset
80
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
81 /* bfraction is fractional, we scale to the GCD 3*5*7*8 = 840 */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
82 extern const int16_t ff_vc1_bfraction_lut[23];
3689
6d9e8253da2a Proper support for B/BI frames
kostya
parents: 3515
diff changeset
83 #else
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
84 /* Denominator used for ff_vc1_bfraction_lut */
3689
6d9e8253da2a Proper support for B/BI frames
kostya
parents: 3515
diff changeset
85 #define B_FRACTION_DEN 256
6d9e8253da2a Proper support for B/BI frames
kostya
parents: 3515
diff changeset
86
6d9e8253da2a Proper support for B/BI frames
kostya
parents: 3515
diff changeset
87 /* pre-computed scales for all bfractions and base=256 */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
88 extern const int16_t ff_vc1_bfraction_lut[23];
3689
6d9e8253da2a Proper support for B/BI frames
kostya
parents: 3515
diff changeset
89 #endif
6d9e8253da2a Proper support for B/BI frames
kostya
parents: 3515
diff changeset
90
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
91 extern const uint8_t ff_vc1_bfraction_bits[23];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
92 extern const uint8_t ff_vc1_bfraction_codes[23];
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
93
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
94 //Same as H.264
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
95 extern const AVRational ff_vc1_pixel_aspect[16];
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
96
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
97 /* BitPlane IMODE - such a small table... */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
98 extern const uint8_t ff_vc1_imode_codes[7];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
99 extern const uint8_t ff_vc1_imode_bits[7];
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
100
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
101 /* Normal-2 imode */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
102 extern const uint8_t ff_vc1_norm2_codes[4];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
103 extern const uint8_t ff_vc1_norm2_bits[4];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
104 extern const uint16_t ff_vc1_norm6_codes[64];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
105 extern const uint8_t ff_vc1_norm6_bits[64];
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
106 /* Normal-6 imode */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
107 extern const uint8_t ff_vc1_norm6_spec[64][5];
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
108
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
109 /* 4MV Block pattern VLC tables */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
110 extern const uint8_t ff_vc1_4mv_block_pattern_codes[4][16];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
111 extern const uint8_t ff_vc1_4mv_block_pattern_bits[4][16];
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
112
4928
7ec5c2e20271 Move VC-1 data to .c file
kostya
parents: 4926
diff changeset
113 extern const uint8_t wmv3_dc_scale_table[32];
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
114
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
115 /* P-Picture CBPCY VLC tables */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
116 extern const uint16_t ff_vc1_cbpcy_p_codes[4][64];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
117 extern const uint8_t ff_vc1_cbpcy_p_bits[4][64];
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
118
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
119 /* MacroBlock Transform Type: 7.1.3.11, p89
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
120 * 8x8:B
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
121 * 8x4:B:btm 8x4:B:top 8x4:B:both,
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
122 * 4x8:B:right 4x8:B:left 4x8:B:both
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
123 * 4x4:B 8x8:MB
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
124 * 8x4:MB:btm 8x4:MB:top 8x4,MB,both
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
125 * 4x8,MB,right 4x8,MB,left
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
126 * 4x4,MB */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
127 extern const uint16_t ff_vc1_ttmb_codes[3][16];
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
128
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
129 extern const uint8_t ff_vc1_ttmb_bits[3][16];
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
130
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
131 /* TTBLK (Transform Type per Block) tables */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
132 extern const uint8_t ff_vc1_ttblk_codes[3][8];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
133 extern const uint8_t ff_vc1_ttblk_bits[3][8];
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
134
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
135 /* SUBBLKPAT tables, p93-94, reordered */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
136 extern const uint8_t ff_vc1_subblkpat_codes[3][15];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
137 extern const uint8_t ff_vc1_subblkpat_bits[3][15];
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
138
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
139 /* MV differential tables, p265 */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
140 extern const uint16_t ff_vc1_mv_diff_codes[4][73];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
141 extern const uint8_t ff_vc1_mv_diff_bits[4][73];
3359
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
142
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
143 /* DC differentials low+hi-mo, p217 are the same as in msmpeg4data .h */
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
144
87187ebe2c28 Rename VC9 to VC1 as there is no such thing as VC9
kostya
parents:
diff changeset
145 /* Scantables/ZZ scan are at 11.9 (p262) and 8.1.1.12 (p10) */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
146 extern const int8_t ff_vc1_simple_progressive_4x4_zz [16];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
147 extern const int8_t ff_vc1_adv_progressive_8x4_zz [32];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
148 extern const int8_t ff_vc1_adv_progressive_4x8_zz [32];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
149 extern const int8_t ff_vc1_adv_interlaced_8x8_zz [64];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
150 extern const int8_t ff_vc1_adv_interlaced_8x4_zz [32];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
151 extern const int8_t ff_vc1_adv_interlaced_4x8_zz [32];
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
152 extern const int8_t ff_vc1_adv_interlaced_4x4_zz [16];
3360
2c4ddf5b9217 VC-1 decoder with I-frames support and partial P-frames decoding
kostya
parents: 3359
diff changeset
153
2c4ddf5b9217 VC-1 decoder with I-frames support and partial P-frames decoding
kostya
parents: 3359
diff changeset
154 /* DQScale as specified in 8.1.3.9 - almost identical to 0x40000/i */
4949
845386be542c Add ff_ prefix to (externally) visible variables
kostya
parents: 4929
diff changeset
155 extern const int32_t ff_vc1_dqscale[63];
4928
7ec5c2e20271 Move VC-1 data to .c file
kostya
parents: 4926
diff changeset
156
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 7136
diff changeset
157 #endif /* AVCODEC_VC1DATA_H */