]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
remove unused exptab1 of struct fft_context.
authorAndre Noll <maan@systemlinux.org>
Thu, 15 Oct 2009 20:02:22 +0000 (22:02 +0200)
committerAndre Noll <maan@systemlinux.org>
Wed, 18 Nov 2009 18:34:14 +0000 (19:34 +0100)
imdct.c

diff --git a/imdct.c b/imdct.c
index 89ee2dfb4ff8c48e78ad589d8bba0102d33bb153..222fff1559c34ef8b8e5eabefa5e957b4b8ff993 100644 (file)
--- a/imdct.c
+++ b/imdct.c
@@ -42,7 +42,6 @@ struct fft_context {
        int inverse;
        uint16_t *revtab;
        struct fft_complex *exptab;
-       struct fft_complex *exptab1;    /* only used by SSE code */
        struct fft_complex *tmp_buf;
 };
 
@@ -339,8 +338,6 @@ static int fft_init(struct fft_context *s, int nbits, int inverse)
        s->revtab = para_malloc(n * sizeof(uint16_t));
        s->inverse = inverse;
 
-       s->exptab1 = NULL;
-
        for (j = 4; j <= nbits; j++) {
                int k = 1 << j;
                double freq = 2 * M_PI / k;
@@ -361,7 +358,6 @@ static void fft_end(struct fft_context *ctx)
 {
        freep(&ctx->revtab);
        freep(&ctx->exptab);
-       freep(&ctx->exptab1);
        freep(&ctx->tmp_buf);
 }