bcm2835-codec H.264 decode: last ~100 frames never dequeued at end of stream (Chromium V4L2, Pi 3B+, kernel 6.12)

Open
#7,618 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
4/5
Estimated time
3-5 days
Newbie friendliness
48/100
Issue type
Bug
Clarity
Mostly clear
Activity status
Active
Tech stack
c, linux

Research direction

Reproduce the stall with the provided ffmpeg sample in Chromium on a Pi 3B+ with hardware decoding enabled, then inspect the bcm2835-codec V4L2 end-of-stream and buffer-dequeue handling around /dev/video10. Compare the behavior with the early V4L2_BUF_FLAG_LAST case described in #5059. Done means playback reaches the final frame and the video element emits ended without disabling hardware decoding.

Written by the indexing model from the issue text.

Description

What happens

A <video> element playing H.264 in Chromium stops advancing roughly 3.3 s before
the end of the file and never reaches the end. The element stays in a healthy
state: readyState 2, paused false, error null, the whole file buffered.
Because the ended event never fires, loop never restarts and any code waiting
on ended waits forever. The rest of the page keeps rendering normally.

Playback runs to the end and loops correctly when Chromium is started with
--disable-accelerated-video-decode.

Environment
  • Raspberry Pi 3 Model B Plus Rev 1.3
  • Raspberry Pi OS (Trixie), arm64, kernel 6.12
  • Chromium 152, kiosk under cage (Wayland), 1280x720
  • gpu_mem=128
  • Hardware decode confirmed in use: the GPU process holds /dev/video10 open
    (bcm2835-codec-decode), verified with
    ls -l /proc/$(pgrep -f -- --type=gpu-process)/fd | grep video
Where it stalls

Element state sampled every 2 s over the DevTools protocol.

source stalls at duration
original, H.264 High, B-frames, moov at end 16.76 s 20 s
same stream, moov moved to front 16.81 s 20 s
re-encoded without B-frames 16.77 s 20 s
keyframe every 2 s (last at 18.0 s) 16.75 s 20 s
40 s version of the same content 36.67 s 40 s
original, service worker bypassed 16.75 s 20 s
original, --disable-accelerated-video-decode plays to end, loops 20 s

Both stall points sit about 3.3 s before the end, and both sources are 30 fps.
That is roughly 100 frames in each case, which suggests a fixed queue rather than
a fixed amount of time: the last ~100 frames appear to stay in the decoder and are
never dequeued.

What has been ruled out
  • The file: ffmpeg decodes it without error or warning.
  • Container layout: moving moov to the front changes nothing.
  • Stream structure: no B-frames, and a keyframe every 2 s, change nothing.
  • Delivery: bypassing the service worker changes nothing.
  • Duration: the same behaviour at 20 s and 40 s, at the same offset from the end.
Possibly related

This looks like the same class of problem as #5059 (frames left un-dequeued after
CMD_STOP because V4L2_BUF_FLAG_LAST arrives early), but the trigger differs:
#5059 is about mid-stream caps renegotiation on a Pi 4 through GStreamer, while
this is at end of stream through Chromium's V4L2 decoder on a Pi 3. It is not
established that it is the same bug.

Why it matters here

This is a digital signage fleet. A video that never reaches its end never loops,
and a playlist that waits for ended stops advancing. The two workarounds
available to us both cost something: software decoding drops 34% of frames at
720p30 at 84% CPU and 73 °C with soft thermal limiting active, and working around
it in the player means dropping the last three seconds of every video.

Reproducing

Any H.264 file reproduces it. A self-contained sample:

ffmpeg -f lavfi -i testsrc2=size=1280x720:rate=30:duration=20 \
       -c:v libx264 -profile:v high -pix_fmt yuv420p -crf 23 -an sample.mp4

Load it in a <video loop> element in Chromium on a Pi 3B+ with hardware decode
active and watch currentTime and readyState. It stops advancing around
16.7 s and stays there.

Dominant language
C
Stars
13.2k
Forks
5.5k
Avg merge
2d 21h
Merged PRs (30d)
21

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from raspberrypi/linux

All issues in raspberrypi/linux

Similar issues

More C issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.