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/h261dec.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/h261dec.c')
-rw-r--r-- | libavcodec/h261dec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c index 3509e9f171..4179ab33ff 100644 --- a/libavcodec/h261dec.c +++ b/libavcodec/h261dec.c @@ -55,16 +55,16 @@ static av_cold void h261_decode_init_vlc(H261Context *h){ done = 1; init_vlc(&h261_mba_vlc, H261_MBA_VLC_BITS, 35, h261_mba_bits, 1, 1, - h261_mba_code, 1, 1, 1); + h261_mba_code, 1, 1, INIT_VLC_USE_STATIC); init_vlc(&h261_mtype_vlc, H261_MTYPE_VLC_BITS, 10, h261_mtype_bits, 1, 1, - h261_mtype_code, 1, 1, 1); + h261_mtype_code, 1, 1, INIT_VLC_USE_STATIC); init_vlc(&h261_mv_vlc, H261_MV_VLC_BITS, 17, &h261_mv_tab[0][1], 2, 1, - &h261_mv_tab[0][0], 2, 1, 1); + &h261_mv_tab[0][0], 2, 1, INIT_VLC_USE_STATIC); init_vlc(&h261_cbp_vlc, H261_CBP_VLC_BITS, 63, &h261_cbp_tab[0][1], 2, 1, - &h261_cbp_tab[0][0], 2, 1, 1); + &h261_cbp_tab[0][0], 2, 1, INIT_VLC_USE_STATIC); init_rl(&h261_rl_tcoeff, ff_h261_rl_table_store); INIT_VLC_RL(h261_rl_tcoeff, 552); } |