Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(Prefetch): Use the same references time for evict and prefetchSegmentsByTime #7003

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/media/streaming_engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -1400,7 +1400,7 @@ shaka.media.StreamingEngine = class {

if (mediaState.segmentPrefetch && mediaState.segmentIterator &&
!this.audioPrefetchMap_.has(mediaState.stream)) {
mediaState.segmentPrefetch.evict(presentationTime);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

At first, I thought this would be needed for an instant switching but since this specifically checks that the stream isn't in the audioPrefetchMap, and we have an evict(prefentationTime) elsewhere, 👍🏻

mediaState.segmentPrefetch.evict(reference.startTime);
mediaState.segmentPrefetch.prefetchSegmentsByTime(reference.startTime);
}

Expand Down
Loading