mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-08 22:39:44 +02:00
libavutil: Fix building libavutil/tests/cpu for aarch64 without SVE
This adds a condition that was missed in b1ee2af8432e2720009df92f4ee49d98b05dc2ce, fixing compilation on toolchains that don't support SVE. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
c65a294f79
commit
fd1ea75c93
@ -165,7 +165,7 @@ int main(int argc, char **argv)
|
||||
print_cpu_flags(cpu_flags_raw, "raw");
|
||||
print_cpu_flags(cpu_flags_eff, "effective");
|
||||
printf("threads = %s (cpu_count = %d)\n", threads, cpu_count);
|
||||
#if ARCH_AARCH64
|
||||
#if ARCH_AARCH64 && HAVE_SVE
|
||||
if (cpu_flags_raw & AV_CPU_FLAG_SVE)
|
||||
printf("sve_vector_length = %d\n", 8 * ff_aarch64_sve_length());
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user