diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-11-22 12:52:10 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-22 13:01:11 +0100 |
commit | 9e22b8aca0fdecee332191fabded428e6a183d25 (patch) | |
tree | be8d6f2874d2045e449796d046642d9a1d00c730 /libavcodec/aacps_tablegen.c | |
parent | 8617be28d074c4708d2c948cbc311737cf2fbf39 (diff) | |
parent | 0ba8ba165b84a971dbe9356b57f272dc81410eaf (diff) | |
download | ffmpeg-9e22b8aca0fdecee332191fabded428e6a183d25.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
aacps: Adjust some const qualifiers to suppress warnings
Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 f56930b958..47d4205f43 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"); |