RDKEMW-20975 [Rack][RDKE][8.6][Llama G1/Cello]: Screen got stuck during VOD content playback#1688
Open
rekhap2kandhavelan wants to merge 3 commits into
Open
RDKEMW-20975 [Rack][RDKE][8.6][Llama G1/Cello]: Screen got stuck during VOD content playback#1688rekhap2kandhavelan wants to merge 3 commits into
rekhap2kandhavelan wants to merge 3 commits into
Conversation
…side the existing guarded block in SetActive (next to ResetFirstFrame())
rekhap2kandhavelan
force-pushed
the
feature/RDKEMW-19484_New
branch
from
July 5, 2026 10:00
4c15f48 to
f057141
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Root cause:
"Watch from beginning" = seek(0, keepPause) → the main player is detached and, because position 0 has a DAI pre‑roll ad, a second player (PLAYER[2]) starts on the shared single pipeline.
The auto‑resume ("buffering‑before‑play") is armed only in InterfacePlayerRDK::Configure() via buffering_in_progress=true + buffering_target_state=GST_STATE_PLAYING.
A reused pipeline skips Configure() (not creating GstPlayer for PLAYER[2]); reactivation instead runs AampStreamSinkManager::SetActive → InterfacePlayerRDK::Flush(), which flush‑seeks to PAUSED and removes the buffering timer, but never re‑arms the resume.
Result: pipeline stuck PAUSED, cache full (4/4) but never injected → frozen ~15 min.
The fix (root cause, minimal, no regression)
Re‑arm buffering‑before‑play only on single‑pipeline reactivation, inside the existing guarded block in SetActive (next to ResetFirstFrame()):