diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-08-08 10:24:26 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-08-08 10:24:26 +0000 |
commit | ed4e20ac7fb83bddf4c9a1fc65f30821dcbc7935 (patch) | |
tree | b781b2f8b6f760de57a6de022ab31d383ddeb892 /libavcodec/sh4 | |
parent | a2fd60437d0c7cf21a9365024efaa764bddaf3ab (diff) | |
download | ffmpeg-ed4e20ac7fb83bddf4c9a1fc65f30821dcbc7935.tar.gz |
Fix some "'static' is not at beginning of declaration" warnings.
Originally committed as revision 5956 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/sh4')
-rw-r--r-- | libavcodec/sh4/idct_sh4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/sh4/idct_sh4.c b/libavcodec/sh4/idct_sh4.c index 26084a6186..062dd6d74a 100644 --- a/libavcodec/sh4/idct_sh4.c +++ b/libavcodec/sh4/idct_sh4.c @@ -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, |