You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(mediaplayer): stop the seek bar bouncing to the pre-seek position on short seeks
The scrubber holds the handle at the seek target while the (asynchronous)
networking seek applies, releasing once the reported position "lands". The landed
test was "within 4s of the target", which can't distinguish a not-yet-applied seek
from a landed one when the jump is shorter than 4s — so on short seeks it released
early and the bar tracked the still-advancing pre-seek playhead for a moment before
snapping to the target. Capture the pre-seek position and release only once the
reported position is nearer the target than that origin, which disambiguates at any
seek distance.
0 commit comments