projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1899bae
)
remove unused exptab1 of struct fft_context.
author
Andre Noll
<maan@systemlinux.org>
Thu, 15 Oct 2009 20:02:22 +0000
(22:02 +0200)
committer
Andre Noll
<maan@systemlinux.org>
Wed, 18 Nov 2009 18:34:14 +0000
(19:34 +0100)
imdct.c
patch
|
blob
|
history
diff --git
a/imdct.c
b/imdct.c
index
89ee2df
..
222fff1
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);
}