| | |
| | | package com.genersoft.iot.vmp.gb28181.bean; |
| | | |
| | | import gov.nist.javax.sip.message.SIPRequest; |
| | | |
| | | public class SendRtpItem { |
| | | |
| | | /** |
| | |
| | | private String mediaServerId; |
| | | |
| | | /** |
| | | * invite的callId |
| | | * 使用的服务的ID |
| | | */ |
| | | private String serverId; |
| | | |
| | | /** |
| | | * invite 的 callId |
| | | */ |
| | | private String CallId; |
| | | |
| | | /** |
| | | * invite 的 fromTag |
| | | */ |
| | | private String fromTag; |
| | | |
| | | /** |
| | | * invite 的 toTag |
| | | */ |
| | | private String toTag; |
| | | |
| | | /** |
| | | * 发送时,rtp的pt(uint8_t),不传时默认为96 |
| | |
| | | */ |
| | | private boolean onlyAudio = false; |
| | | |
| | | |
| | | /** |
| | | * 播放类型 |
| | | */ |
| | | private InviteStreamType playType; |
| | | |
| | | private byte[] transaction; |
| | | |
| | | private byte[] dialog; |
| | | |
| | | public String getIp() { |
| | | return ip; |
| | |
| | | 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; |
| | | } |
| | | |
| | | public int getPt() { |
| | | return pt; |
| | | } |
| | |
| | | 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; |
| | | } |
| | | } |