Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
4fa04d6a
Commit
4fa04d6a
authored
May 13, 2023
by
xia-chu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化PlayerProxy代码
parent
0afe7522
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
9 行增加
和
10 行删除
+9
-10
src/Player/PlayerProxy.cpp
+7
-8
src/Player/PlayerProxy.h
+2
-2
没有找到文件。
src/Player/PlayerProxy.cpp
查看文件 @
4fa04d6a
...
...
@@ -34,6 +34,7 @@ PlayerProxy::PlayerProxy(
_stream_id
=
stream_id
;
_retry_count
=
retry_count
;
setOnClose
(
nullptr
);
setOnConnect
(
nullptr
);
setOnDisconnect
(
nullptr
);
...
...
@@ -43,16 +44,15 @@ PlayerProxy::PlayerProxy(
_live_secs
=
0
;
_live_status
=
1
;
_repull_count
=
0
;
_on_close
=
[](
const
SockException
&
)
{};
(
*
this
)[
Client
::
kWaitTrackReady
]
=
false
;
}
void
PlayerProxy
::
setPlayCallbackOnce
(
const
function
<
void
(
const
SockException
&
ex
)
>
&
cb
)
{
_on_play
=
cb
;
void
PlayerProxy
::
setPlayCallbackOnce
(
function
<
void
(
const
SockException
&
ex
)
>
cb
)
{
_on_play
=
std
::
move
(
cb
)
;
}
void
PlayerProxy
::
setOnClose
(
const
function
<
void
(
const
SockException
&
ex
)
>
&
cb
)
{
_on_close
=
cb
?
cb
:
[](
const
SockException
&
)
{};
void
PlayerProxy
::
setOnClose
(
function
<
void
(
const
SockException
&
ex
)
>
cb
)
{
_on_close
=
cb
?
std
::
move
(
cb
)
:
[](
const
SockException
&
)
{};
}
void
PlayerProxy
::
setOnDisconnect
(
std
::
function
<
void
()
>
cb
)
{
...
...
@@ -174,7 +174,7 @@ void PlayerProxy::play(const string &strUrlTmp) {
MediaPlayer
::
play
(
strUrlTmp
);
}
catch
(
std
::
exception
&
ex
)
{
ErrorL
<<
ex
.
what
();
_on_play_r
esult
(
SockException
(
Err_other
,
ex
.
what
()));
onPlayR
esult
(
SockException
(
Err_other
,
ex
.
what
()));
return
;
}
_pull_url
=
strUrlTmp
;
...
...
@@ -324,9 +324,8 @@ int PlayerProxy::getStatus() {
uint64_t
PlayerProxy
::
getLiveSecs
()
{
if
(
_live_status
==
0
)
{
return
_live_secs
+
_live_ticker
.
elapsedTime
()
/
1000
;
}
else
{
return
_live_secs
;
}
return
_live_secs
;
}
uint64_t
PlayerProxy
::
getRePullCount
()
{
...
...
src/Player/PlayerProxy.h
查看文件 @
4fa04d6a
...
...
@@ -76,13 +76,13 @@ public:
* 设置play结果回调,只触发一次;在play执行之前有效
* @param cb 回调对象
*/
void
setPlayCallbackOnce
(
const
std
::
function
<
void
(
const
toolkit
::
SockException
&
ex
)
>
&
cb
);
void
setPlayCallbackOnce
(
std
::
function
<
void
(
const
toolkit
::
SockException
&
ex
)
>
cb
);
/**
* 设置主动关闭回调
* @param cb 回调对象
*/
void
setOnClose
(
const
std
::
function
<
void
(
const
toolkit
::
SockException
&
ex
)
>
&
cb
);
void
setOnClose
(
std
::
function
<
void
(
const
toolkit
::
SockException
&
ex
)
>
cb
);
/**
* Set a callback for failed server connection
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论