projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
16758aa
)
open code fft_end().
author
Andre Noll
<maan@systemlinux.org>
Fri, 16 Oct 2009 20:10:09 +0000
(22:10 +0200)
committer
Andre Noll
<maan@systemlinux.org>
Wed, 18 Nov 2009 18:34:15 +0000
(19:34 +0100)
imdct.c
patch
|
blob
|
history
diff --git
a/imdct.c
b/imdct.c
index
d04fe60
..
db68bc8
100644
(file)
--- a/
imdct.c
+++ b/
imdct.c
@@
-341,11
+341,6
@@
static int fft_init(struct fft_context *s, int nbits)
return 0;
}
-static void fft_end(struct fft_context *ctx)
-{
- freep(&ctx->revtab);
-}
-
/**
* Initialize the inverse modified cosine transform.
*/
@@
-384,6
+379,6
@@
void imdct_end(struct mdct_context *ctx)
{
freep(&ctx->tcos);
freep(&ctx->tsin);
- f
ft_end(&ctx->fft
);
+ f
reep(&ctx->fft.revtab
);
free(ctx);
}