ffmpeg/libavutil/aarch64
Jeongkeun Kim de18feb0f0 avutil/aarch64: add pixelutils 32x32 SAD NEON implementation
This adds a NEON-optimized function for computing 32x32 Sum of Absolute
Differences (SAD) on AArch64, addressing a gap where x86 had SSE2/AVX2
implementations but AArch64 lacked equivalent coverage.

The implementation mirrors the existing sad8 and sad16 NEON functions,
employing a 4-row unrolled loop with UABAL and UABAL2 instructions for
efficient load-compute interleaving, and four 8x16-bit accumulators to
handle the wider 32-byte rows.

Benchmarks on AWS Graviton3 (Neoverse V1, c7g.xlarge) using checkasm:
  sad_32x32_0: C 146.4 cycles -> NEON  98.1 cycles (1.49x speedup)
  sad_32x32_1: C 141.4 cycles -> NEON  98.9 cycles (1.43x speedup)
  sad_32x32_2: C 140.7 cycles -> NEON  95.0 cycles (1.48x speedup)

Signed-off-by: Jeongkeun Kim <variety0724@gmail.com>
2026-04-19 19:27:55 +00:00
..
asm.S aarch64: Add AARCH64_VALID_JUMP_CALL_TARGET 2026-03-31 19:57:46 +00:00
cpu.c avutil/cpu: add aarch64 CPU feature flag for PMULL and EOR3 2026-03-11 14:03:36 +00:00
cpu.h avutil/cpu: add aarch64 CPU feature flag for PMULL and EOR3 2026-03-11 14:03:36 +00:00
cpu_sme.S configure: add detection of assembler support for SME 2025-12-09 21:38:38 +00:00
cpu_sve.S aarch64: Print the SVE vector length in libavutil/tests/cpu.c 2024-09-27 00:06:30 +03:00
crc.h avutil/crc: add aarch64 NEON PMULL+EOR3 SIMD implementation for av_crc 2026-03-11 14:03:36 +00:00
crc.S avutil/crc: add aarch64 NEON PMULL+EOR3 SIMD implementation for av_crc 2026-03-11 14:03:36 +00:00
float_dsp_init.c
float_dsp_neon.S aarch64: Consistently use lowercase for vector element specifiers 2023-10-21 23:25:18 +03:00
intreadwrite.h avutil/aarch64: add AV_COPY128 and AV_ZERO128 macros 2024-08-26 10:26:59 +02:00
Makefile avutil/aarch64: Add neon optimizations for pixelutils 2026-03-09 10:17:26 +01:00
neontest.h
pixelutils.h avutil/aarch64: add pixelutils 32x32 SAD NEON implementation 2026-04-19 19:27:55 +00:00
pixelutils_neon.S avutil/aarch64: add pixelutils 32x32 SAD NEON implementation 2026-04-19 19:27:55 +00:00
timer.h aarch64: Use cntvct_el0 as timer register on Android and macOS 2024-06-17 14:00:34 +03:00
tx_float_init.c lavu/tx: refactor to explicitly track and convert lookup table order 2022-11-24 15:58:34 +01:00
tx_float_neon.S aarch64: Add PAC sign/validation of the link register 2026-03-20 13:16:06 +02:00