e641d679d3
First cycle of the libavcodec.so substitution arc (reauktion/daedalus-v4l2#11 step 2). H264DSPContext.idct_add — called per 4×4 block from the intra-4×4 decode path in libavcodec/h264_mb.c — now dispatches through daedalus_recipe_dispatch_h264_idct4 instead of ff_h264_idct_add_neon. ## What - Add 0003-h264-idct4-daedalus-fourier.patch (in both arch/ and debian/ ffmpeg-v4l2-request-fourier/). Creates libavcodec/aarch64/h264_idct_daedalus.c (ff_h264_idct_add_daedalus shim + lazy pthread_once context init via daedalus_ctx_create_no_qpu), patches libavcodec/aarch64/h264dsp_init_aarch64.c to wire c->idct_add to the shim, adds the new .o to libavcodec/aarch64/Makefile. - arch/PKGBUILD + debian/build-deb.sh: fetch + build daedalus-fourier (pinned at d87239d — lockstep with the daedalus-v4l2 daemon's inline build) with -DCMAKE_POSITION_INDEPENDENT_CODE=ON into a per-build temp prefix, then pass --extra-cflags=-I.../include --extra-ldflags=-L.../lib --extra-libs="-ldaedalus_core -lvulkan -lpthread" to FFmpeg configure. daedalus_core.a is static-linked into libavcodec.so.62. - debian/control Depends gains libvulkan1 (daedalus_core PUBLIC-links Vulkan::Vulkan for the queryable QPU substrate; the no-QPU constructor still works at runtime but the loader needs libvulkan.so.1 present to dlopen libavcodec.so.62). - arch/PKGBUILD depends gains vulkan-icd-loader, makedepends gains cmake / ninja / vulkan-headers. ## Why The recipe layer picks the substrate; for cycle 6 (H.264 IDCT 4×4) the recipe is CPU NEON, so this is effectively a NEON-to-NEON substitution with one extra dispatch call and recipe-table lookup. The point of this first cycle isn't perf wins — it's plumbing. Once the path is wired and stable, follow-up patches batch through the bulk paths (idct_add16 / idct_add16intra / idct_add8) and stack cycles 7/8/9 (IDCT 8×8, luma-v deblock, qpel mc20). Bit-exact against ff_h264_idct_add_neon (daedalus-fourier cycle 6 green; FFmpeg's 4×4 block storage matches daedalus's column-major convention). ## Scope NOT covered - Bulk paths (idct_add16 / idct_add16intra / idct_add8) — most IDCT 4×4 calls in real H.264 streams go through these, not the per- block c->idct_add path; intra-4×4-only macroblocks are a minority. Batched substitution lands in a follow-up. - High-bit-depth (10-bit) path — not touched; 8-bit only. - Cycles 7/8/9 — separate PRs. ## SONAME Unchanged. libavcodec.so.62 / libavformat.so.62 / libavutil.so.60. No daedalus-v4l2-dkms or daedalus-v4l2 bump required. ## Refs - reauktion/daedalus-v4l2 issue #11 (substitution arc): reauktion/daedalus-v4l2#11 - marfrit/daedalus-fourier cycle 6 close (H.264 IDCT 4×4 NEON green)
191 lines
5.4 KiB
Bash
191 lines
5.4 KiB
Bash
# Maintainer: Markus Fritsche <mfritsche@reauktion.de>
|
|
#
|
|
# FFmpeg + V4L2-Request hwaccel (stateless video decode on Rockchip,
|
|
# Allwinner, etc) for the Fourier umbrella. Tracks Kwiboo's long-running
|
|
# rebase of Jernej Škrabec's v4l2-request patchset onto ffmpeg release
|
|
# tags. Pins the branch tip to a known commit for reproducible CI builds;
|
|
# bump _commit when upstream picks up a fix we want.
|
|
#
|
|
# Why this fork instead of AUR ffmpeg-v4l2-request-git:
|
|
# - AUR is pinned to 6.1.1 with epoch=2, which is OLDER than Arch's
|
|
# stock 2:8.1-3 → installing it downgrades system ffmpeg.
|
|
# - AUR pulls X11/AMF/CUDA/FireWire/AviSynth/OpenMPT/Bluray — irrelevant
|
|
# for a Wayland + ARM + video-decode fleet.
|
|
# - AUR uses #branch=..., no commit pin. CI artifacts are non-reproducible.
|
|
#
|
|
# Encoders (libx264/libx265/libvpx/libdav1d) kept per Fourier fleet policy.
|
|
# X11, AMF, CUDA, FireWire, AviSynth, OpenMPT, Bluray, OpenMAX, JPEG-XL,
|
|
# Theora, XVid, rsvg, soxr, ssh, vidstab, modplug, SDL2, Vulkan, JACK, GSM,
|
|
# Speex dropped — not needed on the Fourier fleet. (No SDL2 means no
|
|
# `ffplay` binary; mpv covers interactive playback.)
|
|
|
|
pkgname=ffmpeg-v4l2-request-fourier
|
|
_srcname=FFmpeg
|
|
_version='8.1'
|
|
_commit='b57fbbe50c9b2656fad86a1a7eeabfd2b2a50935' # v4l2-request-n8.1 tip 2026-04-24
|
|
pkgver=8.1.r123329.b57fbbe
|
|
pkgrel=6 # pkgrel=6 — H.264 IDCT 4x4 daedalus-fourier substitution (2026-05-21)
|
|
epoch=2
|
|
|
|
# daedalus-fourier pin — first kernel substitution in libavcodec
|
|
# (cycle 6 H.264 IDCT 4x4). Same SHA as the daedalus-v4l2 daemon's
|
|
# inline build; lockstep with that until the public API rolls.
|
|
_daedalus_fourier_commit='d87239d8172307d9a1b93c95cbed116d175b85cc'
|
|
pkgdesc='FFmpeg with V4L2 Request API hwaccel (Rockchip / Allwinner stateless decode)'
|
|
arch=('aarch64')
|
|
url='https://github.com/Kwiboo/FFmpeg'
|
|
license=('GPL-3.0-or-later')
|
|
depends=(
|
|
alsa-lib
|
|
bzip2
|
|
fontconfig
|
|
vulkan-icd-loader
|
|
fribidi
|
|
gmp
|
|
gnutls
|
|
lame
|
|
libass.so
|
|
libdav1d.so
|
|
libdrm
|
|
libfreetype.so
|
|
libgl
|
|
libpulse
|
|
libva.so
|
|
libva-drm.so
|
|
libvorbis.so
|
|
libvorbisenc.so
|
|
libvpx.so
|
|
libwebp
|
|
libx264.so
|
|
libx265.so
|
|
libxml2
|
|
opus
|
|
v4l-utils
|
|
xz
|
|
zlib
|
|
)
|
|
makedepends=(
|
|
cmake
|
|
git
|
|
linux-api-headers
|
|
mesa
|
|
nasm
|
|
ninja
|
|
vulkan-headers
|
|
)
|
|
provides=(
|
|
libavcodec.so
|
|
libavdevice.so
|
|
libavfilter.so
|
|
libavformat.so
|
|
libavutil.so
|
|
libpostproc.so
|
|
libswresample.so
|
|
libswscale.so
|
|
ffmpeg
|
|
)
|
|
conflicts=(ffmpeg)
|
|
replaces=(ffmpeg ffmpeg-v4l2-request-git)
|
|
source=("git+https://github.com/Kwiboo/FFmpeg.git#commit=${_commit}"
|
|
"daedalus-fourier-${_daedalus_fourier_commit}.tar.gz::https://git.reauktion.de/marfrit/daedalus-fourier/archive/${_daedalus_fourier_commit}.tar.gz"
|
|
'0001-libudev-bypass-fallback.patch'
|
|
'0002-nv15-to-p010-unpack.patch'
|
|
'0003-h264-idct4-daedalus-fourier.patch')
|
|
sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP')
|
|
|
|
pkgver() {
|
|
cd "${_srcname}"
|
|
printf '%s.r%s.%s' "${_version}" \
|
|
"$(git rev-list --count HEAD)" \
|
|
"$(git rev-parse --short=7 HEAD)"
|
|
}
|
|
|
|
prepare() {
|
|
cd "${_srcname}"
|
|
patch -Np1 -i "${srcdir}/0001-libudev-bypass-fallback.patch"
|
|
patch -Np1 -i "${srcdir}/0002-nv15-to-p010-unpack.patch"
|
|
patch -Np1 -i "${srcdir}/0003-h264-idct4-daedalus-fourier.patch"
|
|
}
|
|
|
|
build() {
|
|
# --- daedalus-fourier: build static .a with PIC, install to a
|
|
# per-build prefix; libavcodec.so links it into the shared object so
|
|
# H264DSPContext.idct_add (and follow-up kernels) dispatch through
|
|
# the daedalus recipe layer instead of the in-tree NEON .S code. ---
|
|
local _fourier_prefix="${srcdir}/fourier-prefix"
|
|
mkdir -p "${_fourier_prefix}"
|
|
pushd "${srcdir}"/daedalus-fourier >/dev/null
|
|
cmake -B build -G Ninja \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_POSITION_INDEPENDENT_CODE=ON \
|
|
-DCMAKE_INSTALL_PREFIX="${_fourier_prefix}"
|
|
cmake --build build --target daedalus_core
|
|
cmake --install build
|
|
popd >/dev/null
|
|
|
|
cd "${_srcname}"
|
|
|
|
# FFmpeg's configure resolves the compiler via `which` and bakes the
|
|
# absolute path into generated makefiles, bypassing the makepkg
|
|
# /usr/lib/distcc/bin shim. Pass it explicitly so `BUILDENV=(distcc ...)`
|
|
# actually distributes; otherwise everything compiles locally.
|
|
local _ffmpeg_cc=gcc _ffmpeg_cxx=g++
|
|
if [[ ":$PATH:" == *":/usr/lib/distcc/bin:"* ]]; then
|
|
_ffmpeg_cc='distcc gcc'
|
|
_ffmpeg_cxx='distcc g++'
|
|
fi
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--cc="${_ffmpeg_cc}" \
|
|
--cxx="${_ffmpeg_cxx}" \
|
|
--disable-debug \
|
|
--disable-static \
|
|
--disable-doc \
|
|
--disable-stripping \
|
|
--enable-shared \
|
|
--enable-gpl \
|
|
--enable-version3 \
|
|
--enable-pic \
|
|
--enable-neon \
|
|
--arch=aarch64 \
|
|
\
|
|
--enable-libdrm \
|
|
--enable-libv4l2 \
|
|
--enable-libudev \
|
|
--enable-v4l2-request \
|
|
--enable-v4l2_m2m \
|
|
--enable-vaapi \
|
|
--enable-opengl \
|
|
\
|
|
--enable-gnutls \
|
|
--enable-fontconfig \
|
|
--enable-libass \
|
|
--enable-libfreetype \
|
|
--enable-libfribidi \
|
|
--enable-libxml2 \
|
|
--enable-libpulse \
|
|
--enable-libdav1d \
|
|
--enable-libopus \
|
|
--enable-libvorbis \
|
|
--enable-libmp3lame \
|
|
--enable-libvpx \
|
|
--enable-libx264 \
|
|
--enable-libx265 \
|
|
--enable-libwebp \
|
|
\
|
|
--extra-cflags="-I${_fourier_prefix}/include" \
|
|
--extra-ldflags="-L${_fourier_prefix}/lib" \
|
|
--extra-libs="-ldaedalus_core -lvulkan -lpthread" \
|
|
--host-cflags='-fPIC'
|
|
|
|
make
|
|
make tools/qt-faststart
|
|
}
|
|
|
|
package() {
|
|
cd "${_srcname}"
|
|
make DESTDIR="${pkgdir}" install
|
|
install -Dm755 tools/qt-faststart "${pkgdir}/usr/bin/qt-faststart"
|
|
}
|