243e05ca5e
Follow-up to libva PR #7 (merged as 9898331). Without that commit, H.264/VP9/AV1 profiles never got advertised on Pi 5 mixed deploys (rpi-hevc-dec primary + daedalus_v4l2 alt) because the profile- enumeration probe in any_fd_supports_output_format only walked rkvdec / hantro / rpi-hevc-dec / vpu981 fds. ffmpeg vaapi -i h264_test.mp4 on higgs bailed with "No support for codec h264 profile 578" before the LIBVA-1 per-codec dispatch could even fire. 9898331 extends the fds[] from 5 to 6 with video_fd_daedalus as the 6th slot (HAVE_DAEDALUS_V4L2-gated, -1 fallback otherwise). Effect on higgs once this lands: vainfo lists VP9Profile0 + AV1Profile0 + H264* alongside HEVCMain, and ffmpeg -hwaccel vaapi -i h264_test.mp4 routes through the daedalus daemon (via 'd' kind in request_switch_device_for_profile). Both packages: pkgver 1.0.0.r380.9898331 (count from rev-list), pkgrel reset to 1 (new upstream pin). Backward-compatible on RK3399/3588 — the new fd slot is gated by HAVE_DAEDALUS_V4L2 *and* video_fd_daedalus >= 0, both false in those deployments. Companion to the prior LIBVA-{1,ABI} bumps that landed in marfrit- packages PRs #43, #44. Together they close the Pi 5 stack: boot -> modules-load.d loads daedalus_v4l2 -> daedalus-v4l2.service starts daemon -> libva opens both decoders -> ffmpeg -hwaccel vaapi enumerates all codecs from both -> routes per-codec. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
64 lines
3.3 KiB
Plaintext
64 lines
3.3 KiB
Plaintext
libva-v4l2-request-fourier (1.0.0+r380+g9898331-1) bookworm trixie; urgency=medium
|
|
|
|
* Bump to 9898331 — LIBVA-2 close. Adds video_fd_daedalus to
|
|
any_fd_supports_output_format's probe list in config.c so the
|
|
profile enumerator actually sees daedalus_v4l2's OUTPUT formats
|
|
(VP9F + AV1F + S264). Before this commit, ffmpeg vaapi against
|
|
H.264 on higgs bailed with "No support for codec h264 profile 578"
|
|
because RequestQueryConfigProfiles only walked rkvdec/hantro/
|
|
rpi-hevc-dec/vpu981 fds and never asked daedalus what it could do.
|
|
* Backward-compatible on RK3399/3588 — new slot gated by
|
|
HAVE_DAEDALUS_V4L2 *and* video_fd_daedalus >= 0; both false in
|
|
those deployments.
|
|
|
|
-- Markus Fritsche <mfritsche@reauktion.de> Wed, 20 May 2026 19:30:00 +0000
|
|
|
|
libva-v4l2-request-fourier (1.0.0+r378+gc332d34-2) bookworm trixie; urgency=medium
|
|
|
|
* Rebuild on a native Debian trixie runner (actrunner-debian-aarch64-bohr) so
|
|
the driver picks up trixie's libva-dev (2.22) and exports
|
|
__vaDriverInit_1_22 — the symbol trixie's libva runtime looks up.
|
|
Previous -1 build used the Arch CI runner (libva 2.23.0) and
|
|
exported __vaDriverInit_1_23, which trixie's loader cannot bind:
|
|
vaInitialize() returns -1 ("has no function __vaDriverInit_1_0")
|
|
and ffmpeg -hwaccel vaapi fails on startup.
|
|
* No source change; pure build-env fix. CI workflow's
|
|
libva-v4l2-request-fourier-debian job moved from runs-on:
|
|
arch-aarch64 to runs-on: actrunner-debian-aarch64-bohr; build-deps installed
|
|
via apt-get instead of pacman.
|
|
* Hard sanity check kept in build-deb.sh: build fails if the
|
|
resulting .so doesn't export __vaDriverInit_1_22 (preempts the
|
|
silent install-then-refuse-to-load failure mode).
|
|
|
|
-- Markus Fritsche <mfritsche@reauktion.de> Wed, 20 May 2026 18:00:00 +0000
|
|
|
|
libva-v4l2-request-fourier (1.0.0+r378+gc332d34-1) bookworm trixie; urgency=medium
|
|
|
|
* Bump to c332d34 — LIBVA-1 per-codec dispatch close. Pi 5 mixed
|
|
deployment (rpi-hevc-dec + daedalus_v4l2 both loaded) now correctly
|
|
opens BOTH decoders: VP9/AV1/H.264 route to daedalus via new 'd'
|
|
kind, HEVC stays on 'p' (rpi-hevc-dec). Before this commit
|
|
find_codec_device picked rpi-hevc-dec as the sole primary and the
|
|
daedalus_v4l2 slot stayed -1, so VP9/AV1/H.264 frames failed.
|
|
* Also closes a small fd leak in RequestTerminate (daedalus pair).
|
|
* Backward-compatible: new branches gated by HAVE_DAEDALUS_V4L2
|
|
*and* video_fd_daedalus >= 0 — RK3399/RK3588 boxes unaffected.
|
|
|
|
-- Markus Fritsche <mfritsche@reauktion.de> Wed, 20 May 2026 17:30:00 +0000
|
|
|
|
libva-v4l2-request-fourier (1.0.0+r376+gde27e95-1) bookworm trixie; urgency=medium
|
|
|
|
* Initial Debian packaging (sibling to existing
|
|
arch/libva-v4l2-request-fourier).
|
|
* Pinned to fork tip de27e95: "v4l2: log error_idx + failing ctrl id
|
|
on S_EXT_CTRLS failure" — Phase 8.13 diagnostic that surfaced the
|
|
real root cause of the libva→daedalus_v4l2 request-completion
|
|
timeout.
|
|
* Includes daedalus_v4l2 probe slot (b5b3acf) and meson option gate
|
|
(2146341) for the Pi 5 daemon-backed decoder shim.
|
|
* Backward-compatible on rkvdec / hantro / cedrus / rpi-hevc-dec
|
|
hosts — daedalus probe is off by default unless the kernel module
|
|
is present.
|
|
|
|
-- Markus Fritsche <mfritsche@reauktion.de> Mon, 18 May 2026 23:00:00 +0000
|