for srt more check config

This commit is contained in:
xiongguangjie 2022-06-14 19:49:45 +08:00
parent dfec2d76e0
commit 559b4d3fe7

View File

@ -323,12 +323,20 @@ void SrtTransportImp::doCachedFunc() {
int SrtTransportImp::getLatencyMul() { int SrtTransportImp::getLatencyMul() {
GET_CONFIG(int, latencyMul, kLatencyMul); GET_CONFIG(int, latencyMul, kLatencyMul);
if (latencyMul <= 0) {
WarnL << "config srt " << kLatencyMul << " not vaild";
return 4;
}
return latencyMul; return latencyMul;
} }
int SrtTransportImp::getPktBufSize() { int SrtTransportImp::getPktBufSize() {
// kPktBufSize // kPktBufSize
GET_CONFIG(int, pktBufSize, kPktBufSize); GET_CONFIG(int, pktBufSize, kPktBufSize);
if (pktBufSize <= 0) {
WarnL << "config srt " << kPktBufSize << " not vaild";
return 8912;
}
return pktBufSize; return pktBufSize;
} }