diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-04-11 14:16:30 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-04-11 14:16:30 +0000 |
commit | 1b923aa44ab95c352f9062024166c3d603a941f8 (patch) | |
tree | 4f333a0a82cade906e2d295b141a427c23a7328d /libavcodec/svq1dec.c | |
parent | 78435e9971b1b1ac73c287531f52e97bfdfb4c80 (diff) | |
download | ffmpeg-1b923aa44ab95c352f9062024166c3d603a941f8.tar.gz |
Two INIT_VLC_USE_STATIC cases Carl missed.
Originally committed as revision 18438 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq1dec.c')
-rw-r--r-- | libavcodec/svq1dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/svq1dec.c b/libavcodec/svq1dec.c index c45ef97b2f..f31b69f2a1 100644 --- a/libavcodec/svq1dec.c +++ b/libavcodec/svq1dec.c @@ -786,7 +786,7 @@ static av_cold int svq1_decode_init(AVCodecContext *avctx) init_vlc(&svq1_motion_component, 7, 33, &mvtab[0][1], 2, 1, - &mvtab[0][0], 2, 1, 1); + &mvtab[0][0], 2, 1, INIT_VLC_USE_STATIC); for (i = 0; i < 6; i++) { init_vlc(&svq1_intra_multistage[i], 3, 8, |