summaryrefslogtreecommitdiff
path: root/libavfilter/x86
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2021-07-27 21:16:28 +0200
committerPaul B Mahol <onemda@gmail.com>2021-07-27 21:16:28 +0200
commit0068b3d0f0bc06b2b083eb729bf84f1a3196a2a9 (patch)
tree0da526a3d07486f53f77c1e2e049c0360becbe7a /libavfilter/x86
parent925d41ebd47bb21a55de4cc1668277076349ce0e (diff)
avfilter/avf_showcqt: switch to TX FFT from avutil
Diffstat (limited to 'libavfilter/x86')
-rw-r--r--libavfilter/x86/avf_showcqt_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/x86/avf_showcqt_init.c b/libavfilter/x86/avf_showcqt_init.c
index 0cc164c352..2320b30239 100644
--- a/libavfilter/x86/avf_showcqt_init.c
+++ b/libavfilter/x86/avf_showcqt_init.c
@@ -24,7 +24,7 @@
#include "libavfilter/avf_showcqt.h"
#define DECLARE_CQT_CALC(type) \
-void ff_showcqt_cqt_calc_##type(FFTComplex *dst, const FFTComplex *src, \
+void ff_showcqt_cqt_calc_##type(AVComplexFloat *dst, const AVComplexFloat *src, \
const Coeffs *coeffs, int len, int fft_len)
DECLARE_CQT_CALC(sse);