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
33047ddc
Commit
33047ddc
authored
5 years ago
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
程序退出前停止一切录制
parent
728fd55e
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
13 行增加
和
0 行删除
+13
-0
server/main.cpp
+1
-0
src/Record/Recorder.cpp
+10
-0
src/Record/Recorder.h
+1
-0
tests/test_server.cpp
+1
-0
没有找到文件。
server/main.cpp
查看文件 @
33047ddc
...
...
@@ -336,6 +336,7 @@ int start_main(int argc,char *argv[]) {
}
unInstallWebApi
();
unInstallWebHook
();
Recorder
::
stopAll
();
//休眠1秒再退出,防止资源释放顺序错误
InfoL
<<
"程序退出中,请等待..."
;
sleep
(
1
);
...
...
This diff is collapsed.
Click to expand it.
src/Record/Recorder.cpp
查看文件 @
33047ddc
...
...
@@ -206,6 +206,11 @@ public:
_recorder_map
.
erase
(
getRecorderKey
(
vhost
,
app
,
stream_id
));
}
void
stopAll
(){
lock_guard
<
decltype
(
_recorder_mtx
)
>
lck
(
_recorder_mtx
);
_recorder_map
.
clear
();
}
private
:
MediaSourceWatcher
(){
NoticeCenter
::
Instance
().
addListener
(
this
,
Broadcast
::
kBroadcastMediaChanged
,[
this
](
BroadcastMediaChangedArgs
){
...
...
@@ -352,4 +357,9 @@ void Recorder::stopRecord(Recorder::type type, const string &vhost, const string
}
}
void
Recorder
::
stopAll
()
{
MediaSourceWatcher
<
type_hls
>::
Instance
().
stopAll
();
MediaSourceWatcher
<
type_mp4
>::
Instance
().
stopAll
();
}
}
/* namespace mediakit */
This diff is collapsed.
Click to expand it.
src/Record/Recorder.h
查看文件 @
33047ddc
...
...
@@ -56,6 +56,7 @@ public:
static
status
getRecordStatus
(
type
type
,
const
string
&
vhost
,
const
string
&
app
,
const
string
&
stream_id
);
static
int
startRecord
(
type
type
,
const
string
&
vhost
,
const
string
&
app
,
const
string
&
stream_id
,
bool
waitForRecord
,
bool
continueRecord
);
static
void
stopRecord
(
type
type
,
const
string
&
vhost
,
const
string
&
app
,
const
string
&
stream_id
);
static
void
stopAll
();
private
:
Recorder
()
=
delete
;
~
Recorder
()
=
delete
;
...
...
This diff is collapsed.
Click to expand it.
tests/test_server.cpp
查看文件 @
33047ddc
...
...
@@ -354,6 +354,7 @@ int main(int argc,char *argv[]) {
signal
(
SIGHUP
,
[](
int
)
{
loadIniConfig
();
});
sem
.
wait
();
Recorder
::
stopAll
();
lock_guard
<
mutex
>
lck
(
s_mtxFlvRecorder
);
s_mapFlvRecorder
.
clear
();
return
0
;
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论