修复国标视频点播三种点播方式(自动点播,上级点播,接口点播)并发情况下失败的问题

This commit is contained in:
648540858
2023-05-06 17:40:57 +08:00
parent 9ccce01692
commit e2f9ee8f7b
26 changed files with 916 additions and 517 deletions

View File

@@ -1,6 +1,6 @@
package com.genersoft.iot.vmp.gb28181.bean;
import com.genersoft.iot.vmp.gb28181.session.VideoStreamSessionManager;
import com.genersoft.iot.vmp.common.InviteSessionType;
public class SsrcTransaction {
@@ -13,7 +13,7 @@ public class SsrcTransaction {
private SipTransactionInfo sipTransactionInfo;
private VideoStreamSessionManager.SessionType type;
private InviteSessionType type;
public String getDeviceId() {
return deviceId;
@@ -63,11 +63,11 @@ public class SsrcTransaction {
this.ssrc = ssrc;
}
public VideoStreamSessionManager.SessionType getType() {
public InviteSessionType getType() {
return type;
}
public void setType(VideoStreamSessionManager.SessionType type) {
public void setType(InviteSessionType type) {
this.type = type;
}