diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-04-11 11:47:15 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-04-11 11:47:15 +0000 |
commit | e161e007be2ca2df1e560470f94d4038dd841d67 (patch) | |
tree | 73cf9b3fae73613fc191ece675b43847530c59aa /libavcodec/intrax8.c | |
parent | 46e97dc3c2281954fabe273c9e05f458ea2599e4 (diff) | |
download | ffmpeg-e161e007be2ca2df1e560470f94d4038dd841d67.tar.gz |
Use INIT_VLC_USE_STATIC and not its value "1".
Originally committed as revision 18430 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/intrax8.c')
-rw-r--r-- | libavcodec/intrax8.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c index 40ad1fbb8f..2ae57d9bd7 100644 --- a/libavcodec/intrax8.c +++ b/libavcodec/intrax8.c @@ -50,7 +50,7 @@ static av_cold void x8_vlc_init(void){ AC_VLC_BITS,77, \ &src[1],4,2, \ &src[0],4,2, \ - 1) + INIT_VLC_USE_STATIC) //set ac tables for(i=0;i<8;i++){ init_ac_vlc( j_ac_vlc[0][0][i], x8_ac0_highquant_table[i][0] ); @@ -79,7 +79,7 @@ static av_cold void x8_vlc_init(void){ OR_VLC_BITS,12, \ &src[1],4,2, \ &src[0],4,2, \ - 1); + INIT_VLC_USE_STATIC); for(i=0;i<2;i++){ init_or_vlc( j_orient_vlc[0][i], x8_orient_highquant_table[i][0]); } |