Commit 66ceed40 authored by reimar's avatar reimar

100l, fix MS ADPCM decoding for e.g. http://samples.mplayerhq.hu/mov/qtaudio/surge-2-16-L-ms02.mov

First coefficient array must be unsigned to fit in 8 bits


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14175 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c8cbd922
......@@ -85,7 +85,7 @@ static const int AdaptationTable[] = {
768, 614, 512, 409, 307, 230, 230, 230
};
static const int8_t AdaptCoeff1[] = {
static const uint8_t AdaptCoeff1[] = {
64, 128, 0, 48, 60, 115, 98
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment