summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2016-06-03 15:20:28 -0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2016-07-08 14:15:43 -0400
commit970a07a96819330b34090d57c4ac16ab788a58bd (patch)
tree35c8171875cf0abb1cd549d47fe0da006306ba37
parent5b7f6211dd7924bb9bab8c70c986685effeb676f (diff)
downloadopus-970a07a96819330b34090d57c4ac16ab788a58bd.tar.gz
Now that we're preventing huge gains, we no longer need to pretend there's
no dither
-rw-r--r--silk/NSQ.c4
-rw-r--r--silk/NSQ_del_dec.c3
2 files changed, 0 insertions, 7 deletions
diff --git a/silk/NSQ.c b/silk/NSQ.c
index 9fb05a80..0e2ea504 100644
--- a/silk/NSQ.c
+++ b/silk/NSQ.c
@@ -225,10 +225,6 @@ void silk_noise_shape_quantizer(
silk_short_prediction_create_arch_coef(a_Q12_arch, a_Q12, predictLPCOrder);
#endif
- /* We're getting desperate to hit the target -- pretend there's
- no dithering to make hitting the target more likely. */
- if (Lambda_Q10 > 3072) offset_Q10 = 0;
-
for( i = 0; i < length; i++ ) {
/* Generate dither */
NSQ->rand_seed = silk_RAND( NSQ->rand_seed );
diff --git a/silk/NSQ_del_dec.c b/silk/NSQ_del_dec.c
index 1b6dbf04..3495613b 100644
--- a/silk/NSQ_del_dec.c
+++ b/silk/NSQ_del_dec.c
@@ -362,9 +362,6 @@ static OPUS_INLINE void silk_noise_shape_quantizer_del_dec(
NSQ_sample_struct *psSS;
SAVE_STACK;
- /* We're getting desperate to hit the target -- pretend there's
- no dithering to make hitting the target more likely. */
- if (Lambda_Q10 > 3072) offset_Q10 = 0;
silk_assert( nStatesDelayedDecision > 0 );
ALLOC( psSampleState, nStatesDelayedDecision, NSQ_sample_pair );