Commit ad4b5f93 authored by michael's avatar michael

Get rid of INIT_VLC_USE_STATIC in rv10/rv20.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18436 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 40fe7147
...@@ -584,12 +584,12 @@ static av_cold int rv10_decode_init(AVCodecContext *avctx) ...@@ -584,12 +584,12 @@ static av_cold int rv10_decode_init(AVCodecContext *avctx)
/* init rv vlc */ /* init rv vlc */
if (!done) { if (!done) {
init_vlc(&rv_dc_lum, DC_VLC_BITS, 256, INIT_VLC_STATIC(&rv_dc_lum, DC_VLC_BITS, 256,
rv_lum_bits, 1, 1, rv_lum_bits, 1, 1,
rv_lum_code, 2, 2, INIT_VLC_USE_STATIC); rv_lum_code, 2, 2, 16384);
init_vlc(&rv_dc_chrom, DC_VLC_BITS, 256, INIT_VLC_STATIC(&rv_dc_chrom, DC_VLC_BITS, 256,
rv_chrom_bits, 1, 1, rv_chrom_bits, 1, 1,
rv_chrom_code, 2, 2, INIT_VLC_USE_STATIC); rv_chrom_code, 2, 2, 16388);
done = 1; done = 1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment