1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-09 14:14:39 +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;
}
#if !ARCH_X86
unsigned long ff_getauxval(unsigned long type)
{
#if HAVE_GETAUXVAL
@ -314,3 +315,4 @@ unsigned long ff_getauxval(unsigned long type)
return 0;
#endif
}
#endif