diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-04-11 13:58:18 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-04-11 13:58:18 +0000 |
commit | 78435e9971b1b1ac73c287531f52e97bfdfb4c80 (patch) | |
tree | 3d7efedcc26abb327adea7ba43aa8185e7152f26 /libavcodec | |
parent | 76ac719888c1bdea7251238cb4cec9e06ead5653 (diff) | |
download | ffmpeg-78435e9971b1b1ac73c287531f52e97bfdfb4c80.tar.gz |
get rid of INIT_VLC_USE_STATIC in h261.
Originally committed as revision 18437 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h261dec.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c index 4179ab33ff..2e850ecf22 100644 --- a/libavcodec/h261dec.c +++ b/libavcodec/h261dec.c @@ -53,18 +53,18 @@ static av_cold void h261_decode_init_vlc(H261Context *h){ if(!done){ done = 1; - init_vlc(&h261_mba_vlc, H261_MBA_VLC_BITS, 35, + INIT_VLC_STATIC(&h261_mba_vlc, H261_MBA_VLC_BITS, 35, h261_mba_bits, 1, 1, - h261_mba_code, 1, 1, INIT_VLC_USE_STATIC); - init_vlc(&h261_mtype_vlc, H261_MTYPE_VLC_BITS, 10, + h261_mba_code, 1, 1, 662); + INIT_VLC_STATIC(&h261_mtype_vlc, H261_MTYPE_VLC_BITS, 10, h261_mtype_bits, 1, 1, - h261_mtype_code, 1, 1, INIT_VLC_USE_STATIC); - init_vlc(&h261_mv_vlc, H261_MV_VLC_BITS, 17, + h261_mtype_code, 1, 1, 80); + INIT_VLC_STATIC(&h261_mv_vlc, H261_MV_VLC_BITS, 17, &h261_mv_tab[0][1], 2, 1, - &h261_mv_tab[0][0], 2, 1, INIT_VLC_USE_STATIC); - init_vlc(&h261_cbp_vlc, H261_CBP_VLC_BITS, 63, + &h261_mv_tab[0][0], 2, 1, 144); + INIT_VLC_STATIC(&h261_cbp_vlc, H261_CBP_VLC_BITS, 63, &h261_cbp_tab[0][1], 2, 1, - &h261_cbp_tab[0][0], 2, 1, INIT_VLC_USE_STATIC); + &h261_cbp_tab[0][0], 2, 1, 512); init_rl(&h261_rl_tcoeff, ff_h261_rl_table_store); INIT_VLC_RL(h261_rl_tcoeff, 552); } |