2013-02-13 18:08:47 +01:00
|
|
|
/* (C) 2007-2008 Jean-Marc Valin, CSIRO
|
|
|
|
(C) 2008-2009 Gregory Maxwell */
|
|
|
|
/*
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
- Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
- Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
- Neither the name of the Xiph.org Foundation nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived from
|
|
|
|
this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
|
|
|
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include "cc6_bands.h"
|
2013-02-13 19:48:36 +01:00
|
|
|
#include "cc6_modes.h"
|
|
|
|
#include "cc6_vq.h"
|
2013-02-13 18:20:51 +01:00
|
|
|
#include "cc6_cwrs.h"
|
2013-02-13 19:48:36 +01:00
|
|
|
#include "cc6_stack_alloc.h"
|
|
|
|
#include "cc6_os_support.h"
|
|
|
|
#include "cc6_mathops.h"
|
|
|
|
#include "cc6_rate.h"
|
2013-02-13 18:08:47 +01:00
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
const cc6_celt_word16_t sqrtC_1[2] = {cc6_QCONST16(1.f, 14), cc6_QCONST16(1.414214f, 14)};
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
#ifdef FIXED_POINT
|
|
|
|
/* Compute the amplitude (sqrt energy) in each of the bands */
|
2013-02-15 21:04:02 +01:00
|
|
|
void cc6_compute_band_energies(const cc6_CELTMode *m, const cc6_celt_sig_t *X, cc6_celt_ener_t *bank)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i, c, N;
|
2013-02-15 21:04:02 +01:00
|
|
|
const cc6_celt_int16_t *eBands = m->eBands;
|
|
|
|
const int C = cc6_CHANNELS(m);
|
|
|
|
N = cc6_FRAMESIZE(m);
|
2013-02-13 18:08:47 +01:00
|
|
|
for (c=0;c<C;c++)
|
|
|
|
{
|
|
|
|
for (i=0;i<m->nbEBands;i++)
|
|
|
|
{
|
|
|
|
int j;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word32_t maxval=0;
|
|
|
|
cc6_celt_word32_t sum = 0;
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
j=eBands[i]; do {
|
2013-02-15 21:04:02 +01:00
|
|
|
maxval = cc6_MAX32(maxval, X[j+c*N]);
|
|
|
|
maxval = cc6_MAX32(maxval, -X[j+c*N]);
|
2013-02-13 18:08:47 +01:00
|
|
|
} while (++j<eBands[i+1]);
|
|
|
|
|
|
|
|
if (maxval > 0)
|
|
|
|
{
|
2013-02-15 21:04:02 +01:00
|
|
|
int shift = cc6_celt_ilog2(maxval)-10;
|
2013-02-13 18:08:47 +01:00
|
|
|
j=eBands[i]; do {
|
2013-02-15 21:04:02 +01:00
|
|
|
sum = cc6_MAC16_16(sum, cc6_EXTRACT16(cc6_VSHR32(X[j+c*N],shift)),
|
|
|
|
cc6_EXTRACT16(cc6_VSHR32(X[j+c*N],shift)));
|
2013-02-13 18:08:47 +01:00
|
|
|
} while (++j<eBands[i+1]);
|
|
|
|
/* We're adding one here to make damn sure we never end up with a pitch vector that's
|
|
|
|
larger than unity norm */
|
2013-02-15 21:04:02 +01:00
|
|
|
bank[i+c*m->nbEBands] = cc6_EPSILON+cc6_VSHR32(cc6_EXTEND32(cc6_celt_sqrt(sum)),-shift);
|
2013-02-13 18:08:47 +01:00
|
|
|
} else {
|
2013-02-15 21:04:02 +01:00
|
|
|
bank[i+c*m->nbEBands] = cc6_EPSILON;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
/*printf ("%f ", bank[i+c*m->nbEBands]);*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*printf ("\n");*/
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Normalise each band such that the energy is one. */
|
2013-02-15 21:04:02 +01:00
|
|
|
void cc6_normalise_bands(const cc6_CELTMode *m, const cc6_celt_sig_t * __restrict freq, cc6_celt_norm_t * __restrict X, const cc6_celt_ener_t *bank)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i, c, N;
|
2013-02-15 21:04:02 +01:00
|
|
|
const cc6_celt_int16_t *eBands = m->eBands;
|
|
|
|
const int C = cc6_CHANNELS(m);
|
|
|
|
N = cc6_FRAMESIZE(m);
|
2013-02-13 18:08:47 +01:00
|
|
|
for (c=0;c<C;c++)
|
|
|
|
{
|
|
|
|
i=0; do {
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word16_t g;
|
2013-02-13 18:08:47 +01:00
|
|
|
int j,shift;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word16_t E;
|
|
|
|
shift = cc6_celt_zlog2(bank[i+c*m->nbEBands])-13;
|
|
|
|
E = cc6_VSHR32(bank[i+c*m->nbEBands], shift);
|
|
|
|
g = cc6_EXTRACT16(cc6_celt_rcp(cc6_SHL32(E,3)));
|
2013-02-13 18:08:47 +01:00
|
|
|
j=eBands[i]; do {
|
2013-02-15 21:04:02 +01:00
|
|
|
X[j*C+c] = cc6_MULT16_16_Q15(cc6_VSHR32(freq[j+c*N],shift-1),g);
|
2013-02-13 18:08:47 +01:00
|
|
|
} while (++j<eBands[i+1]);
|
|
|
|
} while (++i<m->nbEBands);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* FIXED_POINT */
|
|
|
|
/* Compute the amplitude (sqrt energy) in each of the bands */
|
2013-02-15 21:04:02 +01:00
|
|
|
void cc6_compute_band_energies(const cc6_CELTMode *m, const cc6_celt_sig_t *X, cc6_celt_ener_t *bank)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i, c, N;
|
2013-02-15 21:04:02 +01:00
|
|
|
const cc6_celt_int16_t *eBands = m->eBands;
|
|
|
|
const int C = cc6_CHANNELS(m);
|
|
|
|
N = cc6_FRAMESIZE(m);
|
2013-02-13 18:08:47 +01:00
|
|
|
for (c=0;c<C;c++)
|
|
|
|
{
|
|
|
|
for (i=0;i<m->nbEBands;i++)
|
|
|
|
{
|
|
|
|
int j;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word32_t sum = 1e-10;
|
2013-02-13 18:08:47 +01:00
|
|
|
for (j=eBands[i];j<eBands[i+1];j++)
|
|
|
|
sum += X[j+c*N]*X[j+c*N];
|
|
|
|
bank[i+c*m->nbEBands] = sqrt(sum);
|
|
|
|
/*printf ("%f ", bank[i+c*m->nbEBands]);*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*printf ("\n");*/
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef EXP_PSY
|
2013-02-15 21:04:02 +01:00
|
|
|
void cc6_compute_noise_energies(const cc6_CELTMode *m, const cc6_celt_sig_t *X, const cc6_celt_word16_t *tonality, cc6_celt_ener_t *bank)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i, c, N;
|
2013-02-15 21:04:02 +01:00
|
|
|
const cc6_celt_int16_t *eBands = m->eBands;
|
|
|
|
const int C = cc6_CHANNELS(m);
|
|
|
|
N = cc6_FRAMESIZE(m);
|
2013-02-13 18:08:47 +01:00
|
|
|
for (c=0;c<C;c++)
|
|
|
|
{
|
|
|
|
for (i=0;i<m->nbEBands;i++)
|
|
|
|
{
|
|
|
|
int j;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word32_t sum = 1e-10;
|
2013-02-13 18:08:47 +01:00
|
|
|
for (j=eBands[i];j<eBands[i+1];j++)
|
|
|
|
sum += X[j*C+c]*X[j+c*N]*tonality[j];
|
|
|
|
bank[i+c*m->nbEBands] = sqrt(sum);
|
|
|
|
/*printf ("%f ", bank[i+c*m->nbEBands]);*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*printf ("\n");*/
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Normalise each band such that the energy is one. */
|
2013-02-15 21:04:02 +01:00
|
|
|
void cc6_normalise_bands(const cc6_CELTMode *m, const cc6_celt_sig_t * __restrict freq, cc6_celt_norm_t * __restrict X, const cc6_celt_ener_t *bank)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i, c, N;
|
2013-02-15 21:04:02 +01:00
|
|
|
const cc6_celt_int16_t *eBands = m->eBands;
|
|
|
|
const int C = cc6_CHANNELS(m);
|
|
|
|
N = cc6_FRAMESIZE(m);
|
2013-02-13 18:08:47 +01:00
|
|
|
for (c=0;c<C;c++)
|
|
|
|
{
|
|
|
|
for (i=0;i<m->nbEBands;i++)
|
|
|
|
{
|
|
|
|
int j;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word16_t g = 1.f/(1e-10+bank[i+c*m->nbEBands]);
|
2013-02-13 18:08:47 +01:00
|
|
|
for (j=eBands[i];j<eBands[i+1];j++)
|
|
|
|
X[j*C+c] = freq[j+c*N]*g;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* FIXED_POINT */
|
|
|
|
|
|
|
|
#ifndef DISABLE_STEREO
|
2013-02-15 21:04:02 +01:00
|
|
|
void cc6_renormalise_bands(const cc6_CELTMode *m, cc6_celt_norm_t * __restrict X)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i, c;
|
2013-02-15 21:04:02 +01:00
|
|
|
const cc6_celt_int16_t *eBands = m->eBands;
|
|
|
|
const int C = cc6_CHANNELS(m);
|
2013-02-13 18:08:47 +01:00
|
|
|
for (c=0;c<C;c++)
|
|
|
|
{
|
|
|
|
i=0; do {
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_renormalise_vector(X+C*eBands[i]+c, cc6_QCONST16(0.70711f, 15), eBands[i+1]-eBands[i], C);
|
2013-02-13 18:08:47 +01:00
|
|
|
} while (++i<m->nbEBands);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* DISABLE_STEREO */
|
|
|
|
|
|
|
|
/* De-normalise the energy to produce the synthesis from the unit-energy bands */
|
2013-02-15 21:04:02 +01:00
|
|
|
void cc6_denormalise_bands(const cc6_CELTMode *m, const cc6_celt_norm_t * __restrict X, cc6_celt_sig_t * __restrict freq, const cc6_celt_ener_t *bank)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i, c, N;
|
2013-02-15 21:04:02 +01:00
|
|
|
const cc6_celt_int16_t *eBands = m->eBands;
|
|
|
|
const int C = cc6_CHANNELS(m);
|
|
|
|
N = cc6_FRAMESIZE(m);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (C>2)
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_fatal("cc6_denormalise_bands() not implemented for >2 channels");
|
2013-02-13 18:08:47 +01:00
|
|
|
for (c=0;c<C;c++)
|
|
|
|
{
|
|
|
|
for (i=0;i<m->nbEBands;i++)
|
|
|
|
{
|
|
|
|
int j;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word32_t g = cc6_SHR32(bank[i+c*m->nbEBands],1);
|
2013-02-13 18:08:47 +01:00
|
|
|
j=eBands[i]; do {
|
2013-02-15 21:04:02 +01:00
|
|
|
freq[j+c*N] = cc6_SHL32(cc6_MULT16_32_Q15(X[j*C+c], g),2);
|
2013-02-13 18:08:47 +01:00
|
|
|
} while (++j<eBands[i+1]);
|
|
|
|
}
|
|
|
|
for (i=eBands[m->nbEBands];i<eBands[m->nbEBands+1];i++)
|
|
|
|
freq[i+c*N] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Compute the best gain for each "pitch band" */
|
2013-02-15 21:04:02 +01:00
|
|
|
int cc6_compute_pitch_gain(const cc6_CELTMode *m, const cc6_celt_norm_t *X, const cc6_celt_norm_t *P, cc6_celt_pgain_t *gains)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int gain_sum = 0;
|
2013-02-15 21:04:02 +01:00
|
|
|
const cc6_celt_int16_t *pBands = m->pBands;
|
|
|
|
const int C = cc6_CHANNELS(m);
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
for (i=0;i<m->nbPBands;i++)
|
|
|
|
{
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word32_t Sxy=0, Sxx=0;
|
2013-02-13 18:08:47 +01:00
|
|
|
int j;
|
|
|
|
/* We know we're not going to overflow because Sxx can't be more than 1 (Q28) */
|
|
|
|
for (j=C*pBands[i];j<C*pBands[i+1];j++)
|
|
|
|
{
|
2013-02-15 21:04:02 +01:00
|
|
|
Sxy = cc6_MAC16_16(Sxy, X[j], P[j]);
|
|
|
|
Sxx = cc6_MAC16_16(Sxx, X[j], X[j]);
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
2013-02-15 21:04:02 +01:00
|
|
|
Sxy = cc6_SHR32(Sxy,2);
|
|
|
|
Sxx = cc6_SHR32(Sxx,2);
|
2013-02-13 18:08:47 +01:00
|
|
|
/* No negative gain allowed */
|
|
|
|
if (Sxy < 0)
|
|
|
|
Sxy = 0;
|
|
|
|
/* Not sure how that would happen, just making sure */
|
|
|
|
if (Sxy > Sxx)
|
|
|
|
Sxy = Sxx;
|
|
|
|
/* We need to be a bit conservative (multiply gain by 0.9), otherwise the
|
|
|
|
residual doesn't quantise well */
|
2013-02-15 21:04:02 +01:00
|
|
|
Sxy = cc6_MULT16_32_Q15(cc6_QCONST16(.99f, 15), Sxy);
|
2013-02-13 18:08:47 +01:00
|
|
|
/* gain = Sxy/Sxx */
|
2013-02-15 21:04:02 +01:00
|
|
|
gains[i] = cc6_EXTRACT16(cc6_celt_div(Sxy,cc6_ADD32(cc6_SHR32(Sxx, cc6_PGAIN_SHIFT),cc6_EPSILON)));
|
|
|
|
if (gains[i]>cc6_QCONST16(.5,15))
|
2013-02-13 18:08:47 +01:00
|
|
|
gain_sum++;
|
|
|
|
}
|
|
|
|
return gain_sum > 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef DISABLE_STEREO
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
static void cc6_stereo_band_mix(const cc6_CELTMode *m, cc6_celt_norm_t *X, const cc6_celt_ener_t *bank, int stereo_mode, int bandID, int dir)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i = bandID;
|
2013-02-15 21:04:02 +01:00
|
|
|
const cc6_celt_int16_t *eBands = m->eBands;
|
|
|
|
const int C = cc6_CHANNELS(m);
|
2013-02-13 18:08:47 +01:00
|
|
|
int j;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word16_t a1, a2;
|
2013-02-13 18:08:47 +01:00
|
|
|
if (stereo_mode==0)
|
|
|
|
{
|
|
|
|
/* Do mid-side when not doing intensity stereo */
|
2013-02-15 21:04:02 +01:00
|
|
|
a1 = cc6_QCONST16(.70711f,14);
|
|
|
|
a2 = dir*cc6_QCONST16(.70711f,14);
|
2013-02-13 18:08:47 +01:00
|
|
|
} else {
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word16_t left, right;
|
|
|
|
cc6_celt_word16_t norm;
|
2013-02-13 18:08:47 +01:00
|
|
|
#ifdef FIXED_POINT
|
2013-02-15 21:04:02 +01:00
|
|
|
int shift = cc6_celt_zlog2(cc6_MAX32(bank[i], bank[i+m->nbEBands]))-13;
|
2013-02-13 18:08:47 +01:00
|
|
|
#endif
|
2013-02-15 21:04:02 +01:00
|
|
|
left = cc6_VSHR32(bank[i],shift);
|
|
|
|
right = cc6_VSHR32(bank[i+m->nbEBands],shift);
|
|
|
|
norm = cc6_EPSILON + cc6_celt_sqrt(cc6_EPSILON+cc6_MULT16_16(left,left)+cc6_MULT16_16(right,right));
|
|
|
|
a1 = cc6_DIV32_16(cc6_SHL32(cc6_EXTEND32(left),14),norm);
|
|
|
|
a2 = dir*cc6_DIV32_16(cc6_SHL32(cc6_EXTEND32(right),14),norm);
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
for (j=eBands[i];j<eBands[i+1];j++)
|
|
|
|
{
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_norm_t r, l;
|
2013-02-13 18:08:47 +01:00
|
|
|
l = X[j*C];
|
|
|
|
r = X[j*C+1];
|
2013-02-15 21:04:02 +01:00
|
|
|
X[j*C] = cc6_MULT16_16_Q14(a1,l) + cc6_MULT16_16_Q14(a2,r);
|
|
|
|
X[j*C+1] = cc6_MULT16_16_Q14(a1,r) - cc6_MULT16_16_Q14(a2,l);
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
void cc6_interleave(cc6_celt_norm_t *x, int N)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_VARDECL(cc6_celt_norm_t, tmp);
|
|
|
|
cc6_SAVE_STACK;
|
|
|
|
cc6_ALLOC(tmp, N, cc6_celt_norm_t);
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
for (i=0;i<N;i++)
|
|
|
|
tmp[i] = x[i];
|
|
|
|
for (i=0;i<N>>1;i++)
|
|
|
|
{
|
|
|
|
x[i<<1] = tmp[i];
|
|
|
|
x[(i<<1)+1] = tmp[i+(N>>1)];
|
|
|
|
}
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_RESTORE_STACK;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
void cc6_deinterleave(cc6_celt_norm_t *x, int N)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_VARDECL(cc6_celt_norm_t, tmp);
|
|
|
|
cc6_SAVE_STACK;
|
|
|
|
cc6_ALLOC(tmp, N, cc6_celt_norm_t);
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
for (i=0;i<N;i++)
|
|
|
|
tmp[i] = x[i];
|
|
|
|
for (i=0;i<N>>1;i++)
|
|
|
|
{
|
|
|
|
x[i] = tmp[i<<1];
|
|
|
|
x[i+(N>>1)] = tmp[(i<<1)+1];
|
|
|
|
}
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_RESTORE_STACK;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* DISABLE_STEREO */
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
int cc6_folding_decision(const cc6_CELTMode *m, cc6_celt_norm_t *X, cc6_celt_word16_t *average, int *last_decision)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int NR=0;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word32_t ratio = cc6_EPSILON;
|
|
|
|
const cc6_celt_int16_t * __restrict eBands = m->eBands;
|
2013-02-13 18:08:47 +01:00
|
|
|
for (i=0;i<m->nbEBands;i++)
|
|
|
|
{
|
|
|
|
int j, N;
|
|
|
|
int max_i=0;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word16_t max_val=cc6_EPSILON;
|
|
|
|
cc6_celt_word32_t floor_ener=cc6_EPSILON;
|
|
|
|
cc6_celt_norm_t * __restrict x = X+eBands[i];
|
2013-02-13 18:08:47 +01:00
|
|
|
N = eBands[i+1]-eBands[i];
|
|
|
|
for (j=0;j<N;j++)
|
|
|
|
{
|
2013-02-15 21:04:02 +01:00
|
|
|
if (cc6_ABS16(x[j])>max_val)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
2013-02-15 21:04:02 +01:00
|
|
|
max_val = cc6_ABS16(x[j]);
|
2013-02-13 18:08:47 +01:00
|
|
|
max_i = j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#if 0
|
|
|
|
for (j=0;j<N;j++)
|
|
|
|
{
|
|
|
|
if (abs(j-max_i)>2)
|
|
|
|
floor_ener += x[j]*x[j];
|
|
|
|
}
|
|
|
|
#else
|
2013-02-15 21:04:02 +01:00
|
|
|
floor_ener = cc6_QCONST32(1.,28)-cc6_MULT16_16(max_val,max_val);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (max_i < N-1)
|
2013-02-15 21:04:02 +01:00
|
|
|
floor_ener -= cc6_MULT16_16(x[max_i+1], x[max_i+1]);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (max_i < N-2)
|
2013-02-15 21:04:02 +01:00
|
|
|
floor_ener -= cc6_MULT16_16(x[max_i+2], x[max_i+2]);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (max_i > 0)
|
2013-02-15 21:04:02 +01:00
|
|
|
floor_ener -= cc6_MULT16_16(x[max_i-1], x[max_i-1]);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (max_i > 1)
|
2013-02-15 21:04:02 +01:00
|
|
|
floor_ener -= cc6_MULT16_16(x[max_i-2], x[max_i-2]);
|
|
|
|
floor_ener = cc6_MAX32(floor_ener, cc6_EPSILON);
|
2013-02-13 18:08:47 +01:00
|
|
|
#endif
|
|
|
|
if (N>7 && eBands[i] >= m->pitchEnd)
|
|
|
|
{
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word16_t r;
|
|
|
|
cc6_celt_word16_t den = cc6_celt_sqrt(floor_ener);
|
|
|
|
den = cc6_MAX32(cc6_QCONST16(.02, 15), den);
|
|
|
|
r = cc6_DIV32_16(cc6_SHL32(cc6_EXTEND32(max_val),8),den);
|
|
|
|
ratio = cc6_ADD32(ratio, cc6_EXTEND32(r));
|
2013-02-13 18:08:47 +01:00
|
|
|
NR++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (NR>0)
|
2013-02-15 21:04:02 +01:00
|
|
|
ratio = cc6_DIV32_16(ratio, NR);
|
|
|
|
ratio = cc6_ADD32(cc6_HALF32(ratio), cc6_HALF32(*average));
|
2013-02-13 18:08:47 +01:00
|
|
|
if (!*last_decision)
|
|
|
|
{
|
2013-02-15 21:04:02 +01:00
|
|
|
*last_decision = (ratio < cc6_QCONST16(1.8,8));
|
2013-02-13 18:08:47 +01:00
|
|
|
} else {
|
2013-02-15 21:04:02 +01:00
|
|
|
*last_decision = (ratio < cc6_QCONST16(3.,8));
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
2013-02-15 21:04:02 +01:00
|
|
|
*average = cc6_EXTRACT16(ratio);
|
2013-02-13 18:08:47 +01:00
|
|
|
return *last_decision;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Quantisation of the residual */
|
2013-02-15 21:04:02 +01:00
|
|
|
void cc6_quant_bands(const cc6_CELTMode *m, cc6_celt_norm_t * __restrict X, cc6_celt_norm_t *P, cc6_celt_mask_t *W, int pitch_used, cc6_celt_pgain_t *pgains, const cc6_celt_ener_t *bandE, int *pulses, int shortBlocks, int fold, int total_bits, cc6_ec_enc *enc)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i, j, remaining_bits, balance;
|
2013-02-15 21:04:02 +01:00
|
|
|
const cc6_celt_int16_t * __restrict eBands = m->eBands;
|
|
|
|
cc6_celt_norm_t * __restrict norm;
|
|
|
|
cc6_VARDECL(cc6_celt_norm_t, _norm); const cc6_celt_int16_t *pBands = m->pBands;
|
2013-02-13 18:08:47 +01:00
|
|
|
int pband=-1;
|
|
|
|
int B;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_SAVE_STACK;
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
B = shortBlocks ? m->nbShortMdcts : 1;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_ALLOC(_norm, eBands[m->nbEBands+1], cc6_celt_norm_t);
|
2013-02-13 18:08:47 +01:00
|
|
|
norm = _norm;
|
|
|
|
|
|
|
|
balance = 0;
|
|
|
|
for (i=0;i<m->nbEBands;i++)
|
|
|
|
{
|
|
|
|
int tell;
|
|
|
|
int N;
|
|
|
|
int q;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word16_t n;
|
|
|
|
const cc6_celt_int16_t * const *BPbits;
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
int curr_balance, curr_bits;
|
|
|
|
|
|
|
|
N = eBands[i+1]-eBands[i];
|
|
|
|
BPbits = m->bits;
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
tell = cc6_ec_enc_tell(enc, 4);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (i != 0)
|
|
|
|
balance -= tell;
|
2013-02-15 21:04:02 +01:00
|
|
|
remaining_bits = (total_bits<<cc6_BITRES)-tell-1;
|
2013-02-13 18:08:47 +01:00
|
|
|
curr_balance = (m->nbEBands-i);
|
|
|
|
if (curr_balance > 3)
|
|
|
|
curr_balance = 3;
|
|
|
|
curr_balance = balance / curr_balance;
|
2013-02-15 21:04:02 +01:00
|
|
|
q = cc6_bits2pulses(m, BPbits[i], N, pulses[i]+curr_balance);
|
|
|
|
curr_bits = cc6_pulses2bits(BPbits[i], N, q);
|
2013-02-13 18:08:47 +01:00
|
|
|
remaining_bits -= curr_bits;
|
|
|
|
while (remaining_bits < 0 && q > 0)
|
|
|
|
{
|
|
|
|
remaining_bits += curr_bits;
|
|
|
|
q--;
|
2013-02-15 21:04:02 +01:00
|
|
|
curr_bits = cc6_pulses2bits(BPbits[i], N, q);
|
2013-02-13 18:08:47 +01:00
|
|
|
remaining_bits -= curr_bits;
|
|
|
|
}
|
|
|
|
balance += pulses[i] + tell;
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
n = cc6_SHL16(cc6_celt_sqrt(eBands[i+1]-eBands[i]),11);
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
/* If pitch is in use and this eBand begins a pitch band, encode the pitch gain flag */
|
|
|
|
if (pitch_used && eBands[i]< m->pitchEnd && eBands[i] == pBands[pband+1])
|
|
|
|
{
|
|
|
|
int enabled = 1;
|
|
|
|
pband++;
|
2013-02-15 21:04:02 +01:00
|
|
|
if (remaining_bits >= 1<<cc6_BITRES) {
|
|
|
|
enabled = pgains[pband] > cc6_QCONST16(.5,15);
|
|
|
|
cc6_ec_enc_bits(enc, enabled, 1);
|
|
|
|
balance += 1<<cc6_BITRES;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
if (enabled)
|
2013-02-15 21:04:02 +01:00
|
|
|
pgains[pband] = cc6_QCONST16(.9,15);
|
2013-02-13 18:08:47 +01:00
|
|
|
else
|
|
|
|
pgains[pband] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If pitch isn't available, use intra-frame prediction */
|
|
|
|
if ((eBands[i] >= m->pitchEnd && fold) || q<=0)
|
|
|
|
{
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_intra_fold(m, X+eBands[i], eBands[i+1]-eBands[i], &q, norm, P+eBands[i], eBands[i], B);
|
2013-02-13 18:08:47 +01:00
|
|
|
} else if (pitch_used && eBands[i] < m->pitchEnd) {
|
|
|
|
for (j=eBands[i];j<eBands[i+1];j++)
|
2013-02-15 21:04:02 +01:00
|
|
|
P[j] = cc6_MULT16_16_Q15(pgains[pband], P[j]);
|
2013-02-13 18:08:47 +01:00
|
|
|
} else {
|
|
|
|
for (j=eBands[i];j<eBands[i+1];j++)
|
|
|
|
P[j] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (q > 0)
|
|
|
|
{
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_alg_quant(X+eBands[i], W+eBands[i], eBands[i+1]-eBands[i], q, P+eBands[i], enc);
|
2013-02-13 18:08:47 +01:00
|
|
|
} else {
|
|
|
|
for (j=eBands[i];j<eBands[i+1];j++)
|
|
|
|
X[j] = P[j];
|
|
|
|
}
|
|
|
|
for (j=eBands[i];j<eBands[i+1];j++)
|
2013-02-15 21:04:02 +01:00
|
|
|
norm[j] = cc6_MULT16_16_Q15(n,X[j]);
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_RESTORE_STACK;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef DISABLE_STEREO
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
void cc6_quant_bands_stereo(const cc6_CELTMode *m, cc6_celt_norm_t * __restrict X, cc6_celt_norm_t *P, cc6_celt_mask_t *W, int pitch_used, cc6_celt_pgain_t *pgains, const cc6_celt_ener_t *bandE, int *pulses, int shortBlocks, int fold, int total_bits, cc6_ec_enc *enc)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i, j, remaining_bits, balance;
|
2013-02-15 21:04:02 +01:00
|
|
|
const cc6_celt_int16_t * __restrict eBands = m->eBands;
|
|
|
|
cc6_celt_norm_t * __restrict norm;
|
|
|
|
cc6_VARDECL(cc6_celt_norm_t, _norm);
|
|
|
|
const int C = cc6_CHANNELS(m);
|
|
|
|
const cc6_celt_int16_t *pBands = m->pBands;
|
2013-02-13 18:08:47 +01:00
|
|
|
int pband=-1;
|
|
|
|
int B;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word16_t mid, side;
|
|
|
|
cc6_SAVE_STACK;
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
B = shortBlocks ? m->nbShortMdcts : 1;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_ALLOC(_norm, C*eBands[m->nbEBands+1], cc6_celt_norm_t);
|
2013-02-13 18:08:47 +01:00
|
|
|
norm = _norm;
|
|
|
|
|
|
|
|
balance = 0;
|
|
|
|
for (i=0;i<m->nbEBands;i++)
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
int tell;
|
|
|
|
int q1, q2;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word16_t n;
|
|
|
|
const cc6_celt_int16_t * const *BPbits;
|
2013-02-13 18:08:47 +01:00
|
|
|
int b, qb;
|
|
|
|
int N;
|
|
|
|
int curr_balance, curr_bits;
|
|
|
|
int imid, iside, itheta;
|
|
|
|
int mbits, sbits, delta;
|
|
|
|
int qalloc;
|
|
|
|
|
|
|
|
BPbits = m->bits;
|
|
|
|
|
|
|
|
N = eBands[i+1]-eBands[i];
|
2013-02-15 21:04:02 +01:00
|
|
|
tell = cc6_ec_enc_tell(enc, 4);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (i != 0)
|
|
|
|
balance -= tell;
|
2013-02-15 21:04:02 +01:00
|
|
|
remaining_bits = (total_bits<<cc6_BITRES)-tell-1;
|
2013-02-13 18:08:47 +01:00
|
|
|
curr_balance = (m->nbEBands-i);
|
|
|
|
if (curr_balance > 3)
|
|
|
|
curr_balance = 3;
|
|
|
|
curr_balance = balance / curr_balance;
|
2013-02-15 21:04:02 +01:00
|
|
|
b = cc6_IMIN(remaining_bits+1,pulses[i]+curr_balance);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (b<0)
|
|
|
|
b = 0;
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
qb = (b-2*(N-1)*(40-cc6_log2_frac(N,4)))/(32*(N-1));
|
|
|
|
if (qb > (b>>cc6_BITRES)-1)
|
|
|
|
qb = (b>>cc6_BITRES)-1;
|
2013-02-13 18:08:47 +01:00
|
|
|
if (qb<0)
|
|
|
|
qb = 0;
|
|
|
|
if (qb>14)
|
|
|
|
qb = 14;
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_stereo_band_mix(m, X, bandE, qb==0, i, 1);
|
2013-02-13 18:08:47 +01:00
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
mid = cc6_renormalise_vector(X+C*eBands[i], cc6_Q15ONE, N, C);
|
|
|
|
side = cc6_renormalise_vector(X+C*eBands[i]+1, cc6_Q15ONE, N, C);
|
2013-02-13 18:08:47 +01:00
|
|
|
#ifdef FIXED_POINT
|
2013-02-15 21:04:02 +01:00
|
|
|
itheta = cc6_MULT16_16_Q15(cc6_QCONST16(0.63662,15),cc6_celt_atan2p(side, mid));
|
2013-02-13 18:08:47 +01:00
|
|
|
#else
|
|
|
|
itheta = floor(.5+16384*0.63662*atan2(side,mid));
|
|
|
|
#endif
|
2013-02-15 21:04:02 +01:00
|
|
|
qalloc = cc6_log2_frac((1<<qb)+1,4);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (qb==0)
|
|
|
|
{
|
|
|
|
itheta=0;
|
|
|
|
} else {
|
|
|
|
int shift;
|
|
|
|
shift = 14-qb;
|
|
|
|
itheta = (itheta+(1<<shift>>1))>>shift;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_ec_enc_uint(enc, itheta, (1<<qb)+1);
|
2013-02-13 18:08:47 +01:00
|
|
|
itheta <<= shift;
|
|
|
|
}
|
|
|
|
if (itheta == 0)
|
|
|
|
{
|
|
|
|
imid = 32767;
|
|
|
|
iside = 0;
|
|
|
|
delta = -10000;
|
|
|
|
} else if (itheta == 16384)
|
|
|
|
{
|
|
|
|
imid = 0;
|
|
|
|
iside = 32767;
|
|
|
|
delta = 10000;
|
|
|
|
} else {
|
2013-02-15 21:04:02 +01:00
|
|
|
imid = cc6_bitexact_cos(itheta);
|
|
|
|
iside = cc6_bitexact_cos(16384-itheta);
|
|
|
|
delta = (N-1)*(cc6_log2_frac(iside,6)-cc6_log2_frac(imid,6))>>2;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
mbits = (b-qalloc/2-delta)/2;
|
|
|
|
if (mbits > b-qalloc)
|
|
|
|
mbits = b-qalloc;
|
|
|
|
if (mbits<0)
|
|
|
|
mbits=0;
|
|
|
|
sbits = b-qalloc-mbits;
|
2013-02-15 21:04:02 +01:00
|
|
|
q1 = cc6_bits2pulses(m, BPbits[i], N, mbits);
|
|
|
|
q2 = cc6_bits2pulses(m, BPbits[i], N, sbits);
|
|
|
|
curr_bits = cc6_pulses2bits(BPbits[i], N, q1)+cc6_pulses2bits(BPbits[i], N, q2)+qalloc;
|
2013-02-13 18:08:47 +01:00
|
|
|
remaining_bits -= curr_bits;
|
|
|
|
while (remaining_bits < 0 && (q1 > 0 || q2 > 0))
|
|
|
|
{
|
|
|
|
remaining_bits += curr_bits;
|
|
|
|
if (q1>q2)
|
|
|
|
{
|
|
|
|
q1--;
|
2013-02-15 21:04:02 +01:00
|
|
|
curr_bits = cc6_pulses2bits(BPbits[i], N, q1)+cc6_pulses2bits(BPbits[i], N, q2)+qalloc;
|
2013-02-13 18:08:47 +01:00
|
|
|
} else {
|
|
|
|
q2--;
|
2013-02-15 21:04:02 +01:00
|
|
|
curr_bits = cc6_pulses2bits(BPbits[i], N, q1)+cc6_pulses2bits(BPbits[i], N, q2)+qalloc;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
remaining_bits -= curr_bits;
|
|
|
|
}
|
|
|
|
balance += pulses[i] + tell;
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
n = cc6_SHL16(cc6_celt_sqrt((eBands[i+1]-eBands[i])),11);
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
/* If pitch is in use and this eBand begins a pitch band, encode the pitch gain flag */
|
|
|
|
if (pitch_used && eBands[i]< m->pitchEnd && eBands[i] == pBands[pband+1])
|
|
|
|
{
|
|
|
|
int enabled = 1;
|
|
|
|
pband++;
|
2013-02-15 21:04:02 +01:00
|
|
|
if (remaining_bits >= 1<<cc6_BITRES) {
|
|
|
|
enabled = pgains[pband] > cc6_QCONST16(.5,15);
|
|
|
|
cc6_ec_enc_bits(enc, enabled, 1);
|
|
|
|
balance += 1<<cc6_BITRES;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
if (enabled)
|
2013-02-15 21:04:02 +01:00
|
|
|
pgains[pband] = cc6_QCONST16(.9,15);
|
2013-02-13 18:08:47 +01:00
|
|
|
else
|
|
|
|
pgains[pband] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* If pitch isn't available, use intra-frame prediction */
|
|
|
|
if ((eBands[i] >= m->pitchEnd && fold) || (q1+q2)<=0)
|
|
|
|
{
|
|
|
|
int K[2] = {q1, q2};
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_intra_fold(m, X+C*eBands[i], eBands[i+1]-eBands[i], K, norm, P+C*eBands[i], eBands[i], B);
|
|
|
|
cc6_deinterleave(P+C*eBands[i], C*N);
|
2013-02-13 18:08:47 +01:00
|
|
|
} else if (pitch_used && eBands[i] < m->pitchEnd) {
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_stereo_band_mix(m, P, bandE, qb==0, i, 1);
|
|
|
|
cc6_renormalise_vector(P+C*eBands[i], cc6_Q15ONE, N, C);
|
|
|
|
cc6_renormalise_vector(P+C*eBands[i]+1, cc6_Q15ONE, N, C);
|
|
|
|
cc6_deinterleave(P+C*eBands[i], C*N);
|
2013-02-13 18:08:47 +01:00
|
|
|
for (j=C*eBands[i];j<C*eBands[i+1];j++)
|
2013-02-15 21:04:02 +01:00
|
|
|
P[j] = cc6_MULT16_16_Q15(pgains[pband], P[j]);
|
2013-02-13 18:08:47 +01:00
|
|
|
} else {
|
|
|
|
for (j=C*eBands[i];j<C*eBands[i+1];j++)
|
|
|
|
P[j] = 0;
|
|
|
|
}
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_deinterleave(X+C*eBands[i], C*N);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (q1 > 0)
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_alg_quant(X+C*eBands[i], W+C*eBands[i], N, q1, P+C*eBands[i], enc);
|
2013-02-13 18:08:47 +01:00
|
|
|
else
|
|
|
|
for (j=C*eBands[i];j<C*eBands[i]+N;j++)
|
|
|
|
X[j] = P[j];
|
|
|
|
if (q2 > 0)
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_alg_quant(X+C*eBands[i]+N, W+C*eBands[i], N, q2, P+C*eBands[i]+N, enc);
|
2013-02-13 18:08:47 +01:00
|
|
|
else
|
|
|
|
for (j=C*eBands[i]+N;j<C*eBands[i+1];j++)
|
|
|
|
X[j] = 0;
|
|
|
|
|
|
|
|
#ifdef FIXED_POINT
|
|
|
|
mid = imid;
|
|
|
|
side = iside;
|
|
|
|
#else
|
|
|
|
mid = (1./32768)*imid;
|
|
|
|
side = (1./32768)*iside;
|
|
|
|
#endif
|
|
|
|
for (c=0;c<C;c++)
|
|
|
|
for (j=0;j<N;j++)
|
2013-02-15 21:04:02 +01:00
|
|
|
norm[C*(eBands[i]+j)+c] = cc6_MULT16_16_Q15(n,X[C*eBands[i]+c*N+j]);
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
for (j=0;j<N;j++)
|
2013-02-15 21:04:02 +01:00
|
|
|
X[C*eBands[i]+j] = cc6_MULT16_16_Q15(X[C*eBands[i]+j], mid);
|
2013-02-13 18:08:47 +01:00
|
|
|
for (j=0;j<N;j++)
|
2013-02-15 21:04:02 +01:00
|
|
|
X[C*eBands[i]+N+j] = cc6_MULT16_16_Q15(X[C*eBands[i]+N+j], side);
|
2013-02-13 18:08:47 +01:00
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_interleave(X+C*eBands[i], C*N);
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_stereo_band_mix(m, X, bandE, 0, i, -1);
|
|
|
|
cc6_renormalise_vector(X+C*eBands[i], cc6_Q15ONE, N, C);
|
|
|
|
cc6_renormalise_vector(X+C*eBands[i]+1, cc6_Q15ONE, N, C);
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_RESTORE_STACK;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
#endif /* DISABLE_STEREO */
|
|
|
|
|
|
|
|
/* Decoding of the residual */
|
2013-02-15 21:04:02 +01:00
|
|
|
void cc6_unquant_bands(const cc6_CELTMode *m, cc6_celt_norm_t * __restrict X, cc6_celt_norm_t *P, int pitch_used, cc6_celt_pgain_t *pgains, const cc6_celt_ener_t *bandE, int *pulses, int shortBlocks, int fold, int total_bits, cc6_ec_dec *dec)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i, j, remaining_bits, balance;
|
2013-02-15 21:04:02 +01:00
|
|
|
const cc6_celt_int16_t * __restrict eBands = m->eBands;
|
|
|
|
cc6_celt_norm_t * __restrict norm;
|
|
|
|
cc6_VARDECL(cc6_celt_norm_t, _norm);
|
|
|
|
const cc6_celt_int16_t *pBands = m->pBands;
|
2013-02-13 18:08:47 +01:00
|
|
|
int pband=-1;
|
|
|
|
int B;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_SAVE_STACK;
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
B = shortBlocks ? m->nbShortMdcts : 1;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_ALLOC(_norm, eBands[m->nbEBands+1], cc6_celt_norm_t);
|
2013-02-13 18:08:47 +01:00
|
|
|
norm = _norm;
|
|
|
|
|
|
|
|
balance = 0;
|
|
|
|
for (i=0;i<m->nbEBands;i++)
|
|
|
|
{
|
|
|
|
int tell;
|
|
|
|
int N;
|
|
|
|
int q;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word16_t n;
|
|
|
|
const cc6_celt_int16_t * const *BPbits;
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
int curr_balance, curr_bits;
|
|
|
|
|
|
|
|
N = eBands[i+1]-eBands[i];
|
|
|
|
BPbits = m->bits;
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
tell = cc6_ec_dec_tell(dec, 4);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (i != 0)
|
|
|
|
balance -= tell;
|
2013-02-15 21:04:02 +01:00
|
|
|
remaining_bits = (total_bits<<cc6_BITRES)-tell-1;
|
2013-02-13 18:08:47 +01:00
|
|
|
curr_balance = (m->nbEBands-i);
|
|
|
|
if (curr_balance > 3)
|
|
|
|
curr_balance = 3;
|
|
|
|
curr_balance = balance / curr_balance;
|
2013-02-15 21:04:02 +01:00
|
|
|
q = cc6_bits2pulses(m, BPbits[i], N, pulses[i]+curr_balance);
|
|
|
|
curr_bits = cc6_pulses2bits(BPbits[i], N, q);
|
2013-02-13 18:08:47 +01:00
|
|
|
remaining_bits -= curr_bits;
|
|
|
|
while (remaining_bits < 0 && q > 0)
|
|
|
|
{
|
|
|
|
remaining_bits += curr_bits;
|
|
|
|
q--;
|
2013-02-15 21:04:02 +01:00
|
|
|
curr_bits = cc6_pulses2bits(BPbits[i], N, q);
|
2013-02-13 18:08:47 +01:00
|
|
|
remaining_bits -= curr_bits;
|
|
|
|
}
|
|
|
|
balance += pulses[i] + tell;
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
n = cc6_SHL16(cc6_celt_sqrt(eBands[i+1]-eBands[i]),11);
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
/* If pitch is in use and this eBand begins a pitch band, encode the pitch gain flag */
|
|
|
|
if (pitch_used && eBands[i] < m->pitchEnd && eBands[i] == pBands[pband+1])
|
|
|
|
{
|
|
|
|
int enabled = 1;
|
|
|
|
pband++;
|
2013-02-15 21:04:02 +01:00
|
|
|
if (remaining_bits >= 1<<cc6_BITRES) {
|
|
|
|
enabled = cc6_ec_dec_bits(dec, 1);
|
|
|
|
balance += 1<<cc6_BITRES;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
if (enabled)
|
2013-02-15 21:04:02 +01:00
|
|
|
pgains[pband] = cc6_QCONST16(.9,15);
|
2013-02-13 18:08:47 +01:00
|
|
|
else
|
|
|
|
pgains[pband] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If pitch isn't available, use intra-frame prediction */
|
|
|
|
if ((eBands[i] >= m->pitchEnd && fold) || q<=0)
|
|
|
|
{
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_intra_fold(m, X+eBands[i], eBands[i+1]-eBands[i], &q, norm, P+eBands[i], eBands[i], B);
|
2013-02-13 18:08:47 +01:00
|
|
|
} else if (pitch_used && eBands[i] < m->pitchEnd) {
|
|
|
|
for (j=eBands[i];j<eBands[i+1];j++)
|
2013-02-15 21:04:02 +01:00
|
|
|
P[j] = cc6_MULT16_16_Q15(pgains[pband], P[j]);
|
2013-02-13 18:08:47 +01:00
|
|
|
} else {
|
|
|
|
for (j=eBands[i];j<eBands[i+1];j++)
|
|
|
|
P[j] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (q > 0)
|
|
|
|
{
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_alg_unquant(X+eBands[i], eBands[i+1]-eBands[i], q, P+eBands[i], dec);
|
2013-02-13 18:08:47 +01:00
|
|
|
} else {
|
|
|
|
for (j=eBands[i];j<eBands[i+1];j++)
|
|
|
|
X[j] = P[j];
|
|
|
|
}
|
|
|
|
for (j=eBands[i];j<eBands[i+1];j++)
|
2013-02-15 21:04:02 +01:00
|
|
|
norm[j] = cc6_MULT16_16_Q15(n,X[j]);
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_RESTORE_STACK;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef DISABLE_STEREO
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
void cc6_unquant_bands_stereo(const cc6_CELTMode *m, cc6_celt_norm_t * __restrict X, cc6_celt_norm_t *P, int pitch_used, cc6_celt_pgain_t *pgains, const cc6_celt_ener_t *bandE, int *pulses, int shortBlocks, int fold, int total_bits, cc6_ec_dec *dec)
|
2013-02-13 18:08:47 +01:00
|
|
|
{
|
|
|
|
int i, j, remaining_bits, balance;
|
2013-02-15 21:04:02 +01:00
|
|
|
const cc6_celt_int16_t * __restrict eBands = m->eBands;
|
|
|
|
cc6_celt_norm_t * __restrict norm;
|
|
|
|
cc6_VARDECL(cc6_celt_norm_t, _norm);
|
|
|
|
const int C = cc6_CHANNELS(m);
|
|
|
|
const cc6_celt_int16_t *pBands = m->pBands;
|
2013-02-13 18:08:47 +01:00
|
|
|
int pband=-1;
|
|
|
|
int B;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word16_t mid, side;
|
|
|
|
cc6_SAVE_STACK;
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
B = shortBlocks ? m->nbShortMdcts : 1;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_ALLOC(_norm, C*eBands[m->nbEBands+1], cc6_celt_norm_t);
|
2013-02-13 18:08:47 +01:00
|
|
|
norm = _norm;
|
|
|
|
|
|
|
|
balance = 0;
|
|
|
|
for (i=0;i<m->nbEBands;i++)
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
int tell;
|
|
|
|
int q1, q2;
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_celt_word16_t n;
|
|
|
|
const cc6_celt_int16_t * const *BPbits;
|
2013-02-13 18:08:47 +01:00
|
|
|
int b, qb;
|
|
|
|
int N;
|
|
|
|
int curr_balance, curr_bits;
|
|
|
|
int imid, iside, itheta;
|
|
|
|
int mbits, sbits, delta;
|
|
|
|
int qalloc;
|
|
|
|
|
|
|
|
BPbits = m->bits;
|
|
|
|
|
|
|
|
N = eBands[i+1]-eBands[i];
|
2013-02-15 21:04:02 +01:00
|
|
|
tell = cc6_ec_dec_tell(dec, 4);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (i != 0)
|
|
|
|
balance -= tell;
|
2013-02-15 21:04:02 +01:00
|
|
|
remaining_bits = (total_bits<<cc6_BITRES)-tell-1;
|
2013-02-13 18:08:47 +01:00
|
|
|
curr_balance = (m->nbEBands-i);
|
|
|
|
if (curr_balance > 3)
|
|
|
|
curr_balance = 3;
|
|
|
|
curr_balance = balance / curr_balance;
|
2013-02-15 21:04:02 +01:00
|
|
|
b = cc6_IMIN(remaining_bits+1,pulses[i]+curr_balance);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (b<0)
|
|
|
|
b = 0;
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
qb = (b-2*(N-1)*(40-cc6_log2_frac(N,4)))/(32*(N-1));
|
|
|
|
if (qb > (b>>cc6_BITRES)-1)
|
|
|
|
qb = (b>>cc6_BITRES)-1;
|
2013-02-13 18:08:47 +01:00
|
|
|
if (qb>14)
|
|
|
|
qb = 14;
|
|
|
|
if (qb<0)
|
|
|
|
qb = 0;
|
2013-02-15 21:04:02 +01:00
|
|
|
qalloc = cc6_log2_frac((1<<qb)+1,4);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (qb==0)
|
|
|
|
{
|
|
|
|
itheta=0;
|
|
|
|
} else {
|
|
|
|
int shift;
|
|
|
|
shift = 14-qb;
|
2013-02-15 21:04:02 +01:00
|
|
|
itheta = cc6_ec_dec_uint(dec, (1<<qb)+1);
|
2013-02-13 18:08:47 +01:00
|
|
|
itheta <<= shift;
|
|
|
|
}
|
|
|
|
if (itheta == 0)
|
|
|
|
{
|
|
|
|
imid = 32767;
|
|
|
|
iside = 0;
|
|
|
|
delta = -10000;
|
|
|
|
} else if (itheta == 16384)
|
|
|
|
{
|
|
|
|
imid = 0;
|
|
|
|
iside = 32767;
|
|
|
|
delta = 10000;
|
|
|
|
} else {
|
2013-02-15 21:04:02 +01:00
|
|
|
imid = cc6_bitexact_cos(itheta);
|
|
|
|
iside = cc6_bitexact_cos(16384-itheta);
|
|
|
|
delta = (N-1)*(cc6_log2_frac(iside,6)-cc6_log2_frac(imid,6))>>2;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
mbits = (b-qalloc/2-delta)/2;
|
|
|
|
if (mbits > b-qalloc)
|
|
|
|
mbits = b-qalloc;
|
|
|
|
if (mbits<0)
|
|
|
|
mbits=0;
|
|
|
|
sbits = b-qalloc-mbits;
|
2013-02-15 21:04:02 +01:00
|
|
|
q1 = cc6_bits2pulses(m, BPbits[i], N, mbits);
|
|
|
|
q2 = cc6_bits2pulses(m, BPbits[i], N, sbits);
|
|
|
|
curr_bits = cc6_pulses2bits(BPbits[i], N, q1)+cc6_pulses2bits(BPbits[i], N, q2)+qalloc;
|
2013-02-13 18:08:47 +01:00
|
|
|
remaining_bits -= curr_bits;
|
|
|
|
while (remaining_bits < 0 && (q1 > 0 || q2 > 0))
|
|
|
|
{
|
|
|
|
remaining_bits += curr_bits;
|
|
|
|
if (q1>q2)
|
|
|
|
{
|
|
|
|
q1--;
|
2013-02-15 21:04:02 +01:00
|
|
|
curr_bits = cc6_pulses2bits(BPbits[i], N, q1)+cc6_pulses2bits(BPbits[i], N, q2)+qalloc;
|
2013-02-13 18:08:47 +01:00
|
|
|
} else {
|
|
|
|
q2--;
|
2013-02-15 21:04:02 +01:00
|
|
|
curr_bits = cc6_pulses2bits(BPbits[i], N, q1)+cc6_pulses2bits(BPbits[i], N, q2)+qalloc;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
remaining_bits -= curr_bits;
|
|
|
|
}
|
|
|
|
balance += pulses[i] + tell;
|
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
n = cc6_SHL16(cc6_celt_sqrt((eBands[i+1]-eBands[i])),11);
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
/* If pitch is in use and this eBand begins a pitch band, encode the pitch gain flag */
|
|
|
|
if (pitch_used && eBands[i]< m->pitchEnd && eBands[i] == pBands[pband+1])
|
|
|
|
{
|
|
|
|
int enabled = 1;
|
|
|
|
pband++;
|
2013-02-15 21:04:02 +01:00
|
|
|
if (remaining_bits >= 1<<cc6_BITRES) {
|
|
|
|
enabled = cc6_ec_dec_bits(dec, 1);
|
|
|
|
balance += 1<<cc6_BITRES;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
if (enabled)
|
2013-02-15 21:04:02 +01:00
|
|
|
pgains[pband] = cc6_QCONST16(.9,15);
|
2013-02-13 18:08:47 +01:00
|
|
|
else
|
|
|
|
pgains[pband] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If pitch isn't available, use intra-frame prediction */
|
|
|
|
if ((eBands[i] >= m->pitchEnd && fold) || (q1+q2)<=0)
|
|
|
|
{
|
|
|
|
int K[2] = {q1, q2};
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_intra_fold(m, X+C*eBands[i], eBands[i+1]-eBands[i], K, norm, P+C*eBands[i], eBands[i], B);
|
|
|
|
cc6_deinterleave(P+C*eBands[i], C*N);
|
2013-02-13 18:08:47 +01:00
|
|
|
} else if (pitch_used && eBands[i] < m->pitchEnd) {
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_stereo_band_mix(m, P, bandE, qb==0, i, 1);
|
|
|
|
cc6_renormalise_vector(P+C*eBands[i], cc6_Q15ONE, N, C);
|
|
|
|
cc6_renormalise_vector(P+C*eBands[i]+1, cc6_Q15ONE, N, C);
|
|
|
|
cc6_deinterleave(P+C*eBands[i], C*N);
|
2013-02-13 18:08:47 +01:00
|
|
|
for (j=C*eBands[i];j<C*eBands[i+1];j++)
|
2013-02-15 21:04:02 +01:00
|
|
|
P[j] = cc6_MULT16_16_Q15(pgains[pband], P[j]);
|
2013-02-13 18:08:47 +01:00
|
|
|
} else {
|
|
|
|
for (j=C*eBands[i];j<C*eBands[i+1];j++)
|
|
|
|
P[j] = 0;
|
|
|
|
}
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_deinterleave(X+C*eBands[i], C*N);
|
2013-02-13 18:08:47 +01:00
|
|
|
if (q1 > 0)
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_alg_unquant(X+C*eBands[i], N, q1, P+C*eBands[i], dec);
|
2013-02-13 18:08:47 +01:00
|
|
|
else
|
|
|
|
for (j=C*eBands[i];j<C*eBands[i]+N;j++)
|
|
|
|
X[j] = P[j];
|
|
|
|
if (q2 > 0)
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_alg_unquant(X+C*eBands[i]+N, N, q2, P+C*eBands[i]+N, dec);
|
2013-02-13 18:08:47 +01:00
|
|
|
else
|
|
|
|
for (j=C*eBands[i]+N;j<C*eBands[i+1];j++)
|
|
|
|
X[j] = 0;
|
|
|
|
/*orthogonalize(X+C*eBands[i], X+C*eBands[i]+N, N);*/
|
|
|
|
|
|
|
|
#ifdef FIXED_POINT
|
|
|
|
mid = imid;
|
|
|
|
side = iside;
|
|
|
|
#else
|
|
|
|
mid = (1./32768)*imid;
|
|
|
|
side = (1./32768)*iside;
|
|
|
|
#endif
|
|
|
|
for (c=0;c<C;c++)
|
|
|
|
for (j=0;j<N;j++)
|
2013-02-15 21:04:02 +01:00
|
|
|
norm[C*(eBands[i]+j)+c] = cc6_MULT16_16_Q15(n,X[C*eBands[i]+c*N+j]);
|
2013-02-13 18:08:47 +01:00
|
|
|
|
|
|
|
for (j=0;j<N;j++)
|
2013-02-15 21:04:02 +01:00
|
|
|
X[C*eBands[i]+j] = cc6_MULT16_16_Q15(X[C*eBands[i]+j], mid);
|
2013-02-13 18:08:47 +01:00
|
|
|
for (j=0;j<N;j++)
|
2013-02-15 21:04:02 +01:00
|
|
|
X[C*eBands[i]+N+j] = cc6_MULT16_16_Q15(X[C*eBands[i]+N+j], side);
|
2013-02-13 18:08:47 +01:00
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_interleave(X+C*eBands[i], C*N);
|
2013-02-13 18:08:47 +01:00
|
|
|
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_stereo_band_mix(m, X, bandE, 0, i, -1);
|
|
|
|
cc6_renormalise_vector(X+C*eBands[i], cc6_Q15ONE, N, C);
|
|
|
|
cc6_renormalise_vector(X+C*eBands[i]+1, cc6_Q15ONE, N, C);
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
2013-02-15 21:04:02 +01:00
|
|
|
cc6_RESTORE_STACK;
|
2013-02-13 18:08:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* DISABLE_STEREO */
|