实现国标录像级联播放,优化点播流程,加快点播速度

This commit is contained in:
648540858
2022-02-27 20:01:31 +08:00
parent 10f776678e
commit e94b99d11c
19 changed files with 208 additions and 100 deletions

View File

@@ -71,6 +71,16 @@ public class SendRtpItem {
*/
private String mediaServerId;
/**
* invite的callId
*/
private String CallId;
/**
* 是否是play false是playback
*/
private boolean isPlay;
public String getIp() {
return ip;
}
@@ -174,4 +184,20 @@ public class SendRtpItem {
public void setMediaServerId(String mediaServerId) {
this.mediaServerId = mediaServerId;
}
public String getCallId() {
return CallId;
}
public void setCallId(String callId) {
CallId = callId;
}
public boolean isPlay() {
return isPlay;
}
public void setPlay(boolean play) {
isPlay = play;
}
}