From 16758aa8a898d222ef417d408916f1dc11b12650 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Fri, 16 Oct 2009 22:03:12 +0200 Subject: [PATCH] remove unused exptab field of struct fft_complex. --- imdct.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/imdct.c b/imdct.c index 73600cbe..d04fe601 100644 --- a/imdct.c +++ b/imdct.c @@ -36,7 +36,6 @@ struct fft_complex { struct fft_context { int nbits; uint16_t *revtab; - struct fft_complex *exptab; }; struct mdct_context { @@ -327,7 +326,6 @@ static int fft_init(struct fft_context *s, int nbits) s->nbits = nbits; n = 1 << nbits; - s->exptab = para_malloc((n / 2) * sizeof(struct fft_complex)); s->revtab = para_malloc(n * sizeof(uint16_t)); for (j = 4; j <= nbits; j++) { int k = 1 << j; @@ -346,7 +344,6 @@ static int fft_init(struct fft_context *s, int nbits) static void fft_end(struct fft_context *ctx) { freep(&ctx->revtab); - freep(&ctx->exptab); } /** -- 2.39.2