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:
authorKoen Vos <koenvos@users.noreply.github.com>2016-02-19 06:32:42 +0300
committerKoen Vos <koenvos@users.noreply.github.com>2016-02-19 06:32:42 +0300
commit8887ce85a675bbd1ed133c1c1dc2a452a9bdd134 (patch)
tree1a4af960611db168bc64af58f41db0adb5ef5bed
parent71a6ae63dbcd2613d598cd1c5d9b62e3a16ddcab (diff)
undo experimental setting from previous commit
-rw-r--r--silk/sum_sqr_shift.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/silk/sum_sqr_shift.c b/silk/sum_sqr_shift.c
index 4ecac133..f5bb6c8b 100644
--- a/silk/sum_sqr_shift.c
+++ b/silk/sum_sqr_shift.c
@@ -73,7 +73,7 @@ void silk_sum_sqr_shift(
}
/* Make sure to have at least 10% headroom */
- if( nrg > SILK_FIX_CONST( 0.7, 31 ) ) {
+ if( nrg > SILK_FIX_CONST( 0.9, 31 ) ) {
nrg = silk_RSHIFT_uint( (opus_uint32)nrg, 1 );
shft++;
}