648540858
2022-05-06 5d901b5e3f033e8b04e53420d68626cbd87431c8
src/main/java/com/genersoft/iot/vmp/gb28181/bean/SendRtpItem.java
@@ -27,6 +27,11 @@
     */
    private String deviceId;
    /**
     * 直播流的应用名
     */
    private String app;
   /**
     * 通道id
     */
@@ -40,10 +45,6 @@
     */
    private int status = 0;
    /**
     * 设备推流的app
     */
    private String app = "rtp";
    /**
     * 设备推流的streamId
@@ -64,6 +65,25 @@
     * 自己推流使用的端口
     */
    private int localPort;
    /**
     * 使用的流媒体
     */
    private String mediaServerId;
    /**
     *  invite的callId
     */
    private String CallId;
    /**
     * 播放类型
     */
    private InviteStreamType playType;
    private byte[] transaction;
    private byte[] dialog;
    public String getIp() {
        return ip;
@@ -160,4 +180,46 @@
    public void setTcpActive(boolean tcpActive) {
        this.tcpActive = tcpActive;
    }
    public String getMediaServerId() {
        return mediaServerId;
    }
    public void setMediaServerId(String mediaServerId) {
        this.mediaServerId = mediaServerId;
    }
    public String getCallId() {
        return CallId;
    }
    public void setCallId(String callId) {
        CallId = callId;
    }
    public InviteStreamType getPlayType() {
        return playType;
    }
    public void setPlayType(InviteStreamType playType) {
        this.playType = playType;
    }
    public byte[] getTransaction() {
        return transaction;
    }
    public void setTransaction(byte[] transaction) {
        this.transaction = transaction;
    }
    public byte[] getDialog() {
        return dialog;
    }
    public void setDialog(byte[] dialog) {
        this.dialog = dialog;
    }
}