1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-16 20:05:07 +00:00

Make msadpcm arrays const

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27254 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2008-07-11 18:13:11 +00:00
parent 0872673a5e
commit f5ead9d0ee

View File

@ -26,18 +26,18 @@ static ad_info_t info =
LIBAD_EXTERN(msadpcm)
static int ms_adapt_table[] =
static const int ms_adapt_table[] =
{
230, 230, 230, 230, 307, 409, 512, 614,
768, 614, 512, 409, 307, 230, 230, 230
};
static int ms_adapt_coeff1[] =
static const int ms_adapt_coeff1[] =
{
256, 512, 0, 192, 240, 460, 392
};
static int ms_adapt_coeff2[] =
static const int ms_adapt_coeff2[] =
{
0, -256, 0, 64, 0, -208, -232
};