diff options
author | Brad Smith <brad@comstyle.com> | 2024-09-09 06:20:11 -0400 |
---|---|---|
committer | Brad Smith <brad@comstyle.com> | 2024-09-09 06:20:11 -0400 |
commit | fe4b9ef69f10df2424e22cc8a1a63848c0857460 (patch) | |
tree | 3e65522ea39564d6c50cfc70fc1e15c5d4db43ef /libavutil/mips | |
parent | 5e9845f11eddb8124910ece2d04c10799d8e6bd2 (diff) | |
download | ffmpeg-fe4b9ef69f10df2424e22cc8a1a63848c0857460.tar.gz |
avutil/cpu_internal: Provide ff_getauxval() wrapper for getauxvaul()
Initially used for getauxval() but will be used to add support for
other API, such as elf_aux_info().
Signed-off-by: Brad Smith <brad@comstyle.com>
Diffstat (limited to 'libavutil/mips')
-rw-r--r-- | libavutil/mips/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/mips/cpu.c b/libavutil/mips/cpu.c index 59619d54de..2009c70f71 100644 --- a/libavutil/mips/cpu.c +++ b/libavutil/mips/cpu.c @@ -34,7 +34,7 @@ static int cpucfg_available(void) { - return getauxval(AT_HWCAP) & HWCAP_LOONGSON_CPUCFG; + return ff_getauxval(AT_HWCAP) & HWCAP_LOONGSON_CPUCFG; } /* Most toolchains have no CPUCFG support yet */ |