/* (C) 2007 Jean-Marc Valin, CSIRO */ /* 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 #include #include "cwrs.h" #include "vq.h" #include "arch.h" /* Enable this or define your own implementation if you want to speed up the VQ search (used in inner loop only) */ #if 0 #include static inline float approx_sqrt(float x) { _mm_store_ss(&x, _mm_sqrt_ss(_mm_set_ss(x))); return x; } static inline float approx_inv(float x) { _mm_store_ss(&x, _mm_rcp_ss(_mm_set_ss(x))); return x; } #else #define approx_sqrt(x) (sqrt(x)) #define approx_inv(x) (1.f/(x)) #endif /** All the info necessary to keep track of a hypothesis during the search */ struct NBest { float score; float gain; int sign; int pos; int orig; float xy; float yy; float yp; }; void alg_quant(celt_norm_t *X, float *W, int N, int K, celt_norm_t *P, float alpha, ec_enc *enc) { int L = 3; VARDECL(float *x); VARDECL(float *p); VARDECL(float *_y); VARDECL(float *_ny); VARDECL(int *_iy); VARDECL(int *_iny); VARDECL(float **y); VARDECL(float **ny); VARDECL(int **iy); VARDECL(int **iny); int i, j, k, m; int pulsesLeft; VARDECL(float *xy); VARDECL(float *yy); VARDECL(float *yp); VARDECL(struct NBest *_nbest); VARDECL(struct NBest **nbest); float Rpp=0, Rxp=0; int maxL = 1; ALLOC(x, N, float); ALLOC(p, N, float); ALLOC(_y, L*N, float); ALLOC(_ny, L*N, float); ALLOC(_iy, L*N, int); ALLOC(_iny, L*N, int); ALLOC(y, L*N, float*); ALLOC(ny, L*N, float*); ALLOC(iy, L*N, int*); ALLOC(iny, L*N, int*); ALLOC(xy, L, float); ALLOC(yy, L, float); ALLOC(yp, L, float); ALLOC(_nbest, L, struct NBest); ALLOC(nbest, L, struct NBest *); for (j=0;j 0) { int pulsesAtOnce=1; int Lupdate = L; int L2 = L; /* Decide on complexity strategy */ pulsesAtOnce = pulsesLeft/N; if (pulsesAtOnce<1) pulsesAtOnce = 1; if (pulsesLeft-pulsesAtOnce > 3 || N > 30) Lupdate = 1; /*printf ("%d %d %d/%d %d\n", Lupdate, pulsesAtOnce, pulsesLeft, K, N);*/ L2 = Lupdate; if (L2>maxL) { L2 = maxL; maxL *= N; } for (m=0;mscore = -1e10f; for (m=0;m0) sign=1; else sign=-1;*/ for (sign=-1;sign<=1;sign+=2) { /*fprintf (stderr, "%d/%d %d/%d %d/%d\n", i, K, m, L2, j, N);*/ float tmp_xy, tmp_yy, tmp_yp; float score; float g; float s = sign*pulsesAtOnce; /* All pulses at one location must have the same sign. */ if (iy[m][j]*sign < 0) continue; /* Updating the sums of the new pulse(s) */ tmp_xy = xy[m] + s*x[j] - alpha*s*p[j]*Rxp; tmp_yy = yy[m] + 2.f*s*y[m][j] + s*s +s*s*alpha*alpha*p[j]*p[j]*Rpp - 2.f*alpha*s*p[j]*yp[m] - 2.f*s*s*alpha*p[j]*p[j]; tmp_yp = yp[m] + s*p[j] *(1.f-alpha*Rpp); /* Compute the gain such that ||p + g*y|| = 1 */ g = (approx_sqrt(tmp_yp*tmp_yp + tmp_yy - tmp_yy*Rpp) - tmp_yp)*approx_inv(tmp_yy); /* Knowing that gain, what the error: (x-g*y)^2 (result is negated and we discard x^2 because it's constant) */ score = 2.f*g*tmp_xy - g*g*tmp_yy; if (score>nbest[Lupdate-1]->score) { int k; int id = Lupdate-1; struct NBest *tmp_best; /* Save some pointers that would be deleted and use them for the current entry*/ tmp_best = nbest[Lupdate-1]; while (id > 0 && score > nbest[id-1]->score) id--; for (k=Lupdate-1;k>id;k--) nbest[k] = nbest[k-1]; nbest[id] = tmp_best; nbest[id]->score = score; nbest[id]->pos = j; nbest[id]->orig = m; nbest[id]->sign = sign; nbest[id]->gain = g; nbest[id]->xy = tmp_xy; nbest[id]->yy = tmp_yy; nbest[id]->yp = tmp_yp; } } } } /* Only now that we've made the final choice, update ny/iny and others */ for (k=0;ksign*pulsesAtOnce; s = is; for (n=0;norig][n] - alpha*s*p[nbest[k]->pos]*p[n]; ny[k][nbest[k]->pos] += s; for (n=0;norig][n]; iny[k][nbest[k]->pos] += is; xy[k] = nbest[k]->xy; yy[k] = nbest[k]->yy; yp[k] = nbest[k]->yp; } /* Swap ny/iny with y/iy */ for (k=0;kgain*y[0][i])*(x[i]-nbest[0]->gain*y[0][i]); /*if (N<=10) printf ("%f %d %d\n", err, K, N);*/ } for (i=0;igain*y[0][i]; /* Sanity checks, don't bother */ if (0) { float E=1e-15; int ABS = 0; for (i=0;i 32) max_pos = 32; for (i=0;i best_score) { best_score = score; best = i; if (xy>0) s = 1; else s = -1; } } if (s<0) sign = 1; else sign = 0; /*printf ("%d %d ", sign, best);*/ ec_enc_uint(enc,sign,2); ec_enc_uint(enc,best/B,max_pos); /*printf ("%d %f\n", best, best_score);*/ if (K>10) pred_gain = pg[10]; else pred_gain = pg[K]; E = 1e-10; for (j=0;j0) { for (j=0;j 32) max_pos = 32; sign = ec_dec_uint(dec, 2); if (sign == 0) s = 1; else s = -1; best = B*ec_dec_uint(dec, max_pos); /*printf ("%d %d ", sign, best);*/ if (K>10) pred_gain = pg[10]; else pred_gain = pg[K]; E = 1e-10; for (j=0;j= Nmax/2) { for (i=0;i