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
208b0865
Commit
208b0865
authored
Aug 23, 2022
by
ziyue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复全局变量初始化顺序错乱导致崩溃的问题
parent
c6a0e3ad
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
11 行增加
和
8 行删除
+11
-8
api/source/mk_media.cpp
+3
-2
src/Common/MediaSource.cpp
+4
-2
src/Common/MediaSource.h
+1
-1
src/Common/MultiMediaSourceMuxer.cpp
+3
-3
没有找到文件。
api/source/mk_media.cpp
查看文件 @
208b0865
...
...
@@ -266,7 +266,7 @@ API_EXPORT void API_CALL mk_media_start_send_rtp(mk_media ctx, const char *dst_u
args
.
is_udp
=
is_udp
;
//sender参数无用
(
*
obj
)
->
getChannel
()
->
startSendRtp
(
MediaSource
::
NullMediaSource
,
args
,
[
cb
,
user_data
](
uint16_t
local_port
,
const
SockException
&
ex
){
(
*
obj
)
->
getChannel
()
->
startSendRtp
(
MediaSource
::
NullMediaSource
()
,
args
,
[
cb
,
user_data
](
uint16_t
local_port
,
const
SockException
&
ex
){
if
(
cb
)
{
cb
(
user_data
,
local_port
,
ex
.
getErrCode
(),
ex
.
what
());
}
...
...
@@ -277,5 +277,5 @@ API_EXPORT int API_CALL mk_media_stop_send_rtp(mk_media ctx, const char *ssrc){
assert
(
ctx
);
MediaHelper
::
Ptr
*
obj
=
(
MediaHelper
::
Ptr
*
)
ctx
;
//sender参数无用
return
(
*
obj
)
->
getChannel
()
->
stopSendRtp
(
MediaSource
::
NullMediaSource
,
ssrc
?
ssrc
:
""
);
return
(
*
obj
)
->
getChannel
()
->
stopSendRtp
(
MediaSource
::
NullMediaSource
()
,
ssrc
?
ssrc
:
""
);
}
\ No newline at end of file
src/Common/MediaSource.cpp
查看文件 @
208b0865
...
...
@@ -53,8 +53,10 @@ struct MediaSourceNull : public MediaSource {
int
readerCount
()
override
{
return
0
;
}
};
static
std
::
shared_ptr
<
MediaSource
>
s_null
=
std
::
make_shared
<
MediaSourceNull
>
();
MediaSource
&
MediaSource
::
NullMediaSource
=
*
s_null
;
MediaSource
&
MediaSource
::
NullMediaSource
()
{
static
std
::
shared_ptr
<
MediaSource
>
s_null
=
std
::
make_shared
<
MediaSourceNull
>
();
return
*
s_null
;
}
MediaSource
::
MediaSource
(
const
string
&
schema
,
const
string
&
vhost
,
const
string
&
app
,
const
string
&
stream_id
){
GET_CONFIG
(
bool
,
enableVhost
,
General
::
kEnableVhost
);
...
...
src/Common/MediaSource.h
查看文件 @
208b0865
...
...
@@ -235,7 +235,7 @@ private:
*/
class
MediaSource
:
public
TrackSource
,
public
std
::
enable_shared_from_this
<
MediaSource
>
{
public
:
static
MediaSource
&
NullMediaSource
;
static
MediaSource
&
NullMediaSource
()
;
using
Ptr
=
std
::
shared_ptr
<
MediaSource
>
;
using
StreamMap
=
std
::
unordered_map
<
std
::
string
/*stream_id*/
,
std
::
weak_ptr
<
MediaSource
>
>
;
using
AppStreamMap
=
std
::
unordered_map
<
std
::
string
/*app*/
,
StreamMap
>
;
...
...
src/Common/MultiMediaSourceMuxer.cpp
查看文件 @
208b0865
...
...
@@ -78,7 +78,7 @@ static string getTrackInfoStr(const TrackSource *track_src){
MultiMediaSourceMuxer
::
MultiMediaSourceMuxer
(
const
string
&
vhost
,
const
string
&
app
,
const
string
&
stream
,
float
dur_sec
,
const
ProtocolOption
&
option
)
{
_option
=
option
;
_get_origin_url
=
[
this
,
vhost
,
app
,
stream
]()
{
auto
ret
=
getOriginUrl
(
MediaSource
::
NullMediaSource
);
auto
ret
=
getOriginUrl
(
MediaSource
::
NullMediaSource
()
);
if
(
!
ret
.
empty
())
{
return
ret
;
}
...
...
@@ -240,11 +240,11 @@ void MultiMediaSourceMuxer::startSendRtp(MediaSource &, const MediaSourceEvent::
WarnL
<<
"stream:"
<<
strong_self
->
_get_origin_url
()
<<
" stop send rtp:"
<<
ssrc
;
strong_self
->
_rtp_sender
.
erase
(
ssrc
);
//触发观看人数统计
strong_self
->
onReaderChanged
(
MediaSource
::
NullMediaSource
,
strong_self
->
totalReaderCount
());
strong_self
->
onReaderChanged
(
MediaSource
::
NullMediaSource
()
,
strong_self
->
totalReaderCount
());
}
});
strong_self
->
_rtp_sender
[
args
.
ssrc
]
=
std
::
move
(
rtp_sender
);
strong_self
->
onReaderChanged
(
MediaSource
::
NullMediaSource
,
strong_self
->
totalReaderCount
());
strong_self
->
onReaderChanged
(
MediaSource
::
NullMediaSource
()
,
strong_self
->
totalReaderCount
());
});
#else
cb
(
0
,
SockException
(
Err_other
,
"该功能未启用,编译时请打开ENABLE_RTPPROXY宏"
));
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论