diff options
author | Rémi Denis-Courmont <remi@remlab.net> | 2023-07-14 19:23:02 +0300 |
---|---|---|
committer | Rémi Denis-Courmont <remi@remlab.net> | 2023-07-15 22:56:30 +0300 |
commit | 82cb4b1c05519523150f589fd020f5df0b66461b (patch) | |
tree | 6d8ccf9558cf12708c749b0cbc7a5fdf06b134d8 | |
parent | 3c73200be2aef966a36d8c54359fef68e22c58b6 (diff) | |
download | ffmpeg-82cb4b1c05519523150f589fd020f5df0b66461b.tar.gz |
lavc/aarch64: remove bogus HAVE_VFP guard
The IMDCT offset is only relevant for NEON optimisations. There are no
VFP optimisations here that would justify the HAVE_VFP flag. In
practice, this makes no difference because HAVE_NEON is practically
always true for standard Armv8 platforms.
-rw-r--r-- | libavcodec/aarch64/synth_filter_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aarch64/synth_filter_init.c b/libavcodec/aarch64/synth_filter_init.c index 801b46e217..6b6da35b54 100644 --- a/libavcodec/aarch64/synth_filter_init.c +++ b/libavcodec/aarch64/synth_filter_init.c @@ -28,7 +28,7 @@ #include "asm-offsets.h" -#if HAVE_NEON || HAVE_VFP +#if HAVE_NEON AV_CHECK_OFFSET(FFTContext, imdct_half, IMDCT_HALF); #endif |