summaryrefslogtreecommitdiff
path: root/lib/mdct.h
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>1999-10-12 08:38:04 +0000
committerMonty <xiphmont@xiph.org>1999-10-12 08:38:04 +0000
commitdda671b88d0b4a5c156c55baa58940c944b2148f (patch)
tree35f57fd3a2f71f51a88578821e3c143797dc7262 /lib/mdct.h
parent0024760a1024769fa7d26939f1291c45c36fd51a (diff)
downloadlibvorbis-git-dda671b88d0b4a5c156c55baa58940c944b2148f.tar.gz
Commit includes:
Major speed improvement through lpc->spectrum optimizations (roughly 6x faster decode). Short blocks are now being used. Fixed artifact due to overlap/add bug (was using the wrong window to overlap long blocks ) Monty svn path=/trunk/vorbis/; revision=144
Diffstat (limited to 'lib/mdct.h')
-rw-r--r--lib/mdct.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/mdct.h b/lib/mdct.h
index 4337ca3e..a52a55af 100644
--- a/lib/mdct.h
+++ b/lib/mdct.h
@@ -24,8 +24,7 @@ extern void mdct_init(mdct_lookup *lookup,int n);
extern void mdct_clear(mdct_lookup *l);
extern void mdct_forward(mdct_lookup *init, double *in,
double *out, double *window);
-extern void mdct_backward(mdct_lookup *init, double *in,
- double *out, double *window);
+extern void mdct_backward(mdct_lookup *init, double *in, double *out);
#endif