diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-09 14:59:13 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-24 11:35:03 +0100 |
commit | 164ce14e5caeb1052d9365541e1052b5dad9cd8b (patch) | |
tree | 12166d3a45f106456ef3f0c524f80eb738d01a2d /libavcodec/atrac9tab.h | |
parent | 6612d6d62e143599ee3c59ce81b157cecf0cdba9 (diff) | |
download | ffmpeg-164ce14e5caeb1052d9365541e1052b5dad9cd8b.tar.gz |
avcodec/atrac9tab: Add missing static to internal table
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/atrac9tab.h')
-rw-r--r-- | libavcodec/atrac9tab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/atrac9tab.h b/libavcodec/atrac9tab.h index c25d0e2744..4e0c3ee1cc 100644 --- a/libavcodec/atrac9tab.h +++ b/libavcodec/atrac9tab.h @@ -104,7 +104,7 @@ static const int at9_q_unit_to_coeff_idx[] = { 72, 80, 88, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 256 }; -const uint8_t at9_q_unit_to_codebookidx[] = { +static const uint8_t at9_q_unit_to_codebookidx[] = { 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, }; |