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.
This commit is contained in:
Rémi Denis-Courmont 2023-07-14 19:23:02 +03:00
parent 3c73200be2
commit 82cb4b1c05

View File

@ -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