No description
  • C 89.4%
  • Assembly 8.3%
  • Makefile 1.3%
  • C++ 0.3%
  • GLSL 0.2%
  • Other 0.3%
Find a file
Jeongkeun Kim de18feb0f0
Some checks are pending
Lint / Pre-Commit (push) Waiting to run
Test / Fate (linux-amd64, static, 32 bit) (push) Waiting to run
Test / Fate (linux-aarch64, static, 64 bit) (push) Waiting to run
Test / Fate (linux-amd64, shared, 64 bit) (push) Waiting to run
Test / Fate (Full, wine) (push) Waiting to run
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
.forgejo .forgejo/CODEOWNERS: add myself for hls.* 2026-04-11 01:58:35 +02:00
compat
doc doc/APIchanges: fix date and version in latest entry 2026-04-19 15:37:33 +00:00
ffbuild
fftools ffprobe: Support printing SMPTE 2094 APP5 side data 2026-04-14 20:41:14 +00:00
libavcodec avcodec/x86/vp3dsp: Port ff_vp3_idct_dc_add_mmxext to SSE2 2026-04-19 08:21:17 +02:00
libavdevice libavdevice/alsa.c: fix NULL pointer dereference 2026-04-19 15:00:08 +00:00
libavfilter avfilter/vf_ssim360: fix integer overflow in tape_length allocation 2026-04-13 19:49:32 +08:00
libavformat avformat/matroskaenc: Remove pointless side-data size checks 2026-04-17 23:53:12 +02:00
libavutil avutil/aarch64: add pixelutils 32x32 SAD NEON implementation 2026-04-19 19:27:55 +00:00
libswresample swresample/x86/{audio_convert,rematrix}: Remove remnants of MMX 2026-04-13 01:16:46 +02:00
libswscale swscale/x86/ops: simplify SWS_OP_CLEAR patterns 2026-04-16 23:25:17 +02:00
presets
tests libavdevice/alsa.c: fix NULL pointer dereference 2026-04-19 15:00:08 +00:00
tools
.gitattributes
.gitignore
.mailmap
Changelog aacdec: add support for 960-frame HE-AAC (DAB+) decoding 2026-04-17 16:46:52 +02:00
configure configure: collapse else + if into elif 2026-04-13 12:46:49 +00:00
CONTRIBUTING.md
COPYING.GPLv2
COPYING.GPLv3
COPYING.LGPLv2.1
COPYING.LGPLv3
CREDITS
FUNDING.json
INSTALL.md
LICENSE.md
MAINTAINERS MAINTAINERS: add myself as HLS demuxer maintainer 2026-04-11 01:58:35 +02:00
Makefile
README.md
RELEASE

FFmpeg README

FFmpeg is a collection of libraries and tools to process multimedia content such as audio, video, subtitles and related metadata.

Libraries

  • libavcodec provides implementation of a wider range of codecs.
  • libavformat implements streaming protocols, container formats and basic I/O access.
  • libavutil includes hashers, decompressors and miscellaneous utility functions.
  • libavfilter provides means to alter decoded audio and video through a directed graph of connected filters.
  • libavdevice provides an abstraction to access capture and playback devices.
  • libswresample implements audio mixing and resampling routines.
  • libswscale implements color conversion and scaling routines.

Tools

  • ffmpeg is a command line toolbox to manipulate, convert and stream multimedia content.
  • ffplay is a minimalistic multimedia player.
  • ffprobe is a simple analysis tool to inspect multimedia content.
  • Additional small tools such as aviocat, ismindex and qt-faststart.

Documentation

The offline documentation is available in the doc/ directory.

The online documentation is available in the main website and in the wiki.

Examples

Coding examples are available in the doc/examples directory.

License

FFmpeg codebase is mainly LGPL-licensed with optional components licensed under GPL. Please refer to the LICENSE file for detailed information.

Contributing

Patches should be submitted to the ffmpeg-devel mailing list using git format-patch or git send-email. Github pull requests should be avoided because they are not part of our review process and will be ignored.