From e161e007be2ca2df1e560470f94d4038dd841d67 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sat, 11 Apr 2009 11:47:15 +0000 Subject: Use INIT_VLC_USE_STATIC and not its value "1". Originally committed as revision 18430 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/intrax8.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/intrax8.c') 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]); } -- cgit v1.2.3