X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=imdct.c;h=e926499393bc1fadcd0bedc251cc74ce7d9585de;hb=a24d175e6d093d6d9f6e583c3026e45924bad621;hp=5f48ba44c11b1186f6ebea4d5cec33b34e622bcc;hpb=b55f996a9d756a84b7fb880df6a9b917215ea058;p=paraslash.git diff --git a/imdct.c b/imdct.c index 5f48ba44..e9264993 100644 --- a/imdct.c +++ b/imdct.c @@ -59,7 +59,7 @@ struct mdct_context { }; /** cos(2 * pi * x / n) for 0 <= x <= n / 4, followed by its reverse */ -#define COSINE_TAB(n) fftsample_t cos_ ## n[n / 2] __a_aligned(16) +#define COSINE_TAB(n) static fftsample_t cos_ ## n[n / 2] __a_aligned(16) COSINE_TAB(16); COSINE_TAB(32);