Browse Source

Init vlc tables as static

Originally committed as revision 6840 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Kostya Shishkov 19 years ago
parent
commit
469f9de72f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/imc.c

+ 1
- 1
libavcodec/imc.c 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);


Loading…
Cancel
Save