mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-16 20:35:23 +00:00
Get rid of INIT_VLC_USE_STATIC in rv10/rv20.
Originally committed as revision 18436 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
2a0241ae12
commit
76ac719888
@ -584,12 +584,12 @@ static av_cold int rv10_decode_init(AVCodecContext *avctx)
|
||||
|
||||
/* init rv vlc */
|
||||
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_code, 2, 2, INIT_VLC_USE_STATIC);
|
||||
init_vlc(&rv_dc_chrom, DC_VLC_BITS, 256,
|
||||
rv_lum_code, 2, 2, 16384);
|
||||
INIT_VLC_STATIC(&rv_dc_chrom, DC_VLC_BITS, 256,
|
||||
rv_chrom_bits, 1, 1,
|
||||
rv_chrom_code, 2, 2, INIT_VLC_USE_STATIC);
|
||||
rv_chrom_code, 2, 2, 16388);
|
||||
done = 1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user