diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-04-23 09:10:35 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-04-23 09:10:35 +0200 |
commit | 606e22abcf8b9f3c3d63ccc8ccf8ae4020c6ffd3 (patch) | |
tree | e067c99ea946ba4877e12e3939c7fe6433d94f6f /src/mpeg.c | |
parent | 262a43fc5dcc04731a8951ee44555f582f7e8106 (diff) | |
download | dabmux-606e22abcf8b9f3c3d63ccc8ccf8ae4020c6ffd3.tar.gz dabmux-606e22abcf8b9f3c3d63ccc8ccf8ae4020c6ffd3.tar.bz2 dabmux-606e22abcf8b9f3c3d63ccc8ccf8ae4020c6ffd3.zip |
Enable and take care of some warnings
Diffstat (limited to 'src/mpeg.c')
-rw-r--r-- | src/mpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,7 +25,7 @@ #include <errno.h> -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 |