shithub: opus

Download patch

ref: aebb6fd624c8c2d60a023ab778426465ae7661b6
parent: e465c1490aed0d0f0345996317daa667dd522171
author: Jean-Marc Valin <[email protected]>
date: Wed Dec 2 02:04:28 EST 2009

Some work on the pitch search weighting filter (still disabled)

--- a/libcelt/pitch.c
+++ b/libcelt/pitch.c
@@ -120,6 +120,7 @@
       float ac[3]={0,0,0};
       float ak[2];
       float det;
+      celt_word16 mem[2];
       for (i=0;i<3;i++)
       {
          for (j=0;j<(len>>1)-i;j++)
@@ -128,16 +129,19 @@
          }
       }
       det = 1./(.1+ac[0]*ac[0]-ac[1]*ac[1]);
-      ak[0] = det*(ac[0]*ac[1] - ac[1]*ac[2]);
-      ak[1] = det*(-ac[1]*ac[1] + ac[0]*ac[2]);
+      ak[0] = .9*det*(ac[0]*ac[1] - ac[1]*ac[2]);
+      ak[1] = .81*det*(-ac[1]*ac[1] + ac[0]*ac[2]);
       /*printf ("%f %f %f\n", 1., -ak[0], -ak[1]);*/
-      float mem[2];
+      mem[0]=filt_mem[0];
+      mem[1]=filt_mem[1];
+      filt_mem[0]=x_lp[(end>>1)-1];
+      filt_mem[1]=x_lp[(end>>1)-2];
       for (j=0;j<len>>1;j++)
       {
          float tmp = x_lp[j];
-         x_lp[j] = x_lp[j] - ak[0]*filt_mem[0] - ak[1]*filt_mem[1];
-         filt_mem[1]=mem[0];
-         filt_mem[0]=tmp;
+         x_lp[j] = x_lp[j] - ak[0]*mem[0] - ak[1]*mem[1];
+         mem[1]=mem[0];
+         mem[0]=tmp;
       }
    }
 #endif