summaryrefslogtreecommitdiff
path: root/libavcodec/wnv1.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/wnv1.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/wnv1.c')
-rw-r--r--libavcodec/wnv1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wnv1.c b/libavcodec/wnv1.c
index fa3a308dc0..e721a983cc 100644
--- a/libavcodec/wnv1.c
+++ b/libavcodec/wnv1.c
@@ -136,7 +136,7 @@ static av_cold int decode_init(AVCodecContext *avctx){
if(!code_vlc.table){
init_vlc(&code_vlc, CODE_VLC_BITS, 16,
&code_tab[0][1], 4, 2,
- &code_tab[0][0], 4, 2, 1);
+ &code_tab[0][0], 4, 2, INIT_VLC_USE_STATIC);
}
return 0;