修改RTP端口计算方法,确保分配偶数端口
This commit is contained in:
parent
203888f306
commit
f991996693
@ -52,6 +52,9 @@ public class ZLMUtils {
|
|||||||
currentPort = udpPortRangeArray[0];
|
currentPort = udpPortRangeArray[0];
|
||||||
return udpPortRangeArray[0];
|
return udpPortRangeArray[0];
|
||||||
} else {
|
} else {
|
||||||
|
if (currentPort % 2 == 1) {
|
||||||
|
currentPort++;
|
||||||
|
}
|
||||||
return currentPort++;
|
return currentPort++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user