From 1af77ab5f7c11a4b3d59c1989b51b9fca29679ce Mon Sep 17 00:00:00 2001
From: 648540858 <648540858@qq.com>
Date: 星期二, 18 十月 2022 22:18:49 +0800
Subject: [PATCH] Merge pull request #645 from IKangXu/wvp-28181-2.0

---
 src/main/java/com/genersoft/iot/vmp/gb28181/bean/SendRtpItem.java |   93 ++++++++++++++++++++++++++++++++++++++--------
 1 files changed, 76 insertions(+), 17 deletions(-)

diff --git a/src/main/java/com/genersoft/iot/vmp/gb28181/bean/SendRtpItem.java b/src/main/java/com/genersoft/iot/vmp/gb28181/bean/SendRtpItem.java
index a2c38ac..8f61bc9 100644
--- a/src/main/java/com/genersoft/iot/vmp/gb28181/bean/SendRtpItem.java
+++ b/src/main/java/com/genersoft/iot/vmp/gb28181/bean/SendRtpItem.java
@@ -1,5 +1,7 @@
 package com.genersoft.iot.vmp.gb28181.bean;
 
+import gov.nist.javax.sip.message.SIPRequest;
+
 public class SendRtpItem {
 
     /**
@@ -72,18 +74,45 @@
     private String mediaServerId;
 
     /**
-     *  invite鐨刢allId
+     * 浣跨敤鐨勬湇鍔$殑ID
+     */
+    private String serverId;
+
+    /**
+     *  invite 鐨� callId
      */
     private String CallId;
 
     /**
-     * 鏄惁鏄痯lay锛� false鏄痯layback
+     *  invite 鐨� fromTag
      */
-    private boolean isPlay;
+    private String fromTag;
 
-    private byte[] transaction;
+    /**
+     *  invite 鐨� toTag
+     */
+    private String toTag;
 
-    private byte[] dialog;
+    /**
+     * 鍙戦�佹椂锛宺tp鐨刾t锛坲int8_t锛�,涓嶄紶鏃堕粯璁や负96
+     */
+    private int pt = 96;
+
+    /**
+     * 鍙戦�佹椂锛宺tp鐨勮礋杞界被鍨嬨�備负true鏃讹紝璐熻浇涓簆s锛涗负false鏃讹紝涓篹s锛�
+     */
+    private boolean usePs = true;
+
+    /**
+     * 褰搖sePs 涓篺alse鏃讹紝鏈夋晥銆備负1鏃讹紝鍙戦�侀煶棰戯紱涓�0鏃讹紝鍙戦�佽棰戯紱涓嶄紶鏃堕粯璁や负0
+     */
+    private boolean onlyAudio = false;
+
+
+    /**
+     * 鎾斁绫诲瀷
+     */
+    private InviteStreamType playType;
 
     public String getIp() {
         return ip;
@@ -197,29 +226,59 @@
         CallId = callId;
     }
 
-    public boolean isPlay() {
-        return isPlay;
+    public InviteStreamType getPlayType() {
+        return playType;
     }
 
-    public void setPlay(boolean play) {
-        isPlay = play;
+    public void setPlayType(InviteStreamType playType) {
+        this.playType = playType;
     }
 
-    public byte[] getTransaction() {
-        return transaction;
+    public int getPt() {
+        return pt;
     }
 
-    public void setTransaction(byte[] transaction) {
-        this.transaction = transaction;
+    public void setPt(int pt) {
+        this.pt = pt;
     }
 
-    public byte[] getDialog() {
-        return dialog;
+    public boolean isUsePs() {
+        return usePs;
     }
 
-    public void setDialog(byte[] dialog) {
-        this.dialog = dialog;
+    public void setUsePs(boolean usePs) {
+        this.usePs = usePs;
     }
 
+    public boolean isOnlyAudio() {
+        return onlyAudio;
+    }
 
+    public void setOnlyAudio(boolean onlyAudio) {
+        this.onlyAudio = onlyAudio;
+    }
+
+    public String getServerId() {
+        return serverId;
+    }
+
+    public void setServerId(String serverId) {
+        this.serverId = serverId;
+    }
+
+    public String getFromTag() {
+        return fromTag;
+    }
+
+    public void setFromTag(String fromTag) {
+        this.fromTag = fromTag;
+    }
+
+    public String getToTag() {
+        return toTag;
+    }
+
+    public void setToTag(String toTag) {
+        this.toTag = toTag;
+    }
 }

--
Gitblit v1.8.0