diff options
author | Diego Biurrun <diego@biurrun.de> | 2015-11-09 13:25:55 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-11-02 10:33:36 +0100 |
commit | 39cea6570c11a49b64b2ec8d71e218db03b4c742 (patch) | |
tree | fbc5c1319a0cd075432a1b4acef5540d02246502 /libavcodec/aactab.h | |
parent | 85baef4ff1512bcc2544928bfa5f42072903a691 (diff) | |
download | ffmpeg-39cea6570c11a49b64b2ec8d71e218db03b4c742.tar.gz |
aactab: Move extern keyword to the front of array declarations
libavcodec/aactab.h:49:1: warning: ‘extern’ is not at beginning of declaration [-Wold-style-declaration]
Diffstat (limited to 'libavcodec/aactab.h')
-rw-r--r-- | libavcodec/aactab.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aactab.h b/libavcodec/aactab.h index fc26db8a4d..b1e9510cf3 100644 --- a/libavcodec/aactab.h +++ b/libavcodec/aactab.h @@ -46,8 +46,8 @@ */ DECLARE_ALIGNED(32, extern float, ff_aac_kbd_long_1024)[1024]; DECLARE_ALIGNED(32, extern float, ff_aac_kbd_short_128)[128]; -const DECLARE_ALIGNED(32, extern float, ff_aac_eld_window_512)[1920]; -const DECLARE_ALIGNED(32, extern float, ff_aac_eld_window_480)[1800]; +DECLARE_ALIGNED(32, extern const float, ff_aac_eld_window_512)[1920]; +DECLARE_ALIGNED(32, extern const float, ff_aac_eld_window_480)[1800]; // @} /* @name number of scalefactor window bands for long and short transform windows respectively |