1ca18ac130
Picks up reauktion/daedalus-v4l2 PR #18 (closes #17): daemon drops degenerate (<4 byte) bitstreams at REQ_DECODE entry instead of letting avcodec_send_packet emit AVERROR_INVALIDDATA, replies RESP_FRAME NO_FRAME so libva's V4L2 surface pool stays alive. Fixes the Firefox YouTube avc1 pause→resume regression observed on higgs: libva-v4l2-request-fourier flushes a 3-byte stub into OUTPUT_MPLANE at the pause boundary; the old daemon path turned that into a decode failure, Firefox marked H.264-via-VAAPI as broken for the session, and routed every subsequent frame to libmozavcodec SW. After this bump the daemon logs 'tiny bitstream 3 bytes — dropping as no-op' and the next real REQ_DECODE proceeds normally. Wire protocol unchanged. daedalus-v4l2-dkms bump not needed.
119 lines
4.9 KiB
Bash
119 lines
4.9 KiB
Bash
# Maintainer: Markus Fritsche <fritsche.markus@gmail.com>
|
||
#
|
||
# daedalus-v4l2 — userspace daemon + V4L2 m2m test tools.
|
||
#
|
||
# Pair to daedalus-v4l2-dkms (kernel module). Together they expose
|
||
# /dev/videoNN + /dev/mediaNN as a V4L2 stateless decoder shim on Pi 5 /
|
||
# CM5, decoding VP9 / AV1 / H.264 via dlopen'd FFmpeg in a single-
|
||
# threaded daemon and shipping decoded NV12 / P010 back through dmabuf.
|
||
# Consumed end-to-end by libva-v4l2-request-fourier (>= 1.0.0.r376) so
|
||
# `ffmpeg -hwaccel vaapi` against vp9_small.ivf produces byte-exact NV12.
|
||
#
|
||
# Project: https://git.reauktion.de/reauktion/daedalus-v4l2
|
||
# Sibling kernel package: daedalus-v4l2-dkms
|
||
# Sibling consumer: libva-v4l2-request-fourier
|
||
|
||
pkgname=daedalus-v4l2
|
||
_upstreampkg=daedalus-v4l2
|
||
|
||
# 6e6dfa1 = picks up daedalus-v4l2 PR #16 — daemon now dlopens
|
||
# the Kwiboo fourier fork's libavcodec.so.62 / libavformat.so.62 /
|
||
# libavutil.so.60 at /opt/fourier instead of Debian-stock soname
|
||
# 61/61/59. First step on the daedalus-fourier substitution arc
|
||
# (daedalus-v4l2#11). Daemon still needs daedalus-fourier at
|
||
# build time (Arch packaging for that is a follow-up; Debian side
|
||
# fetches inline via build-deb.sh).
|
||
_commit=1d8f5af1646c7c09b75e07be0c2763b37ea367e6
|
||
|
||
# 0.1.0 (pre-1.0) + commit count + short sha. Bump the .Y on each
|
||
# Phase 8.x close. pkgver() recomputes at build time.
|
||
pkgver=0.1.0.r43.1d8f5af
|
||
pkgrel=1 # reset for new upstream pin (1d8f5af — pause-time tiny-bitstream filter, closes #17)
|
||
pkgdesc="Userspace daemon for the daedalus-v4l2 V4L2 stateless decoder shim (VP9/AV1/H.264 on Pi 5 / CM5)"
|
||
arch=('aarch64')
|
||
url="https://git.reauktion.de/reauktion/daedalus-v4l2"
|
||
license=('BSD-2-Clause' 'GPL-2.0-or-later')
|
||
# Daemon dlopens libavformat.so.61 / libavcodec.so.61 / libavutil.so.59
|
||
# at runtime (Option γ — see daemon/src/ffmpeg_loader.h). ffmpeg
|
||
# provides those; we don't link them.
|
||
depends=('ffmpeg-v4l2-request-fourier' 'libdrm')
|
||
# Headers from libav*-dev needed at compile time for type-safe function
|
||
# pointer signatures; pkg-config locates them.
|
||
makedepends=('cmake' 'ninja' 'pkgconf' 'git' 'ffmpeg')
|
||
optdepends=('daedalus-v4l2-dkms: kernel module providing /dev/video0 + /dev/daedalus-v4l2'
|
||
'libva-v4l2-request-fourier: VA-API consumer routing through this daemon')
|
||
install="${pkgname}.install"
|
||
|
||
source=("git+https://git.reauktion.de/reauktion/daedalus-v4l2.git#commit=${_commit}"
|
||
"${pkgname}.install")
|
||
sha256sums=('SKIP'
|
||
'SKIP')
|
||
|
||
pkgver() {
|
||
cd "${srcdir}/${_upstreampkg}"
|
||
printf '0.1.0.r%s.%s' \
|
||
"$(git rev-list --count HEAD)" \
|
||
"$(git rev-parse --short=7 HEAD)"
|
||
}
|
||
|
||
build() {
|
||
cd "${srcdir}/${_upstreampkg}/daemon"
|
||
cmake -B build -G Ninja \
|
||
-DCMAKE_BUILD_TYPE=Release \
|
||
-DCMAKE_INSTALL_PREFIX=/usr
|
||
cmake --build build
|
||
|
||
cd "${srcdir}/${_upstreampkg}/tools"
|
||
make
|
||
}
|
||
|
||
package() {
|
||
cd "${srcdir}/${_upstreampkg}"
|
||
|
||
# Daemon binary
|
||
install -Dm755 daemon/build/daedalus_v4l2_daemon \
|
||
"${pkgdir}/usr/bin/daedalus_v4l2_daemon"
|
||
|
||
# Test tools (under /usr/libexec to keep them out of the default PATH
|
||
# — they're for verification, not daily use).
|
||
install -Dm755 tools/test_chardev_pingpong \
|
||
"${pkgdir}/usr/libexec/daedalus-v4l2/test_chardev_pingpong"
|
||
install -Dm755 tools/test_m2m_decode \
|
||
"${pkgdir}/usr/libexec/daedalus-v4l2/test_m2m_decode"
|
||
install -Dm755 tools/test_m2m_stream \
|
||
"${pkgdir}/usr/libexec/daedalus-v4l2/test_m2m_stream"
|
||
|
||
# Shared wire-protocol header (kernel ↔ daemon); useful for
|
||
# third-party clients of the chardev.
|
||
install -Dm644 include/daedalus_v4l2_proto.h \
|
||
"${pkgdir}/usr/include/daedalus_v4l2_proto.h"
|
||
|
||
# systemd unit + module autoload — without these the daemon never
|
||
# starts and the libva/VAAPI consumer's REQ_DECODE has nobody on
|
||
# the other end of /dev/daedalus-v4l2.
|
||
install -Dm644 packaging/systemd/daedalus-v4l2.service \
|
||
"${pkgdir}/usr/lib/systemd/system/daedalus-v4l2.service"
|
||
install -Dm644 packaging/systemd/daedalus-v4l2.modules-load \
|
||
"${pkgdir}/usr/lib/modules-load.d/daedalus-v4l2.conf"
|
||
|
||
# Documentation
|
||
install -Dm644 README.md \
|
||
"${pkgdir}/usr/share/doc/${pkgname}/README.md"
|
||
for d in docs/*.md; do
|
||
install -Dm644 "$d" "${pkgdir}/usr/share/doc/${pkgname}/$(basename "$d")"
|
||
done
|
||
|
||
# Licenses: BSD-2-Clause for daemon/tools, GPL for the kernel proto
|
||
# header; the SPDX headers in src/ are the canonical declaration but
|
||
# ship a short note here for package-manager-driven license queries.
|
||
install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
|
||
cat > "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" <<'EOF'
|
||
daedalus-v4l2 userspace components are BSD-2-Clause licensed.
|
||
The shared kernel↔daemon wire protocol header
|
||
(/usr/include/daedalus_v4l2_proto.h) is GPL-2.0-or-later WITH
|
||
Linux-syscall-note for kernel-side compatibility. See SPDX
|
||
headers on individual source files for the canonical
|
||
per-file declaration.
|
||
EOF
|
||
}
|