mirror of
https://github.com/samsonjs/media.git
synced 2026-03-27 09:45:47 +00:00
Add comment explaining DefaultHlsExtractorFactory fallback behaviour
Issue:#8219 PiperOrigin-RevId: 342843964
This commit is contained in:
parent
8381b9ff43
commit
e4d693ebb9
1 changed files with 2 additions and 0 deletions
|
|
@ -125,6 +125,8 @@ public final class DefaultHlsExtractorFactory implements HlsExtractorFactory {
|
|||
return new BundledHlsMediaChunkExtractor(extractor, format, timestampAdjuster);
|
||||
}
|
||||
if (fileType == FileTypes.TS) {
|
||||
// Fall back on TsExtractor to handle TS streams with an EXT-X-MAP tag. See
|
||||
// https://github.com/google/ExoPlayer/issues/8219.
|
||||
fallBackExtractor = extractor;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue