Skip to content

Commit

Permalink
fix: Fix support of getAllThumbnails when using DASH multi-period (#6464
Browse files Browse the repository at this point in the history
)

Fixes #6461

---------

Co-authored-by: Wojciech Tyczyński <tykus160@gmail.com>
  • Loading branch information
2 people authored and joeyparrish committed May 7, 2024
1 parent 2dea811 commit e7540b2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/media/segment_index.js
Original file line number Diff line number Diff line change
Expand Up @@ -694,6 +694,16 @@ shaka.media.MetaSegmentIndex = class extends shaka.media.SegmentIndex {
this.indexes_ = [];
}

/**
* @override
* @export
*/
forEachTopLevelReference(fn) {
for (const index of this.indexes_) {
index.forEachTopLevelReference(fn);
}
}

/**
* @override
* @export
Expand Down

0 comments on commit e7540b2

Please sign in to comment.