[FFmpeg-devel] [PATCH] libavutil/arm: Rename the HWCAP defines

2025-09-22 Thread Brad Smith via ffmpeg-devel
libavutil/arm: Rename the HWCAP defines Rename the HWCAP defines to use the same naming scheme as AArch64 and PPC. Signed-off-by: Brad Smith --- libavutil/arm/cpu.c | 28 ++-- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/libavutil/arm/cpu.c b/libavutil

[FFmpeg-devel] [PATCH] libavutil/arm: Make use of elf_aux_info() on FreeBSD/OpenBSD

2025-09-22 Thread Brad Smith via ffmpeg-devel
libavutil/arm: Make use of elf_aux_info() on FreeBSD/OpenBSD - FreBSD/OpenBSD have elf_aux_info() on arm - Wrap AT_HWCAP as the value is different for BSD vs Linux (16 vs 25) Signed-off-by: Brad Smith --- libavutil/arm/cpu.c | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-) di

[FFmpeg-devel] [PATCH v2] avformat/udp: fix warning about unused varible

2025-09-20 Thread Brad Smith via ffmpeg-devel
libavformat/udp.c:283:9: warning: unused variable 'i' [-Wunused-variable] Signed-off-by: Brad Smith --- libavformat/udp.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libavformat/udp.c b/libavformat/udp.c index e1dec49010..839c301369 100644 --- a/libavformat/udp.c ++

[FFmpeg-devel] [PATCH] avformat/udp: fix warning about unused varible

2025-09-19 Thread Brad Smith via ffmpeg-devel
libavformat/udp.c:283:9: warning: unused variable 'i' [-Wunused-variable] Signed-off-by: Brad Smith --- libavformat/udp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/udp.c b/libavformat/udp.c index e1dec49010..27b0147252 100644 --- a/libavformat/udp.c +++ b/