mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-23 03:10:04 +08:00
当url并不是m3u8文件时, 避免拉取hls流出错 (#1341)
This commit is contained in:
parent
2fbb40135c
commit
3a0857ea31
@ -169,6 +169,13 @@ ssize_t HlsPlayer::onResponseHeader(const string &status, const HttpClient::Http
|
||||
}
|
||||
auto content_type = const_cast< HttpClient::HttpHeader &>(headers)["Content-Type"];
|
||||
_is_m3u8 = (content_type.find("application/vnd.apple.mpegurl") == 0);
|
||||
if(!_is_m3u8) {
|
||||
auto it = headers.find("Content-Length");
|
||||
//如果没有长度或者长度小于等于0, 那么肯定不是m3u8
|
||||
if (it == headers.end() || atoll(it->second.data()) <=0) {
|
||||
teardown_l(SockException(Err_shutdown, "可能不是m3u8文件"));
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user