• Home
  • Raw
  • Download

Lines Matching refs:opus_val16

45 static void find_best_pitch(opus_val32 *xcorr, opus_val16 *y, int len,  in find_best_pitch()
54 opus_val16 best_num[2]; in find_best_pitch()
74 opus_val16 num; in find_best_pitch()
105 static void celt_fir5(const opus_val16 *x, in celt_fir5()
106 const opus_val16 *num, in celt_fir5()
107 opus_val16 *y, in celt_fir5()
109 opus_val16 *mem) in celt_fir5()
112 opus_val16 num0, num1, num2, num3, num4; in celt_fir5()
147 void pitch_downsample(celt_sig * OPUS_RESTRICT x[], opus_val16 * OPUS_RESTRICT x_lp, in pitch_downsample()
152 opus_val16 tmp=Q15ONE; in pitch_downsample()
153 opus_val16 lpc[4], mem[5]={0,0,0,0,0}; in pitch_downsample()
154 opus_val16 lpc2[5]; in pitch_downsample()
155 opus_val16 c1 = QCONST16(.8f,15); in pitch_downsample()
224 celt_pitch_xcorr_c(const opus_val16 *_x, const opus_val16 *_y, in celt_pitch_xcorr_c()
227 celt_pitch_xcorr(const opus_val16 *_x, const opus_val16 *_y, in celt_pitch_xcorr_c()
304 void pitch_search(const opus_val16 * OPUS_RESTRICT x_lp, opus_val16 * OPUS_RESTRICT y, in pitch_search()
310 VARDECL(opus_val16, x_lp4); in pitch_search()
311 VARDECL(opus_val16, y_lp4); in pitch_search()
326 ALLOC(x_lp4, len>>2, opus_val16); in pitch_search()
327 ALLOC(y_lp4, lag>>2, opus_val16); in pitch_search()
416 static opus_val16 compute_pitch_gain(opus_val32 xy, opus_val32 xx, opus_val32 yy) in compute_pitch_gain()
421 opus_val16 den; in compute_pitch_gain()
444 static opus_val16 compute_pitch_gain(opus_val32 xy, opus_val32 xx, opus_val32 yy) in compute_pitch_gain()
451 opus_val16 remove_doubling(opus_val16 *x, int maxperiod, int minperiod, in remove_doubling()
452 int N, int *T0_, int prev_period, opus_val16 prev_gain, int arch) in remove_doubling()
455 opus_val16 g, g0; in remove_doubling()
456 opus_val16 pg; in remove_doubling()
493 opus_val16 g1; in remove_doubling()
494 opus_val16 cont=0; in remove_doubling()
495 opus_val16 thresh; in remove_doubling()