实现级联点播RTP推送

This commit is contained in:
lawrencehj
2021-03-09 20:05:37 +08:00
parent b7857027d5
commit df34954c9e
9 changed files with 207 additions and 70 deletions

View File

@@ -22,7 +22,12 @@ public class SendRtpItem {
*/
private String platformId;
/**
/**
* 对应设备id
*/
private String deviceId;
/**
* 通道id
*/
private String channelId;
@@ -92,6 +97,14 @@ public class SendRtpItem {
this.platformId = platformId;
}
public String getDeviceId() {
return deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getChannelId() {
return channelId;
}