-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change-Id: I39867f63f902cf9004484bed2c8aafe6d7c29e71
- Loading branch information
1 parent
6745744
commit 5bfd312
Showing
8 changed files
with
575 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
...deo-advanced-app-android/src/main/java/com/tencent/iot/video/link/rtc/IoTVideoParams.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package com.tencent.iot.video.link.rtc; | ||
|
||
public class IoTVideoParams { | ||
//设置p2p模式 必传参数xp2pinfo、productid、devicename | ||
private String xp2pInfo; | ||
private String productId; | ||
private String deviceName; | ||
|
||
//设置rtc模式 必传参数RTCParams | ||
private RTCParams rtcParams; | ||
|
||
public String getXp2pInfo() { | ||
return xp2pInfo; | ||
} | ||
|
||
public void setXp2pInfo(String xp2pInfo) { | ||
this.xp2pInfo = xp2pInfo; | ||
} | ||
|
||
public String getProductId() { | ||
return productId; | ||
} | ||
|
||
public void setProductId(String productId) { | ||
this.productId = productId; | ||
} | ||
|
||
public String getDeviceName() { | ||
return deviceName; | ||
} | ||
|
||
public void setDeviceName(String deviceName) { | ||
this.deviceName = deviceName; | ||
} | ||
|
||
public RTCParams getRtcParams() { | ||
return rtcParams; | ||
} | ||
|
||
public void setRtcParams(RTCParams rtcParams) { | ||
this.rtcParams = rtcParams; | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...com/tencent/iot/video/link/rtc/RoomKey.kt → ...m/tencent/iot/video/link/rtc/RTCParams.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.