设备默认媒体流 改为 MediaStreamMode.TCP_PASSIVE
This commit is contained in:
parent
72c11e4625
commit
f02d18e1e3
@ -140,14 +140,14 @@ public class RegisterRequestProcessor implements MessageProcessor {
|
|||||||
|
|
||||||
if (device == null) {
|
if (device == null) {
|
||||||
device = new DockingDevice();
|
device = new DockingDevice();
|
||||||
device.setStreamMode(MediaStreamMode.TCP_ACTIVE.getMode());
|
device.setStreamMode(MediaStreamMode.TCP_PASSIVE.getMode());
|
||||||
device.setCharset(GB28181Constant.CHARSET);
|
device.setCharset(GB28181Constant.CHARSET);
|
||||||
device.setGeoCoordSys(GB28181Constant.GEO_COORD_SYS);
|
device.setGeoCoordSys(GB28181Constant.GEO_COORD_SYS);
|
||||||
device.setDeviceId(deviceId);
|
device.setDeviceId(deviceId);
|
||||||
device.setOnLine(false);
|
device.setOnLine(false);
|
||||||
} else {
|
} else {
|
||||||
if (ObjectUtils.isEmpty(device.getStreamMode())) {
|
if (ObjectUtils.isEmpty(device.getStreamMode())) {
|
||||||
device.setStreamMode(MediaStreamMode.TCP_ACTIVE.getMode());
|
device.setStreamMode(MediaStreamMode.TCP_PASSIVE.getMode());
|
||||||
}
|
}
|
||||||
if (ObjectUtils.isEmpty(device.getCharset())) {
|
if (ObjectUtils.isEmpty(device.getCharset())) {
|
||||||
device.setCharset(GB28181Constant.CHARSET);
|
device.setCharset(GB28181Constant.CHARSET);
|
||||||
|
Loading…
Reference in New Issue
Block a user