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

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2013-12-22 11:17:24 +0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2013-12-22 11:17:24 +0400
commite2bcb3fe9b64388f39248af9aefc515c875540d9 (patch)
treeb3b1dc9eefbc5bab69de0842b276d75530c02b69 /celt/dump_modes
parentc8f4e1608af20d2d29d34176debcd15c0dbec685 (diff)
Reverse the ordering of the FFT stage to optimize a degenerate radix-4 case.
This also happens to increase the accuracy since it appears that the new ordering is optimal (at least for 20 ms frames), whereas the previous ordering was pessimal.
Diffstat (limited to 'celt/dump_modes')
-rw-r--r--celt/dump_modes/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/celt/dump_modes/Makefile b/celt/dump_modes/Makefile
index 371a7d4c..c2de3181 100644
--- a/celt/dump_modes/Makefile
+++ b/celt/dump_modes/Makefile
@@ -1,10 +1,10 @@
CFLAGS=-O2 -Wall -Wextra -DHAVE_CONFIG_H
-INCLUDES=-I../ -I../.. -I../../include
+INCLUDES=-I. -I../ -I../.. -I../../include
all: dump_modes
dump_modes:
- $(CC) $(CFLAGS) $(INCLUDES) -DCUSTOM_MODES dump_modes.c ../modes.c ../cwrs.c ../rate.c ../entenc.c ../entdec.c ../mathops.c ../mdct.c ../kiss_fft.c -o dump_modes -lm
+ $(CC) $(CFLAGS) $(INCLUDES) -DCUSTOM_MODES_ONLY -DCUSTOM_MODES dump_modes.c ../modes.c ../cwrs.c ../rate.c ../entenc.c ../entdec.c ../mathops.c ../mdct.c ../kiss_fft.c -o dump_modes -lm
clean:
rm -f dump_modes