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
0a71e06d
Commit
0a71e06d
authored
Oct 19, 2022
by
xiongguangjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
united some code style
parent
7b87985f
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
8 行增加
和
8 行删除
+8
-8
src/Common/MediaSource.h
+1
-1
src/Common/config.cpp
+4
-4
src/Common/config.h
+2
-2
src/Extension/H264Rtp.cpp
+1
-1
没有找到文件。
src/Common/MediaSource.h
查看文件 @
0a71e06d
...
...
@@ -399,7 +399,7 @@ private:
GET_CONFIG
(
int
,
mergeWriteMS
,
General
::
kMergeWriteMS
);
GET_CONFIG
(
int
,
rtspLowLatency
,
Rtsp
::
K
LowLatency
);
GET_CONFIG
(
int
,
rtspLowLatency
,
Rtsp
::
k
LowLatency
);
if
(
std
::
is_same
<
packet
,
RtpPacket
>::
value
&&
rtspLowLatency
){
return
true
;
}
...
...
src/Common/config.cpp
查看文件 @
0a71e06d
...
...
@@ -173,7 +173,7 @@ const string kAuthBasic = RTSP_FIELD "authBasic";
const
string
kHandshakeSecond
=
RTSP_FIELD
"handshakeSecond"
;
const
string
kKeepAliveSecond
=
RTSP_FIELD
"keepAliveSecond"
;
const
string
kDirectProxy
=
RTSP_FIELD
"directProxy"
;
const
string
K
LowLatency
=
RTSP_FIELD
"lowLatency"
;
const
string
k
LowLatency
=
RTSP_FIELD
"lowLatency"
;
static
onceToken
token
([]()
{
// 默认Md5方式认证
...
...
@@ -181,7 +181,7 @@ static onceToken token([]() {
mINI
::
Instance
()[
kHandshakeSecond
]
=
15
;
mINI
::
Instance
()[
kKeepAliveSecond
]
=
15
;
mINI
::
Instance
()[
kDirectProxy
]
=
1
;
mINI
::
Instance
()[
K
LowLatency
]
=
0
;
mINI
::
Instance
()[
k
LowLatency
]
=
0
;
});
}
// namespace Rtsp
...
...
@@ -208,13 +208,13 @@ const string kAudioMtuSize = RTP_FIELD "audioMtuSize";
// rtp包最大长度限制,单位是KB
const
string
kRtpMaxSize
=
RTP_FIELD
"rtpMaxSize"
;
const
string
K
LowLatency
=
RTP_FIELD
"lowLatency"
;
const
string
k
LowLatency
=
RTP_FIELD
"lowLatency"
;
static
onceToken
token
([]()
{
mINI
::
Instance
()[
kVideoMtuSize
]
=
1400
;
mINI
::
Instance
()[
kAudioMtuSize
]
=
600
;
mINI
::
Instance
()[
kRtpMaxSize
]
=
10
;
mINI
::
Instance
()[
K
LowLatency
]
=
0
;
mINI
::
Instance
()[
k
LowLatency
]
=
0
;
});
}
// namespace Rtp
...
...
src/Common/config.h
查看文件 @
0a71e06d
...
...
@@ -253,7 +253,7 @@ extern const std::string kKeepAliveSecond;
extern
const
std
::
string
kDirectProxy
;
// rtsp 转发是否使用低延迟模式,当开启时,不会缓存rtp包,来提高并发,可以降低一帧的延迟
extern
const
std
::
string
K
LowLatency
;
extern
const
std
::
string
k
LowLatency
;
}
// namespace Rtsp
////////////RTMP服务器配置///////////
...
...
@@ -275,7 +275,7 @@ extern const std::string kAudioMtuSize;
// rtp包最大长度限制, 单位KB
extern
const
std
::
string
kRtpMaxSize
;
// rtp 打包时,低延迟开关,默认关闭(为0),h264存在一帧多个slice(NAL)的情况,在这种情况下,如果开启可能会导致画面花屏
extern
const
std
::
string
K
LowLatency
;
extern
const
std
::
string
k
LowLatency
;
}
// namespace Rtp
////////////组播配置///////////
...
...
src/Extension/H264Rtp.cpp
查看文件 @
0a71e06d
...
...
@@ -283,7 +283,7 @@ bool H264RtpEncoder::inputFrame(const Frame::Ptr &frame) {
default
:
break
;
}
GET_CONFIG
(
int
,
lowLatency
,
Rtp
::
K
LowLatency
);
GET_CONFIG
(
int
,
lowLatency
,
Rtp
::
k
LowLatency
);
if
(
lowLatency
)
{
// 低延迟模式
if
(
_last_frame
)
{
flush
();
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论