Commit 07a1a929 by Nick Committed by GitHub

修复HLS点播时下载切片过快的bug (#2635 #2628)

Co-authored-by: xia-chu <771730766@qq.com>
parent 3e9cc648
...@@ -71,6 +71,11 @@ void HlsPlayer::teardown() { ...@@ -71,6 +71,11 @@ void HlsPlayer::teardown() {
void HlsPlayer::fetchSegment() { void HlsPlayer::fetchSegment() {
if (_ts_list.empty()) { if (_ts_list.empty()) {
// 如果是点播文件,播放列表为空代表文件播放结束,关闭播放器: #2628
if(!HlsParser::isLive()){
teardown();
return;
}
//播放列表为空,那么立即重新下载m3u8文件 //播放列表为空,那么立即重新下载m3u8文件
_timer.reset(); _timer.reset();
fetchIndexFile(); fetchIndexFile();
...@@ -121,18 +126,21 @@ void HlsPlayer::fetchSegment() { ...@@ -121,18 +126,21 @@ void HlsPlayer::fetchSegment() {
WarnL << "Download ts segment " << url << " failed:" << err; WarnL << "Download ts segment " << url << " failed:" << err;
if (err.getErrCode() == Err_timeout) { if (err.getErrCode() == Err_timeout) {
strong_self->_timeout_multiple = MAX(strong_self->_timeout_multiple + 1, MAX_TIMEOUT_MULTIPLE); strong_self->_timeout_multiple = MAX(strong_self->_timeout_multiple + 1, MAX_TIMEOUT_MULTIPLE);
}else{ } else {
strong_self->_timeout_multiple = MAX(strong_self->_timeout_multiple -1 , MIN_TIMEOUT_MULTIPLE); strong_self->_timeout_multiple = MAX(strong_self->_timeout_multiple - 1, MIN_TIMEOUT_MULTIPLE);
} }
} }
//提前半秒下载好 // 提前0.5秒下载好,支持点播文件控制下载速度: #2628
auto delay = duration - ticker.elapsedTime() / 1000.0f - 0.5; auto delay = duration - 0.5 - ticker.elapsedTime() / 1000.0f;
if (delay <= 0) { if (delay > 2.0) {
//延时最小10ms // 提前1秒下载
delay = 10; delay -= 1.0;
} else if (delay <= 0) {
// 延时最小10ms
delay = 0.01;
} }
//延时下载下一个切片 // 延时下载下一个切片
strong_self->_timer_ts.reset(new Timer(delay / 1000.0f, [weak_self]() { strong_self->_timer_ts.reset(new Timer(delay, [weak_self]() {
auto strong_self = weak_self.lock(); auto strong_self = weak_self.lock();
if (strong_self) { if (strong_self) {
strong_self->fetchSegment(); strong_self->fetchSegment();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论