summaryrefslogtreecommitdiff
path: root/libavcodec/4xm.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2009-04-11 11:47:15 +0000
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2009-04-11 11:47:15 +0000
commite161e007be2ca2df1e560470f94d4038dd841d67 (patch)
tree73cf9b3fae73613fc191ece675b43847530c59aa /libavcodec/4xm.c
parent46e97dc3c2281954fabe273c9e05f458ea2599e4 (diff)
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.c2
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);
}
}