Home
last modified time | relevance | path

Searched refs:pitch_delay_int (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dg729dec.c421 int pitch_delay_int[2]; // pitch delay, integer part in decode_frame() local
529 pitch_delay_int[i] = (pitch_delay_3x + 1) / 3; in decode_frame()
530 if (pitch_delay_int[i] > PITCH_DELAY_MAX) { in decode_frame()
531 … av_log(avctx, AV_LOG_WARNING, "pitch_delay_int %d is too large\n", pitch_delay_int[i]); in decode_frame()
532 pitch_delay_int[i] = PITCH_DELAY_MAX; in decode_frame()
566 if (SUBFRAME_SIZE > pitch_delay_int[i]) in decode_frame()
567 ff_acelp_weighted_vector_sum(fc + pitch_delay_int[i], in decode_frame()
568 fc + pitch_delay_int[i], in decode_frame()
572 SUBFRAME_SIZE - pitch_delay_int[i]); in decode_frame()
698 pitch_delay_int[0], in decode_frame()
[all …]
Dsipr16k.c210 int pitch_delay_int; in ff_sipr_decode_frame_16k() local
225 pitch_delay_int = DIVIDE_BY_3(pitch_delay_3x + 2); in ff_sipr_decode_frame_16k()
226 pitch_delay_frac = pitch_delay_3x + 2 - 3*pitch_delay_int; in ff_sipr_decode_frame_16k()
229 &excitation[i_subfr] - pitch_delay_int + 1, in ff_sipr_decode_frame_16k()
Dg729postfilter.c110 static int16_t long_term_filter(AudioDSPContext *adsp, int pitch_delay_int, in long_term_filter() argument
192 best_delay_int = pitch_delay_int - 1; in long_term_filter()
193 for (i = pitch_delay_int - 1; i <= pitch_delay_int + 1; i++) { in long_term_filter()
518 const int16_t *lp_filter_coeffs, int pitch_delay_int, in ff_g729_postfilter() argument
547 i = long_term_filter(adsp, pitch_delay_int, in ff_g729_postfilter()
Dg729postfilter.h98 const int16_t *lp_filter_coeffs, int pitch_delay_int,