Searched refs:ff_g723_1_dot_product (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | g723_1dec.c | 361 ccr = ff_g723_1_dot_product(buf, buf + dir * i, length); in autocorr_max() 460 energy[0] = ff_g723_1_dot_product(buf, buf, SUBFRAME_LEN); in comp_ppf_coeff() 464 energy[2] = ff_g723_1_dot_product(buf + fwd_lag, buf + fwd_lag, in comp_ppf_coeff() 469 energy[4] = ff_g723_1_dot_product(buf - back_lag, buf - back_lag, in comp_ppf_coeff() 532 tgt_eng = ff_g723_1_dot_product(buf, buf, SUBFRAME_LEN * 2); in comp_interp_index() 539 best_eng = ff_g723_1_dot_product(buf - index, buf - index, in comp_interp_index() 692 auto_corr[0] = ff_g723_1_dot_product(dst, dst + 1, SUBFRAME_LEN - 1); in formant_postfilter() 693 auto_corr[1] = ff_g723_1_dot_product(dst, dst, SUBFRAME_LEN); in formant_postfilter()
|
D | g723_1enc.c | 352 error = ff_g723_1_dot_product(lsp + (offset), temp, size) << 1; \ 353 error -= ff_g723_1_dot_product(ff_g723_1_lsp_band##num[i], temp, size); \ 743 ccr_buf[count++] = ff_g723_1_dot_product(flt_buf[j], flt_buf[j], in acb_search() 851 temp = ff_g723_1_dot_product(temp_corr, temp_corr, SUBFRAME_LEN); in get_fcb_param() 857 temp = ff_g723_1_dot_product(temp_corr + i, temp_corr, in get_fcb_param() 865 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 | 1125 int ff_g723_1_dot_product(const int16_t *a, const int16_t *b, int length) in ff_g723_1_dot_product() function
|