Compare commits

...

4 Commits

2 changed files with 3 additions and 3 deletions

View File

@ -222,7 +222,7 @@ public class InviteRequestProcessor extends SIPRequestProcessorParent implements
if (sendRtpItem.isTcpActive()) {
MediaServer mediaServer = mediaServerService.getOne(sendRtpItem.getMediaServerId());
try {
mediaServerService.startSendRtpPassive(mediaServer, sendRtpItem, 5);
mediaServerService.startSendRtpPassive(mediaServer, sendRtpItem, 5*1000);
DeviceChannel deviceChannel = deviceChannelService.getOneForSourceById(sendRtpItem.getChannelId());
if (deviceChannel != null) {
redisCatchStorage.sendPlatformStartPlayMsg(sendRtpItem, deviceChannel, platform);

View File

@ -350,7 +350,7 @@ create table IF NOT EXISTS wvp_media_server
record_path character varying(255),
record_day integer default 7,
transcode_suffix character varying(255),
server_id character varying(50),
server_id character varying(50)
);
COMMENT ON TABLE wvp_media_server IS '媒体服务器(如 ZLM节点信息';
COMMENT ON COLUMN wvp_media_server.id IS '媒体服务器ID';
@ -931,7 +931,7 @@ create table IF NOT EXISTS wvp_alarm (
latitude double precision,
alarm_type integer,
alarm_time bigint
)
);
COMMENT ON COLUMN wvp_alarm.id IS '主键ID';
COMMENT ON COLUMN wvp_alarm.channel_id IS '关联通道的数据库id';
COMMENT ON COLUMN wvp_alarm.description IS '报警描述';