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-08-29 23:29:02 +0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2013-08-29 23:29:02 +0400
commit02fed471a4568852d6618e041c4f2af0d7730ee2 (patch)
tree1e2ba204606f5aed0ca027cf76edd4b8af5f6552 /celt/arch.h
parent00a1b3e0da9337939f528c71dd4be4bb6872668f (diff)
Implements fixed-point silk_LPC_analysis_filter() in terms of celt_fir()
Saves 2.5% on ARM without any asm. The float build still uses the old code because celt_fir() then becomes a float function.
Diffstat (limited to 'celt/arch.h')
-rw-r--r--celt/arch.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/celt/arch.h b/celt/arch.h
index e497a4d9..78e2635f 100644
--- a/celt/arch.h
+++ b/celt/arch.h
@@ -163,6 +163,7 @@ typedef float celt_ener;
#define SHR(a,shift) (a)
#define SHL(a,shift) (a)
#define SATURATE(x,a) (x)
+#define SATURATE16(x) (x)
#define ROUND16(a,shift) (a)
#define HALF16(x) (.5f*(x))