统一代码风格

This commit is contained in:
xiongziliang 2020-12-27 21:21:31 +08:00
parent 3a0fa27198
commit 61b29efe94
3 changed files with 7 additions and 5 deletions

View File

@ -881,8 +881,7 @@ void installWebApi() {
//只是暂停流的检查流媒体服务器做为流负载服务收流就转发RTSP/RTMP有自己暂停协议
lock_guard<recursive_mutex> lck(s_rtpServerMapMtx);
auto it = s_rtpServerMap.find(allArgs["stream_id"]);
if (it == s_rtpServerMap.end())
{
if (it == s_rtpServerMap.end()) {
val["hit"] = 0;
return;
}
@ -897,8 +896,7 @@ void installWebApi() {
lock_guard<recursive_mutex> lck(s_rtpServerMapMtx);
auto it = s_rtpServerMap.find(allArgs["stream_id"]);
if (it == s_rtpServerMap.end())
{
if (it == s_rtpServerMap.end()) {
val["hit"] = 0;
return;
}

View File

@ -135,8 +135,10 @@ void RtpProcess::addTrackCompleted() {
}
bool RtpProcess::alive() {
if(_stop_rtp_check.load())
if (_stop_rtp_check.load()) {
return true;
}
GET_CONFIG(int, timeoutSec, RtpProxy::kTimeoutSec)
if (_last_frame_time.elapsedTime() / 1000 < timeoutSec) {
return true;

View File

@ -56,10 +56,12 @@ public:
* RtpProcess onDetach事件回调
*/
void setOnDetach(const function<void()> &cb);
/**
* Rtp服务的RTP流检测
*/
void pauseRtpCheck();
/**
* Rtp服务的RTP流检测
*/