Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/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 <jmvalin@jmvalin.ca>2011-10-14 21:48:17 +0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2011-10-14 21:48:17 +0400
commite22cc277b1c4e71c06957f1350a463cb10645564 (patch)
tree81e61a6c9cd94a53ff860f33fb71a8b3bab6d4c3 /src
parent4bc8c0335be74048787561adc58cf35e8b79be3a (diff)
Fixes CELT->Hybrid glitches
These were caused by not prefilling the hybrid CELT state
Diffstat (limited to 'src')
-rw-r--r--src/opus_encoder.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/opus_encoder.c b/src/opus_encoder.c
index 4b55d232..bb846793 100644
--- a/src/opus_encoder.c
+++ b/src/opus_encoder.c
@@ -426,6 +426,8 @@ int opus_encode_float(OpusEncoder *st, const opus_val16 *pcm, int frame_size,
int voice_est;
opus_int32 equiv_rate;
int delay_compensation;
+ VARDECL(opus_val16, tmp_prefill);
+
ALLOC_STACK;
max_data_bytes = IMIN(1276, max_data_bytes);
@@ -888,6 +890,13 @@ int opus_encode_float(OpusEncoder *st, const opus_val16 *pcm, int frame_size,
nb_compr_bytes = 0;
}
+ ALLOC(tmp_prefill, st->channels*st->Fs/400, opus_val16);
+ if (redundancy && celt_to_silk && st->mode == MODE_HYBRID)
+ {
+ for (i=0;i<st->channels*st->Fs/400;i++)
+ tmp_prefill[i] = st->delay_buffer[(st->encoder_buffer-st->delay_compensation-st->Fs/400)*st->channels + i];
+ }
+
for (i=0;i<st->channels*(st->encoder_buffer-(frame_size+delay_compensation));i++)
st->delay_buffer[i] = st->delay_buffer[i+st->channels*frame_size];
for (;i<st->encoder_buffer*st->channels;i++)
@@ -966,11 +975,19 @@ int opus_encode_float(OpusEncoder *st, const opus_val16 *pcm, int frame_size,
/* 5 ms redundant frame for CELT->SILK */
if (redundancy && celt_to_silk)
{
+ unsigned char dummy[2];
celt_encoder_ctl(celt_enc, CELT_SET_START_BAND(0));
celt_encoder_ctl(celt_enc, OPUS_SET_VBR(0));
celt_encode_with_ec(celt_enc, pcm_buf, st->Fs/200, data+nb_compr_bytes, redundancy_bytes, NULL);
celt_encoder_ctl(celt_enc, OPUS_GET_FINAL_RANGE(&redundant_rng));
celt_encoder_ctl(celt_enc, OPUS_RESET_STATE);
+
+ if (st->mode == MODE_HYBRID)
+ {
+ celt_encoder_ctl(celt_enc, CELT_SET_START_BAND(start_band));
+ celt_encode_with_ec(celt_enc, tmp_prefill, st->Fs/400, dummy, 2, NULL);
+ celt_encoder_ctl(celt_enc, CELT_SET_PREDICTION(0));
+ }
}
celt_encoder_ctl(celt_enc, CELT_SET_START_BAND(start_band));