From 530198f955e49571b3f890b4da4d933a4cd5df4e Mon Sep 17 00:00:00 2001 From: Jean-Marc Valin <jmvalin@jmvalin.ca> Date: Sun, 17 Nov 2013 22:42:42 -0500 Subject: [PATCH] Adds SATURATE16() to the fixed-point debug build too --- celt/fixed_debug.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/celt/fixed_debug.h b/celt/fixed_debug.h index 3319d92ff..80bc94910 100644 --- a/celt/fixed_debug.h +++ b/celt/fixed_debug.h @@ -507,6 +507,16 @@ static OPUS_INLINE int SATURATE(int a, int b) return a; } +static OPUS_INLINE opus_int16 SATURATE16(opus_int32 a) +{ + celt_mips+=3; + if (a>32767) + return 32767; + else if (a<-32768) + return -32768; + else return a; +} + static OPUS_INLINE int MULT16_16_Q11_32(int a, int b) { opus_int64 res; -- GitLab