1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avutil/cpu: Disable ff_getauxval() on x86

Not used there.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-01-12 20:01:22 +01:00
parent 4afe61ea6c
commit 10047fea1c

View File

@ -298,6 +298,7 @@ size_t av_cpu_max_align(void)
return 8; return 8;
} }
#if !ARCH_X86
unsigned long ff_getauxval(unsigned long type) unsigned long ff_getauxval(unsigned long type)
{ {
#if HAVE_GETAUXVAL #if HAVE_GETAUXVAL
@ -314,3 +315,4 @@ unsigned long ff_getauxval(unsigned long type)
return 0; return 0;
#endif #endif
} }
#endif