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.c741 FFTComplex *fft_in_l = NULL; in load_data() local
892 fft_in_l = av_calloc(n_fft, sizeof(*fft_in_l)); in load_data()
894 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 av_fft_permute(s->fft[0], fft_in_l); in load_data()
931 av_fft_calc(s->fft[0], fft_in_l); in load_data()
932 memcpy(data_hrtf_l + offset, fft_in_l, n_fft * sizeof(*fft_in_l)); in load_data()
960 av_freep(&fft_in_l); /* free temporary FFT memory */ in load_data()
Daf_headphone.c448 FFTComplex *fft_in_l = s->data_hrtf[0] + idx * n_fft; in convert_coeffs() local
452 fft_in_l[j].re = ptr[j * 2 ] * gain_lin; in convert_coeffs()
456 av_fft_permute(s->fft[0], fft_in_l); in convert_coeffs()
457 av_fft_calc(s->fft[0], fft_in_l); in convert_coeffs()
480 FFTComplex *fft_in_l = s->data_hrtf[0] + idx * n_fft; in convert_coeffs() local
484 fft_in_l[j].re = ptr[j * N + I ] * gain_lin; in convert_coeffs()
488 av_fft_permute(s->fft[0], fft_in_l); in convert_coeffs()
489 av_fft_calc(s->fft[0], fft_in_l); in convert_coeffs()