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/rv10.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/rv10.c')
-rw-r--r-- | libavcodec/rv10.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c index 99fb904417..c7ecd33a8c 100644 --- a/libavcodec/rv10.c +++ b/libavcodec/rv10.c @@ -586,10 +586,10 @@ static av_cold int rv10_decode_init(AVCodecContext *avctx) if (!done) { init_vlc(&rv_dc_lum, DC_VLC_BITS, 256, rv_lum_bits, 1, 1, - rv_lum_code, 2, 2, 1); + rv_lum_code, 2, 2, INIT_VLC_USE_STATIC); init_vlc(&rv_dc_chrom, DC_VLC_BITS, 256, rv_chrom_bits, 1, 1, - rv_chrom_code, 2, 2, 1); + rv_chrom_code, 2, 2, INIT_VLC_USE_STATIC); done = 1; } |