diff options
author | Sergey Vlasov <vsu@altlinux.org> | 2007-05-24 04:08:48 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-05-24 04:08:48 +0000 |
commit | 32dd6a9c7886b490b539a974db33a02a4f14efb7 (patch) | |
tree | 466ec272509592c9f06ecb983fef42cbe91dda57 /libavcodec/dca.c | |
parent | 56e4603e675471d803919c457a42e35586053dcc (diff) | |
download | ffmpeg-32dd6a9c7886b490b539a974db33a02a4f14efb7.tar.gz |
fix dca_bitalloc_index decoder init
Patch by Sergey Vlasov (printf("%csu at altlinux%s",'v',".ru");)
Thread [FFmpeg-devel] [PATCH] dca: fix dca_bitalloc_index decoder init
Originally committed as revision 9115 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dca.c')
-rw-r--r-- | libavcodec/dca.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dca.c b/libavcodec/dca.c index 99dab89442..d9bf03a58e 100644 --- a/libavcodec/dca.c +++ b/libavcodec/dca.c @@ -186,7 +186,7 @@ static void dca_init_vlcs(void) return; dca_bitalloc_index.offset = 1; - dca_bitalloc_index.wrap = 1; + dca_bitalloc_index.wrap = 2; for (i = 0; i < 5; i++) init_vlc(&dca_bitalloc_index.vlc[i], bitalloc_12_vlc_bits[i], 12, bitalloc_12_bits[i], 1, 1, |