Commit 7ed84297 by 夏楚 Committed by GitHub

Merge pull request #1537 from alexliyu7352/alexliyu7352-patch-19

修复HlsPlayer播放器BUG
parents 007164ac a7476e43
...@@ -121,6 +121,11 @@ void PlayerProxy::setDirectProxy() { ...@@ -121,6 +121,11 @@ void PlayerProxy::setDirectProxy() {
PlayerProxy::~PlayerProxy() { PlayerProxy::~PlayerProxy() {
_timer.reset(); _timer.reset();
// 避免析构时, 忘记回调api请求
if(_on_play) {
_on_play(SockException(Err_shutdown, "player proxy close"));
_on_play = nullptr;
}
} }
void PlayerProxy::rePlay(const string &strUrl, int iFailedCnt) { void PlayerProxy::rePlay(const string &strUrl, int iFailedCnt) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论