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
8d5f29d9
Commit
8d5f29d9
authored
Jul 15, 2021
by
ziyue
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/find-async-by-session' of
https://github.com/xia-chu/ZLMediaKit
parents
54dae131
ece7186e
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
5 行增加
和
5 行删除
+5
-5
src/Common/MediaSource.cpp
+3
-3
src/Common/MediaSource.h
+2
-2
没有找到文件。
src/Common/MediaSource.cpp
查看文件 @
8d5f29d9
...
...
@@ -280,7 +280,7 @@ static MediaSource::Ptr find_l(const string &schema, const string &vhost_in, con
return
ret
;
}
static
void
findAsync_l
(
const
MediaInfo
&
info
,
const
std
::
shared_ptr
<
Tcp
Session
>
&
session
,
bool
retry
,
static
void
findAsync_l
(
const
MediaInfo
&
info
,
const
std
::
shared_ptr
<
Session
>
&
session
,
bool
retry
,
const
function
<
void
(
const
MediaSource
::
Ptr
&
src
)
>
&
cb
){
auto
src
=
find_l
(
info
.
_schema
,
info
.
_vhost
,
info
.
_app
,
info
.
_streamid
,
true
);
if
(
src
||
!
retry
)
{
...
...
@@ -314,7 +314,7 @@ static void findAsync_l(const MediaInfo &info, const std::shared_ptr<TcpSession>
NoticeCenter
::
Instance
().
delListener
(
listener_tag
,
Broadcast
::
kBroadcastMediaChanged
);
};
weak_ptr
<
Tcp
Session
>
weak_session
=
session
;
weak_ptr
<
Session
>
weak_session
=
session
;
auto
on_register
=
[
weak_session
,
info
,
cb_once
,
cancel_all
,
poller
](
BroadcastMediaChangedArgs
)
{
if
(
!
bRegist
||
sender
.
getSchema
()
!=
info
.
_schema
||
...
...
@@ -352,7 +352,7 @@ static void findAsync_l(const MediaInfo &info, const std::shared_ptr<TcpSession>
NoticeCenter
::
Instance
().
emitEvent
(
Broadcast
::
kBroadcastNotFoundStream
,
info
,
static_cast
<
SockInfo
&>
(
*
session
),
close_player
);
}
void
MediaSource
::
findAsync
(
const
MediaInfo
&
info
,
const
std
::
shared_ptr
<
TcpSession
>
&
session
,
const
function
<
void
(
const
Ptr
&
src
)
>
&
cb
)
{
void
MediaSource
::
findAsync
(
const
MediaInfo
&
info
,
const
std
::
shared_ptr
<
Session
>
&
session
,
const
function
<
void
(
const
Ptr
&
)
>
&
cb
)
{
return
findAsync_l
(
info
,
session
,
true
,
cb
);
}
...
...
src/Common/MediaSource.h
查看文件 @
8d5f29d9
...
...
@@ -32,7 +32,7 @@ using namespace std;
using
namespace
toolkit
;
namespace
toolkit
{
class
Tcp
Session
;
class
Session
;
}
// namespace toolkit
namespace
mediakit
{
...
...
@@ -271,7 +271,7 @@ public:
static
Ptr
find
(
const
string
&
vhost
,
const
string
&
app
,
const
string
&
stream_id
);
// 异步查找流
static
void
findAsync
(
const
MediaInfo
&
info
,
const
std
::
shared_ptr
<
Tcp
Session
>
&
session
,
const
function
<
void
(
const
Ptr
&
src
)
>
&
cb
);
static
void
findAsync
(
const
MediaInfo
&
info
,
const
std
::
shared_ptr
<
Session
>
&
session
,
const
function
<
void
(
const
Ptr
&
src
)
>
&
cb
);
// 遍历所有流
static
void
for_each_media
(
const
function
<
void
(
const
Ptr
&
src
)
>
&
cb
,
const
string
&
schema
=
""
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论