/* (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 "mathops.h" #include "cwrs.h" #include "vq.h" #include "arch.h" #include "os_support.h" /** Takes the pitch vector and the decoded residual vector (non-compressed), applies the compression in the pitch direction, computes the gain that will give ||p+g*y||=1 and mixes the residual with the pitch. */ static void mix_pitch_and_residual(int *iy, celt_norm_t *X, int N, int K, const celt_norm_t *P) { int i; celt_word32_t Ryp, Ryy, Rpp; celt_word32_t g; VARDECL(celt_norm_t, y); #ifdef FIXED_POINT int yshift; #endif SAVE_STACK; #ifdef FIXED_POINT yshift = 14-EC_ILOG(K); #endif ALLOC(y, N, celt_norm_t); /*for (i=0;i 0) { int pulsesAtOnce=1; /* Decide on how many pulses to find at once */ pulsesAtOnce = pulsesLeft/N; if (pulsesAtOnce<1) pulsesAtOnce = 1; /*printf ("%d %d %d/%d %d\n", Lupdate, pulsesAtOnce, pulsesLeft, K, N);*/ nbest.score = -VERY_LARGE32; for (j=0;j0) sign=1; else sign=-1; s = SHL16(sign*pulsesAtOnce, yshift); /* Updating the sums of the new pulse(s) */ Rxy = xy + MULT16_16(s,X[j]); Ryy = yy + 2*MULT16_16(s,y[j]) + MULT16_16(s,s); Ryp = yp + MULT16_16(s, P[j]); if (pulsesLeft>1) { score = MULT32_32_Q31(MULT16_16(ROUND16(Rxy,14),ABS16(ROUND16(Rxy,14))), celt_rcp(SHR32(Ryy,12))); } else { /* Compute the gain such that ||p + g*y|| = 1 */ g = MULT16_32_Q15( celt_sqrt(MULT16_16(ROUND16(Ryp,14),ROUND16(Ryp,14)) + Ryy - MULT16_16(ROUND16(Ryy,14),Rpp)) - ROUND16(Ryp,14), celt_rcp(SHR32(Ryy,12))); /* Knowing that gain, what's the error: (x-g*y)^2 (result is negated and we discard x^2 because it's constant) */ /* score = 2.f*g*Rxy - 1.f*g*g*Ryy*NORM_SCALING_1;*/ score = 2*MULT16_32_Q14(ROUND16(Rxy,14),g) - MULT16_32_Q14(EXTRACT16(MULT16_32_Q14(ROUND16(Ryy,14),g)),g); } if (score>nbest.score) { nbest.score = score; nbest.pos = j; nbest.orig = 0; nbest.sign = sign; nbest.xy = Rxy; nbest.yy = Ryy; nbest.yp = Ryp; } } celt_assert2(nbest[0]->score > -VERY_LARGE32, "Could not find any match in VQ codebook. Something got corrupted somewhere."); /* Only now that we've made the final choice, update ny/iny and others */ { int n; int is; celt_norm_t s; is = nbest.sign*pulsesAtOnce; s = SHL16(is, yshift); for (n=0;n MAX_INTRA) max_pos = MAX_INTRA; for (i=0;i best_score) { best_score = score; best = i; /* Store xy as the sign. We'll normalise it to +/- 1 later. */ s = ROUND16(xy,14); } } if (s<0) { s = -1; sign = 1; } else { s = 1; sign = 0; } /*printf ("%d %d ", sign, best);*/ ec_enc_bits(enc,sign,1); if (max_pos == MAX_INTRA) ec_enc_bits(enc,best/B,LOG_MAX_INTRA); else 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 = EPSILON; for (j=0;j0) { for (j=0;j MAX_INTRA) max_pos = MAX_INTRA; sign = ec_dec_bits(dec, 1); if (sign == 0) s = 1; else s = -1; if (max_pos == MAX_INTRA) best = B*ec_dec_bits(dec, LOG_MAX_INTRA); else 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 = EPSILON; for (j=0;j= (Nmax>>1)) { for (i=0;i