Skip to content
Snippets Groups Projects
Commit 03e82037 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

Fixes a denorm issue in the VoIP mode high-pass filter

parent 5771b5a2
No related branches found
No related tags found
No related merge requests found
...@@ -346,7 +346,7 @@ static void silk_biquad_float( ...@@ -346,7 +346,7 @@ static void silk_biquad_float(
S[ 0 ] = S[1] - vout*A[0] + B[1]*inval; 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 */ /* Scale back to Q0 and saturate */
out[ k*stride ] = vout; out[ k*stride ] = vout;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment