daemon: filter tiny pause-time bitstreams (closes #17) #18
Reference in New Issue
Block a user
Delete Branch "noether/issue-17-tiny-bitstream-filter"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixes #17.
Symptom
Firefox YouTube on higgs (Pi CM5 / trixie) plays H.264 at ~46 fps through libva → daedalus. Pause for ≥ 1 s; resume. Daemon goes silent forever after resume; Firefox routes the rest of the session through libmozavcodec SW. Stats for nerds still reports
avc1.Root cause
Last daemon log before silence:
3 bytes is below the structural minimum for any valid H.264 NAL (3-byte start code + 1-byte NAL header = 4 bytes minimum). libva-v4l2-request-fourier flushes this stub into the OUTPUT_MPLANE queue at the pause boundary.
avcodec_send_packetcorrectly rejects it; the daemon'shandle_req_decodepropagated the negative rc to the kernel without RESP_FRAME; libva returned failure to Firefox; Firefox marked H.264-via-VAAPI as broken for the session.Fix
At the REQ_DECODE entry in
daemon/src/chardev_client.c::handle_req_decode, short-circuit any bitstream below the minimum-parseable H.264 NAL threshold. Log INFO, skipdaedalus_decoder_run_request, return RESP_FRAME withstatus=DAEDALUS_DECODE_NO_FRAMEso libva's V4L2 surface pool stays healthy and Firefox doesn't see a failure.Scope NOT covered (deferred)
libva-v4l2-request-fouriersends the 3-byte sentinel on pause. Likely an upstream issue in that driver; tracked separately if this filter is not enough.Wire protocol
Unchanged. No
DAEDALUS_PROTO_VERSIONbump. No daedalus-v4l2-dkms bump needed.Verify
After merging + bumping
marfrit/marfrit-packages/debian/daedalus-v4l2to this tip + deploying on higgs:sudo journalctl -u daedalus-v4l2 --since '10s' | grep -c 'decoder: OK'→ > 0 (HW path still active).tiny bitstream 3 bytes — dropping as no-opline per pause cycle.libva-v4l2-request-fourier flushes a stub packet into the V4L2 OUTPUT_MPLANE queue at playback-pause boundaries. The payload is shorter than any parseable H.264 NAL (3-byte start code + 1-byte NAL header = 4 bytes minimum); avcodec_send_packet returns AVERROR_INVALIDDATA (-1094995529), which propagated to the kernel as a decode failure. Firefox then marked H.264-via-VAAPI as broken for the session and routed every subsequent frame to libmozavcodec SW — pause never recovered to HW. At the REQ_DECODE entry in chardev_client.c::handle_req_decode, short-circuit any bitstream below the minimum-parseable threshold: log INFO, skip daedalus_decoder_run_request, and reply RESP_FRAME with status=DAEDALUS_DECODE_NO_FRAME so libva's V4L2 surface pool stays healthy and Firefox doesn't see a failure. Repro: Pi CM5 trixie, daedalus-v4l2 0.1.0+r41 + ffmpeg-v4l2- request-fourier 2:8.1+rfourier+gb57fbbe-9, Firefox YouTube avc1. Play → daemon decodes at ~46 fps. Pause ≥ 1s. Resume → daemon silent; sudo journalctl -u daedalus-v4l2 --since '10s' | grep -c 'decoder: OK' = 0. Last entry before silence: REQ_DECODE cookie=N codec=3 bitstream=3 bytes ... [h264 @ ...] no frame! [ERR] decoder: avcodec_send_packet failed: -1094995529 After this fix the 3-byte sentinel logs as 'tiny bitstream 3 bytes — dropping as no-op' and the libavcodec context is untouched; the next real REQ_DECODE proceeds normally. Scope NOT covered (intentionally deferred): - A more general "tolerate AVERROR_INVALIDDATA mid-stream" path. Worth doing later but masks unrelated bugs. - Investigating WHY libva sends the 3-byte sentinel on pause. Likely an upstream libva-v4l2-request-fourier issue; tracked separately if this filter is not enough. Wire protocol unchanged. No DAEDALUS_PROTO_VERSION bump.