summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2014-08-29 18:50:53 +0200
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2014-08-31 10:25:36 +0200
commit3bc5d2a06401bec22865cff6084b35ecf757baa2 (patch)
tree95822a229a7e000a09ce5ba485966748a6412cad
parentc9a4ec79690fcc36fbac6fcc77cc0ab128a91a82 (diff)
ac3dec_fixed: add missing "static const".
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-rw-r--r--libavcodec/ac3dec_fixed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dec_fixed.c b/libavcodec/ac3dec_fixed.c
index f36e7b0849..4c09de57ca 100644
--- a/libavcodec/ac3dec_fixed.c
+++ b/libavcodec/ac3dec_fixed.c
@@ -65,7 +65,7 @@ static const uint8_t center_levels[4] = { 4, 5, 6, 5 };
*/
static const uint8_t surround_levels[4] = { 4, 6, 7, 6 };
-int end_freq_inv_tab[8] =
+static const int end_freq_inv_tab[8] =
{
50529027, 44278013, 39403370, 32292987, 27356480, 23729101, 20951060, 18755316
};