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/4xm.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/4xm.c')
-rw-r--r-- | libavcodec/4xm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c index dd7daa5add..a9ad1e92ab 100644 --- a/libavcodec/4xm.c +++ b/libavcodec/4xm.c @@ -242,7 +242,7 @@ static av_cold void init_vlcs(FourXContext *f){ for(i=0; i<8; i++){ init_vlc(&block_type_vlc[0][i], BLOCK_TYPE_VLC_BITS, 7, &block_type_tab[0][i][0][1], 2, 1, - &block_type_tab[0][i][0][0], 2, 1, 1); + &block_type_tab[0][i][0][0], 2, 1, INIT_VLC_USE_STATIC); } } |