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
path: root/src
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@octasic.com>2010-07-06 02:34:33 +0400
committerJean-Marc Valin <jean-marc.valin@octasic.com>2010-07-06 02:34:33 +0400
commit1c7decbb6805b97cbe33a69c17b43057e7ec1cf3 (patch)
treebb9c6ab943465729940066aecbb0393510b2556b /src
parent47ae6667153ca70da362268da3fca064e15e333f (diff)
Fixing a high bit-rate bug in SILK -- now scales well above 64 kb/s
Diffstat (limited to 'src')
-rw-r--r--src/hybrid_encoder.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/hybrid_encoder.c b/src/hybrid_encoder.c
index 21d1573f..900204ad 100644
--- a/src/hybrid_encoder.c
+++ b/src/hybrid_encoder.c
@@ -89,8 +89,6 @@ int hybrid_encode(HybridEncoder *st, const short *pcm, int frame_size,
ec_enc_init(&enc,&buf);
st->encControl.bitRate = (bytes_per_packet*50*8+4000)/2;
- if (st->encControl.bitRate>30000)
- st->encControl.bitRate = 30000;
/* Call SILK encoder for the low band */
nBytes = bytes_per_packet;