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@usherbrooke.ca>2008-04-21 18:10:52 +0400
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2008-04-21 18:10:52 +0400
commit30e1b4d36c432b5211e7be7d0066e91a846ce04d (patch)
treefb5680e5230a100247a24c36acf701b645d1745a /tests
parentba11d78372ef22f240aea5235af3036760abe1fa (diff)
Moved the windowing operation from compute_mdcts() to mdct_forward() in an
attempt to reduce copying.
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 5cd95ee..e4cc65c 100644
--- a/tests/mdct-test.c
+++ b/tests/mdct-test.c
@@ -102,7 +102,7 @@ void test1d(int nfft,int isinverse)
mdct_backward(&cfg,in,out);
check_inv(in,out,nfft,isinverse);
} else {
- mdct_forward(&cfg,in,out);
+ mdct_forward(&cfg,in,out,NULL, 0);
check(in,out,nfft,isinverse);
}
/*for (k=0;k<nfft;++k) printf("%d %d ", out[k].r, out[k].i);printf("\n");*/