Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/celt-0.7.0.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJean-Marc Valin <Jean-Marc.Valin@csiro.au>2008-04-22 06:18:36 +0400
committerJean-Marc Valin <Jean-Marc.Valin@csiro.au>2008-04-22 06:18:36 +0400
commit4989c1212a5f19c34c5575ec73a44a547e915924 (patch)
tree04038088ec01081b0f0d07fa28532092f9c08dec /tests
parent447e5b8fc631ed40b7ad3715de2f8cfe26580960 (diff)
Moved the windowing from compute_inv_mdcts() to mdct_backward()
Diffstat (limited to 'tests')
-rw-r--r--tests/mdct-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mdct-test.c b/tests/mdct-test.c
index e4cc65c..c03c191 100644
--- a/tests/mdct-test.c
+++ b/tests/mdct-test.c
@@ -99,7 +99,7 @@ void test1d(int nfft,int isinverse)
if (isinverse)
{
- mdct_backward(&cfg,in,out);
+ mdct_backward(&cfg,in,out, NULL, 0);
check_inv(in,out,nfft,isinverse);
} else {
mdct_forward(&cfg,in,out,NULL, 0);