From 606e22abcf8b9f3c3d63ccc8ccf8ae4020c6ffd3 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Thu, 23 Apr 2015 09:10:35 +0200 Subject: Enable and take care of some warnings --- src/mpeg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mpeg.c') diff --git a/src/mpeg.c b/src/mpeg.c index 16be483..f7aed34 100644 --- a/src/mpeg.c +++ b/src/mpeg.c @@ -25,7 +25,7 @@ #include -const static short bitrateArray[4][4][16] = { +static const short bitrateArray[4][4][16] = { { // MPEG 2.5 { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }, // layer invalid @@ -69,7 +69,7 @@ const static short bitrateArray[4][4][16] = { }; -const static int samplingrateArray[4][4] = { +static const int samplingrateArray[4][4] = { { 11025, 12000, 8000, 0 }, // MPEG 2.5 { -1, -1, -1, -1 }, // MPEG invalid { 22050, 24000, 16000, 0 }, // MPEG 2 -- cgit v1.2.3