Searched refs:ff_g723_1_dot_product (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | g723_1dec.c | 289 ccr = ff_g723_1_dot_product(buf, buf + dir * i, length); in autocorr_max() 388 energy[0] = ff_g723_1_dot_product(buf, buf, SUBFRAME_LEN); in comp_ppf_coeff() 392 energy[2] = ff_g723_1_dot_product(buf + fwd_lag, buf + fwd_lag, in comp_ppf_coeff() 397 energy[4] = ff_g723_1_dot_product(buf - back_lag, buf - back_lag, in comp_ppf_coeff() 460 tgt_eng = ff_g723_1_dot_product(buf, buf, SUBFRAME_LEN * 2); in comp_interp_index() 467 best_eng = ff_g723_1_dot_product(buf - index, buf - index, in comp_interp_index() 620 auto_corr[0] = ff_g723_1_dot_product(dst, dst + 1, SUBFRAME_LEN - 1); in formant_postfilter() 621 auto_corr[1] = ff_g723_1_dot_product(dst, dst, SUBFRAME_LEN); in formant_postfilter()
|
D | g723_1enc.c | 304 error = ff_g723_1_dot_product(lsp + (offset), temp, size) << 1; \ 305 error -= ff_g723_1_dot_product(lsp_band##num[i], temp, size); \ 695 ccr_buf[count++] = ff_g723_1_dot_product(flt_buf[j], flt_buf[j], in acb_search() 803 temp = ff_g723_1_dot_product(temp_corr, temp_corr, SUBFRAME_LEN); in get_fcb_param() 809 temp = ff_g723_1_dot_product(temp_corr + i, temp_corr, in get_fcb_param() 817 temp = ff_g723_1_dot_product(buf + i, impulse_r, SUBFRAME_LEN - i); in get_fcb_param()
|
D | g723_1.h | 180 int ff_g723_1_dot_product(const int16_t *a, const int16_t *b, int length);
|
D | g723_1.c | 54 int ff_g723_1_dot_product(const int16_t *a, const int16_t *b, int length) in ff_g723_1_dot_product() function
|