diff options
author | Paul B Mahol <onemda@gmail.com> | 2022-11-19 00:04:06 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2022-11-19 00:25:47 +0100 |
commit | 3bcec58535d395945a390bdc7af4048a7abc60eb (patch) | |
tree | 546bd261df502f7cc20de858a2e624974f9adaee /libavfilter/af_atempo.c | |
parent | fced45fd9528e93fd71e792f3ddd9eb4667c2d31 (diff) | |
download | ffmpeg-3bcec58535d395945a390bdc7af4048a7abc60eb.tar.gz |
avfilter: fix av_tx_fn stride usage for complex inputs
Diffstat (limited to 'libavfilter/af_atempo.c')
-rw-r--r-- | libavfilter/af_atempo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_atempo.c b/libavfilter/af_atempo.c index adbc69b50c..27f13638b0 100644 --- a/libavfilter/af_atempo.c +++ b/libavfilter/af_atempo.c @@ -619,7 +619,7 @@ static void yae_xcorr_via_rdft(float *xcorr_in, } // apply inverse rDFT: - c2r_fn(complex_to_real, xcorr, xcorr_in, sizeof(float)); + c2r_fn(complex_to_real, xcorr, xcorr_in, sizeof(*xc)); } /** |