diff sh4/idct_sh4.c @ 3556:6805c1e5507e libavcodec

Fix some "'static' is not at beginning of declaration" warnings.
author diego
date Tue, 08 Aug 2006 10:24:26 +0000
parents 0b546eab515d
children c8c591fe26f8
line wrap: on
line diff
--- a/sh4/idct_sh4.c	Tue Aug 08 04:01:04 2006 +0000
+++ b/sh4/idct_sh4.c	Tue Aug 08 10:24:26 2006 +0000
@@ -27,14 +27,14 @@
 #define c6      0.54119610014619712324  /* sqrt(2)*cos(6*pi/16) */
 #define c7      0.27589937928294311353  /* sqrt(2)*cos(7*pi/16) */
 
-const static float even_table[] __attribute__ ((aligned(8))) = {
+static const float even_table[] __attribute__ ((aligned(8))) = {
         c4, c4, c4, c4,
         c2, c6,-c6,-c2,
         c4,-c4,-c4, c4,
         c6,-c2, c2,-c6
 };
 
-const static float odd_table[] __attribute__ ((aligned(8))) = {
+static const float odd_table[] __attribute__ ((aligned(8))) = {
         c1, c3, c5, c7,
         c3,-c7,-c1,-c5,
         c5,-c1, c7, c3,