1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Init vlc tables as static

Originally committed as revision 6840 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Kostya Shishkov 2006-10-30 13:57:55 +00:00
parent 84ed36da85
commit 469f9de72f

View File

@ -139,7 +139,7 @@ static int imc_decode_init(AVCodecContext * avctx)
for(j = 0; j < 4; j++) {
init_vlc (&q->huffman_vlc[i][j], 9, imc_huffman_sizes[i],
imc_huffman_lens[i][j], 1, 1,
imc_huffman_bits[i][j], 2, 2, 0);
imc_huffman_bits[i][j], 2, 2, 1);
}
}
q->one_div_log2 = 1/log(2);