summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
diff options
context:
space:
mode:
Diffstat (limited to 'libmpcodecs')
-rw-r--r--libmpcodecs/ad_msadpcm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmpcodecs/ad_msadpcm.c b/libmpcodecs/ad_msadpcm.c
index f65caa4e71..02e4d1d1d0 100644
--- a/libmpcodecs/ad_msadpcm.c
+++ b/libmpcodecs/ad_msadpcm.c
@@ -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
};