Home | History | Annotate | Download | only in celt

Lines Matching refs:best_pitch

46                             int max_pitch, int *best_pitch
66 best_pitch[0] = 0;
67 best_pitch[1] = 1;
89 best_pitch[1] = best_pitch[0];
92 best_pitch[0] = i;
96 best_pitch[1] = i;
309 int best_pitch[2]={0,0};
360 find_best_pitch(xcorr, y_lp4, len>>2, max_pitch>>2, best_pitch
374 if (abs(i-2*best_pitch[0])>2 && abs(i-2*best_pitch[1])>2)
388 find_best_pitch(xcorr, y, len>>1, max_pitch>>1, best_pitch
395 if (best_pitch[0]>0 && best_pitch[0]<(max_pitch>>1)-1)
398 a = xcorr[best_pitch[0]-1];
399 b = xcorr[best_pitch[0]];
400 c = xcorr[best_pitch[0]+1];
410 *pitch = 2*best_pitch[0]-offset;