Searched refs:ff_dot_product (Results 1 - 5 of 5) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | g723_1enc.c | 153 temp = ff_dot_product(vector, vector, LPC_FRAME); in comp_autocorr() 168 temp = ff_dot_product(vector, vector + i, LPC_FRAME - i); in comp_autocorr() 479 orig_eng = ff_dot_product(buf + offset, buf + offset, HALF_FRAME_LEN); in estimate_pitch() 487 ccr = ff_dot_product(buf + start, buf + offset, HALF_FRAME_LEN); in estimate_pitch() 548 energy[i << 1] = ff_dot_product(buf - j, buf - j, SUBFRAME_LEN); in comp_harmonic_coeff() 550 energy[(i << 1) + 1] = ff_dot_product(buf, buf - j, SUBFRAME_LEN); in comp_harmonic_coeff() 554 energy[14] = ff_dot_product(buf, buf, SUBFRAME_LEN); in comp_harmonic_coeff() 733 temp = ff_dot_product(buf, flt_buf[j], SUBFRAME_LEN); in acb_search() 745 temp = ff_dot_product(flt_buf[j], flt_buf[k], SUBFRAME_LEN); in acb_search()
|
H A D | celp_math.h | 72 int64_t ff_dot_product(const int16_t *a, const int16_t *b, int length);
|
H A D | celp_math.c | 99 int64_t ff_dot_product(const int16_t *a, const int16_t *b, int length) in ff_dot_product() function
|
H A D | g723_1.c | 1128 int sum = ff_dot_product(a, b, length); in ff_g723_1_dot_product() 1180 sum = ff_dot_product(residual + i, cb_ptr, PITCH_ORDER); in ff_g723_1_gen_acb_excitation()
|
/third_party/ffmpeg/libavcodec/tests/ |
H A D | celp_math.c | 40 int64_t d = ff_dot_product(i1, i2, FF_ARRAY_ELEMS(i1)); in main()
|
Completed in 6 milliseconds