On Mon, Oct 31, 2016 at 5:26 PM, Diego Biurrun <di...@biurrun.de> wrote:
> libavcodec/aactab.h:49:1: warning: ‘extern’ is not at beginning of 
> declaration [-Wold-style-declaration]
> libavcodec/aactab.h:50:1: warning: ‘extern’ is not at beginning of 
> declaration [-Wold-style-declaration]
> ---
>  libavcodec/aactab.h | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/libavcodec/aactab.h b/libavcodec/aactab.h
> index fc26db8..b1e9510 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
> --
ok


-- 
Vittorio
_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to