summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2016-06-02 19:08:01 -0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2016-07-08 14:15:43 -0400
commit41b1f052f99f2f5fbd4f4947f95de6cef9902584 (patch)
tree84e2d0742605945af81c2701905625410a4acc57
parentacc4a5d534fb24df18c68cae14b8fdd915708f25 (diff)
downloadopus-41b1f052f99f2f5fbd4f4947f95de6cef9902584.tar.gz
Oops, edited the wrong comment in the previous commit
-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 7b098d40..81b0ef4e 100644
--- a/src/opus_encoder.c
+++ b/src/opus_encoder.c
@@ -995,10 +995,10 @@ static opus_int32 compute_equiv_rate(opus_int32 bitrate, int channels,
equiv = bitrate;
/* Take into account overhead from smaller frames. */
equiv -= (40*channels+20)*(frame_rate - 50);
- /* CBR is about a 10% penalty for both SILK and CELT. */
+ /* CBR is about a 8% penalty for both SILK and CELT. */
if (!vbr)
equiv -= equiv/12;
- /* Complexity makes about 8% difference (from 0 to 10) in general. */
+ /* Complexity makes about 10% difference (from 0 to 10) in general. */
equiv = equiv * (90+complexity)/100;
if (mode == MODE_SILK_ONLY || mode == MODE_HYBRID)
{