Skip to content
Snippets Groups Projects
Commit b7ed44ba authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

minor tweak to pitch weighting function, disabled some code that doesn't

do anything yet.
parent 66fa639c
No related branches found
No related tags found
No related merge requests found
......@@ -233,6 +233,7 @@ int celt_encode(CELTEncoder *st, celt_int16_t *pcm, unsigned char *compressed, i
/* Compute MDCTs */
compute_mdcts(&st->mdct_lookup, st->window, in, X, N, B, C);
#if 0 /* Mask disabled until it can be made to do something useful */
compute_mdct_masking(X, mask, B*C*N, st->Fs);
/* Invert and stretch the mask to length of X
......@@ -240,7 +241,10 @@ int celt_encode(CELTEncoder *st, celt_int16_t *pcm, unsigned char *compressed, i
although there's no valid reason to. Must investigate further */
for (i=0;i<B*C*N;i++)
mask[i] = 1/(.1+mask[i]);
#else
for (i=0;i<B*C*N;i++)
mask[i] = 1;
#endif
/* Pitch analysis */
for (c=0;c<C;c++)
{
......
......@@ -58,7 +58,7 @@ void find_spectral_pitch(kiss_fftr_cfg fft, float *x, float *y, int lag, int len
float n;
//n = 1.f/(1e1+sqrt(sqrt((X[2*i-1]*X[2*i-1] + X[2*i ]*X[2*i ])*(Y[2*i-1]*Y[2*i-1] + Y[2*i ]*Y[2*i ]))));
//n = 1;
n = 1.f/pow(1+curve[i],.5)/(i+60);
n = 1.f/sqrt(1+curve[i]);
//n = 1.f/(1+curve[i]);
float tmp = X[2*i];
X[2*i] = (X[2*i ]*Y[2*i ] + X[2*i+1]*Y[2*i+1])*n;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment