diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-11-04 19:14:12 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-11-22 08:21:38 +0100 |
commit | 0ba8ba165b84a971dbe9356b57f272dc81410eaf (patch) | |
tree | 688db137b4f71f669e159eb2737501a33b5377a7 /libavcodec/aacps_tablegen.c | |
parent | 430d12196432ded13f011a3bf7690f03c9b2e5d6 (diff) | |
download | ffmpeg-0ba8ba165b84a971dbe9356b57f272dc81410eaf.tar.gz |
aacps: Adjust some const qualifiers to suppress warnings
Diffstat (limited to 'libavcodec/aacps_tablegen.c')
-rw-r--r-- | libavcodec/aacps_tablegen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacps_tablegen.c b/libavcodec/aacps_tablegen.c index 635737d2b9..537b6ba651 100644 --- a/libavcodec/aacps_tablegen.c +++ b/libavcodec/aacps_tablegen.c @@ -82,7 +82,7 @@ int main(void) write_float_3d_array(f34_2_4, 4, 8, 2); printf("};\n"); - printf("static const DECLARE_ALIGNED(16, float, Q_fract_allpass)[2][50][3][2] = {\n"); + printf("static TABLE_CONST DECLARE_ALIGNED(16, float, Q_fract_allpass)[2][50][3][2] = {\n"); write_float_4d_array(Q_fract_allpass, 2, 50, 3, 2); printf("};\n"); printf("static const DECLARE_ALIGNED(16, float, phi_fract)[2][50][2] = {\n"); |