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-12 22:47:14 +0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2013-08-12 22:49:02 +0400
commit03e82037170b2226c2c7b60d9280bdf26dad9ebb (patch)
tree85adb3177a2447a11e38af63c519784cfadd2c06
parent5771b5a2e5c2c639c2e32d564ff0c71938cdf493 (diff)
Fixes a denorm issue in the VoIP mode high-pass filter
-rw-r--r--src/opus_encoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opus_encoder.c b/src/opus_encoder.c
index 5c74535e..ac40edac 100644
--- a/src/opus_encoder.c
+++ b/src/opus_encoder.c
@@ -346,7 +346,7 @@ static void silk_biquad_float(
S[ 0 ] = S[1] - vout*A[0] + B[1]*inval;
- S[ 1 ] = - vout*A[1] + B[2]*inval;
+ S[ 1 ] = - vout*A[1] + B[2]*inval + VERY_SMALL;
/* Scale back to Q0 and saturate */
out[ k*stride ] = vout;