Commit 9488d2fc authored by Francois Cartegnie's avatar Francois Cartegnie

demux: hls: extend probing to 8K

Will never end, because the only tags permitting
differentiation from raw M3U only comes last in the playlist.
parent 6399ddb2
......@@ -54,7 +54,7 @@ bool HLSManager::isHTTPLiveStreaming(stream_t *s)
if (size < 7 || memcmp(peek, "#EXTM3U", 7))
return false;
size = stream_Peek(s, &peek, 512);
size = stream_Peek(s, &peek, 8192);
if (size < 7)
return false;
......
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 to comment