diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-06-02 22:13:45 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-06-02 22:13:45 +0000 |
commit | 11de71b0938af5b027b78b0e0db9617ab22a319f (patch) | |
tree | e765ba126df0bb5107eb1fe7f5e819b8f7e4aa07 /src/post/goom/mathtools.c | |
parent | 329d8f32349ce401eaf8b486e496b65f27cbd920 (diff) | |
download | xine-lib-11de71b0938af5b027b78b0e0db9617ab22a319f.tar.gz xine-lib-11de71b0938af5b027b78b0e0db9617ab22a319f.tar.bz2 |
More static/const fixes from Gentoo. These should probably go upstream.
CVS patchset: 8008
CVS date: 2006/06/02 22:13:45
Diffstat (limited to 'src/post/goom/mathtools.c')
-rw-r--r-- | src/post/goom/mathtools.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/post/goom/mathtools.c b/src/post/goom/mathtools.c index b2b02ea05..45f8ef0f9 100644 --- a/src/post/goom/mathtools.c +++ b/src/post/goom/mathtools.c @@ -8,9 +8,7 @@ */ /*---------------------------------------------------------------------------*/ -#include "mathtools.h" - -float sin256[256] = { +static const float sin256[256] = { 0,0.0245412,0.0490677,0.0735646,0.0980171,0.122411,0.14673,0.170962 ,0.19509,0.219101,0.24298,0.266713,0.290285,0.313682,0.33689,0.359895 ,0.382683,0.405241,0.427555,0.449611,0.471397,0.492898,0.514103,0.534998 @@ -46,7 +44,7 @@ float sin256[256] = { }; -float cos256[256] = { +static const float cos256[256] = { 0,0.999699,0.998795,0.99729,0.995185,0.99248,0.989177,0.985278 ,0.980785,0.975702,0.970031,0.963776,0.95694,0.949528,0.941544,0.932993 ,0.92388,0.91421,0.903989,0.893224,0.881921,0.870087,0.857729,0.844854 |