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
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2016-07-29 20:47:07 +0300
committerJean-Marc Valin <jmvalin@jmvalin.ca>2016-08-06 04:14:46 +0300
commit416611cfa127df360d6902794b36e426477061a0 (patch)
tree751615dc58e856b0cb9c4af81dc0bc8c277c1b26
parenta01feba028f6ccf2af294b02a3982876551fe38a (diff)
biasing quantization
-rw-r--r--celt/bands.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/celt/bands.c b/celt/bands.c
index fa2d2a65..87791b4a 100644
--- a/celt/bands.c
+++ b/celt/bands.c
@@ -742,11 +742,18 @@ static void compute_theta(struct band_ctx *ctx, struct split_ctx *sctx,
if (encode)
{
if (!stereo || ctx->theta_round == 0)
+ {
itheta = (itheta*(opus_int32)qn+8192)>>14;
- else if (ctx->theta_round < 0)
- itheta = (itheta*(opus_int32)qn)>>14;
- else
- itheta = (itheta*(opus_int32)qn+16383)>>14;
+ } else {
+ int down;
+ /* Bias quantization towards itheta=0 and itheta=16384. */
+ int bias = itheta > 8192 ? 32767/qn : -32767/qn;
+ down = IMIN(qn-1, IMAX(0, (itheta*(opus_int32)qn + bias)>>14));
+ if (ctx->theta_round < 0)
+ itheta = down;
+ else
+ itheta = down+1;
+ }
}
/* Entropy coding of the angle. We use a uniform pdf for the
time split, a step for stereo, and a triangular one for the rest. */