Home
last modified time | relevance | path

Searched refs:fft_in_l (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavfilter/
Daf_sofalizer.c731 AVComplexFloat *fft_in_l = NULL; in load_data() local
891 fft_in_l = av_calloc(n_fft, sizeof(*fft_in_l)); in load_data()
893 if (!fft_in_l || !fft_in_r || in load_data()
916 memset(fft_in_l, 0, n_fft * sizeof(*fft_in_l)); in load_data()
925 fft_in_l[s->delay[0][i] + j].re = lir[j] * gain_lin; in load_data()
930 s->tx_fn[0](s->fft[0], fft_out_l, fft_in_l, sizeof(float)); in load_data()
961 av_freep(&fft_in_l); /* free temporary FFT memory */ in load_data()
Daf_headphone.c475 AVComplexFloat *fft_in_l = s->in_fft[0]; in convert_coeffs() local
479 fft_in_l[j].re = ptr[j * 2 ] * gain_lin; in convert_coeffs()
483 s->tx_fn[0](s->fft[0], fft_out_l, fft_in_l, sizeof(float)); in convert_coeffs()
508 AVComplexFloat *fft_in_l = s->in_fft[0]; in convert_coeffs() local
512 fft_in_l[j].re = ptr[j * N + I ] * gain_lin; in convert_coeffs()
516 s->tx_fn[0](s->fft[0], fft_out_l, fft_in_l, sizeof(float)); in convert_coeffs()