summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2016-06-02 18:11:33 -0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2016-06-03 19:15:52 -0400
commitb19c474bbadbfe290bf0b533a23cd3dcbdc32954 (patch)
treec1c8cd898736ea15cc30481d7388f0a1eefef4e2
parentfbdbafe036885f95dbc99c58e81c560ea7572278 (diff)
downloadopus-b19c474bbadbfe290bf0b533a23cd3dcbdc32954.tar.gz
Getting rid of the SILK penalty for hybrid CBR.
That was likely a mistake from a misunderstanding on the SILK bit allocation
-rw-r--r--src/opus_encoder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/opus_encoder.c b/src/opus_encoder.c
index 04a829a2..3aed38ca 100644
--- a/src/opus_encoder.c
+++ b/src/opus_encoder.c
@@ -981,8 +981,8 @@ static int compute_silk_rate_for_hybrid(int rate, int bandwidth, int frame20ms,
}
if (!vbr)
{
- if (silk_rate > 8000)
- silk_rate -= 1000;
+ /* Tiny boost to SILK for CBR. We should probably tune this better. */
+ silk_rate += 100;
}
return silk_rate;
}