Re: [FFmpeg-devel] [PATCH 1/2] aarch64: Simplify the linux runtime cpu detection code

2023-10-31 Thread Martin Storsjö
On Tue, 24 Oct 2023, Sean McGovern wrote: On Tue, Oct 24, 2023, 08:23 Martin Storsjö wrote: Skip doing the whole getauxval(AT_HWCAP) if HWCAP_CPUID isn't defined. --- libavutil/aarch64/cpu.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libavutil/aarch64/cpu.c

Re: [FFmpeg-devel] [PATCH 1/2] aarch64: Simplify the linux runtime cpu detection code

2023-10-26 Thread Sean McGovern
On Thu, Oct 26, 2023 at 5:40 PM Sean McGovern wrote: > > On Tue, Oct 24, 2023 at 8:40 AM Sean McGovern wrote: > > > > > > > > On Tue, Oct 24, 2023, 08:23 Martin Storsjö wrote: > >> > >> Skip doing the whole getauxval(AT_HWCAP) if HWCAP_CPUID isn't > >> defined. > >> --- > >>

Re: [FFmpeg-devel] [PATCH 1/2] aarch64: Simplify the linux runtime cpu detection code

2023-10-26 Thread Sean McGovern
On Tue, Oct 24, 2023 at 8:40 AM Sean McGovern wrote: > > > > On Tue, Oct 24, 2023, 08:23 Martin Storsjö wrote: >> >> Skip doing the whole getauxval(AT_HWCAP) if HWCAP_CPUID isn't >> defined. >> --- >> libavutil/aarch64/cpu.c | 6 +- >> 1 file changed, 1 insertion(+), 5 deletions(-) >> >>

Re: [FFmpeg-devel] [PATCH 1/2] aarch64: Simplify the linux runtime cpu detection code

2023-10-24 Thread Sean McGovern
On Tue, Oct 24, 2023, 08:23 Martin Storsjö wrote: > Skip doing the whole getauxval(AT_HWCAP) if HWCAP_CPUID isn't > defined. > --- > libavutil/aarch64/cpu.c | 6 +- > 1 file changed, 1 insertion(+), 5 deletions(-) > > diff --git a/libavutil/aarch64/cpu.c b/libavutil/aarch64/cpu.c > index

[FFmpeg-devel] [PATCH 1/2] aarch64: Simplify the linux runtime cpu detection code

2023-10-24 Thread Martin Storsjö
Skip doing the whole getauxval(AT_HWCAP) if HWCAP_CPUID isn't defined. --- libavutil/aarch64/cpu.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libavutil/aarch64/cpu.c b/libavutil/aarch64/cpu.c index bd780e8591..2b50c426bc 100644 --- a/libavutil/aarch64/cpu.c +++