Commit e4d693eb by kimvde Committed by kim-vde

Add comment explaining DefaultHlsExtractorFactory fallback behaviour

Issue:#8219
PiperOrigin-RevId: 342843964
parent 8381b9ff
......@@ -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;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment