[FFmpeg-cvslog] aarch64/tx_float: fix compilation
Lynne
git at videolan.org
Tue Sep 6 06:43:25 EEST 2022
ffmpeg | branch: master | Lynne <dev at lynne.ee> | Tue Sep 6 05:41:46 2022 +0200| [a89025f74d06f345ea3dc835c34c5059fe7257e5] | committer: Lynne
aarch64/tx_float: fix compilation
Forgot to add the new function arguments.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a89025f74d06f345ea3dc835c34c5059fe7257e5
---
libavutil/aarch64/tx_float_init.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavutil/aarch64/tx_float_init.c b/libavutil/aarch64/tx_float_init.c
index 2e8d61f688..e7b73b4bf9 100644
--- a/libavutil/aarch64/tx_float_init.c
+++ b/libavutil/aarch64/tx_float_init.c
@@ -42,7 +42,7 @@ static av_cold int neon_init(AVTXContext *s, const FFTXCodelet *cd,
if (cd->max_len == 2)
return ff_tx_gen_ptwo_revtab(s, inv_lookup);
else
- return ff_tx_gen_split_radix_parity_revtab(s, inv_lookup, 8, 0);
+ return ff_tx_gen_split_radix_parity_revtab(s, len, inv, inv_lookup, 8, 0);
}
const FFTXCodelet * const ff_tx_codelet_list_float_aarch64[] = {
More information about the ffmpeg-cvslog
mailing list