united some code style

This commit is contained in:
xiongguangjie 2022-10-19 14:55:39 +08:00
parent 7b87985f74
commit 0a71e06d4a
4 changed files with 8 additions and 8 deletions

View File

@ -399,7 +399,7 @@ private:
GET_CONFIG(int, mergeWriteMS, General::kMergeWriteMS);
GET_CONFIG(int, rtspLowLatency, Rtsp::KLowLatency);
GET_CONFIG(int, rtspLowLatency, Rtsp::kLowLatency);
if(std::is_same<packet, RtpPacket>::value && rtspLowLatency){
return true;
}

View File

@ -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 KLowLatency = RTSP_FIELD"lowLatency";
const string kLowLatency = 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()[KLowLatency] = 0;
mINI::Instance()[kLowLatency] = 0;
});
} // namespace Rtsp
@ -208,13 +208,13 @@ const string kAudioMtuSize = RTP_FIELD "audioMtuSize";
// rtp包最大长度限制单位是KB
const string kRtpMaxSize = RTP_FIELD "rtpMaxSize";
const string KLowLatency = RTP_FIELD "lowLatency";
const string kLowLatency = RTP_FIELD "lowLatency";
static onceToken token([]() {
mINI::Instance()[kVideoMtuSize] = 1400;
mINI::Instance()[kAudioMtuSize] = 600;
mINI::Instance()[kRtpMaxSize] = 10;
mINI::Instance()[KLowLatency] = 0;
mINI::Instance()[kLowLatency] = 0;
});
} // namespace Rtp

View File

@ -253,7 +253,7 @@ extern const std::string kKeepAliveSecond;
extern const std::string kDirectProxy;
// rtsp 转发是否使用低延迟模式当开启时不会缓存rtp包来提高并发可以降低一帧的延迟
extern const std::string KLowLatency;
extern const std::string kLowLatency;
} // namespace Rtsp
////////////RTMP服务器配置///////////
@ -275,7 +275,7 @@ extern const std::string kAudioMtuSize;
// rtp包最大长度限制, 单位KB
extern const std::string kRtpMaxSize;
// rtp 打包时低延迟开关默认关闭为0h264存在一帧多个sliceNAL的情况在这种情况下如果开启可能会导致画面花屏
extern const std::string KLowLatency;
extern const std::string kLowLatency;
} // namespace Rtp
////////////组播配置///////////

View File

@ -283,7 +283,7 @@ bool H264RtpEncoder::inputFrame(const Frame::Ptr &frame) {
default: break;
}
GET_CONFIG(int,lowLatency,Rtp::KLowLatency);
GET_CONFIG(int,lowLatency,Rtp::kLowLatency);
if (lowLatency) { // 低延迟模式
if (_last_frame) {
flush();