Skip to content
Snippets Groups Projects
Commit 39cea657 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

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]
parent 85baef4f
No related branches found
No related tags found
No related merge requests found
...@@ -46,8 +46,8 @@ ...@@ -46,8 +46,8 @@
*/ */
DECLARE_ALIGNED(32, extern float, ff_aac_kbd_long_1024)[1024]; DECLARE_ALIGNED(32, extern float, ff_aac_kbd_long_1024)[1024];
DECLARE_ALIGNED(32, extern float, ff_aac_kbd_short_128)[128]; DECLARE_ALIGNED(32, extern float, ff_aac_kbd_short_128)[128];
const DECLARE_ALIGNED(32, extern float, ff_aac_eld_window_512)[1920]; DECLARE_ALIGNED(32, extern const 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_480)[1800];
// @} // @}
/* @name number of scalefactor window bands for long and short transform windows respectively /* @name number of scalefactor window bands for long and short transform windows respectively
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment