summaryrefslogtreecommitdiff
path: root/libavcodec/aacenctab.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-09-23 12:46:52 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-09-23 12:46:52 +0200
commit0c7ceb1e0acc2d4b741bce07ad70b353869da4c3 (patch)
tree168d6a040daa8b8d6d86a12106a193b852748c3b /libavcodec/aacenctab.h
parentd1bbefeaa76c8b726ce0887e1bb653f05d6e7208 (diff)
avcodec/aacenctab: Make aac_maxval_cb const
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/aacenctab.h')
-rw-r--r--libavcodec/aacenctab.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacenctab.h b/libavcodec/aacenctab.h
index 381b4a4e16..9157cff810 100644
--- a/libavcodec/aacenctab.h
+++ b/libavcodec/aacenctab.h
@@ -110,7 +110,7 @@ static const uint8_t aac_cb_in_map[CB_TOT_ALL+1] = {0,1,2,3,4,5,6,7,8,9,10,11,0,
static const uint8_t aac_cb_range [12] = {0, 3, 3, 3, 3, 9, 9, 8, 8, 13, 13, 17};
static const uint8_t aac_cb_maxval[12] = {0, 1, 1, 2, 2, 4, 4, 7, 7, 12, 12, 16};
-static unsigned char aac_maxval_cb[] = {
+static const unsigned char aac_maxval_cb[] = {
0, 1, 3, 5, 5, 7, 7, 7, 9, 9, 9, 9, 9, 11
};