mirror of
https://github.com/mpv-player/mpv
synced 2025-03-18 17:40:30 +00:00
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: svn://svn.mplayerhq.hu/mplayer/trunk@27269 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
4952dbf19a
commit
c83dca172f
@ -34,7 +34,7 @@ static const int ms_adapt_table[] =
|
||||
768, 614, 512, 409, 307, 230, 230, 230
|
||||
};
|
||||
|
||||
static const int8_t ms_adapt_coeff1[] =
|
||||
static const uint8_t ms_adapt_coeff1[] =
|
||||
{
|
||||
64, 128, 0, 48, 60, 115, 98
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user