From f5ead9d0ee5453af202a1fb0681d41b02730bf10 Mon Sep 17 00:00:00 2001 From: reimar Date: Fri, 11 Jul 2008 18:13:11 +0000 Subject: Make msadpcm arrays const git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27254 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/ad_msadpcm.c | 6 +++--- 1 file 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 }; -- cgit v1.2.3