diff options
author | Benjamin Larsson <banan@ludd.ltu.se> | 2008-10-28 14:43:06 +0000 |
---|---|---|
committer | Benjamin Larsson <banan@ludd.ltu.se> | 2008-10-28 14:43:06 +0000 |
commit | 6f02853d14e7226b058ea59a1032c7c34f2526a8 (patch) | |
tree | a55cf16b26e1328d1d7a7d379074d7f8526c2010 /libavcodec | |
parent | 42d6c3ba36170a52083b8e721287a4a9f28363e3 (diff) | |
download | ffmpeg-6f02853d14e7226b058ea59a1032c7c34f2526a8.tar.gz |
Fix huffman coded dca samples.
Originally committed as revision 15733 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dcahuff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dcahuff.h b/libavcodec/dcahuff.h index 5704ac383a..cbc8429e59 100644 --- a/libavcodec/dcahuff.h +++ b/libavcodec/dcahuff.h @@ -1021,7 +1021,7 @@ static const uint8_t bitalloc_129_bits_g[129] = static const uint8_t bitalloc_sizes[10] = { 3, 5, 7, 9, 13, 17, 25, 33, 65, 129 }; -static const uint8_t bitalloc_offsets[10] = +static const int8_t bitalloc_offsets[10] = { -1, -2, -3, -4, -6, -8, -12, -16, -32, -64 }; static const uint8_t bitalloc_maxbits[10][7] = { |