mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-23 03:10:04 +08:00
Merge branch 'master' of github.com:ZLMediaKit/ZLMediaKit
This commit is contained in:
commit
e43c838c2a
@ -169,6 +169,13 @@ ssize_t HlsPlayer::onResponseHeader(const string &status, const HttpClient::Http
|
|||||||
}
|
}
|
||||||
auto content_type = const_cast< HttpClient::HttpHeader &>(headers)["Content-Type"];
|
auto content_type = const_cast< HttpClient::HttpHeader &>(headers)["Content-Type"];
|
||||||
_is_m3u8 = (content_type.find("application/vnd.apple.mpegurl") == 0);
|
_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;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user