dingrtc 3.9.14 → 3.9.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +5 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.js +1 -1
- package/dist/index.umd.js +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1841,6 +1841,9 @@ declare class PeerConnection extends EventEmitter<IPeerConnectionEvents> {
|
|
|
1841
1841
|
subSdpFmtpLines: string[];
|
|
1842
1842
|
sessionManager: SessionManager;
|
|
1843
1843
|
prevId: string;
|
|
1844
|
+
/**
|
|
1845
|
+
* 目前仅用于metric上报当前使用的profile信息
|
|
1846
|
+
*/
|
|
1844
1847
|
offerSDP: SessionDescription;
|
|
1845
1848
|
clientFailoverTimer: number;
|
|
1846
1849
|
audioSfuSsrcs: signal_msg.IAudioSsrcSpec[];
|
|
@@ -1869,7 +1872,7 @@ declare class PeerConnection extends EventEmitter<IPeerConnectionEvents> {
|
|
|
1869
1872
|
* @param isSinglePCFailover
|
|
1870
1873
|
* @returns 正常返回即成功,如果异常则失败
|
|
1871
1874
|
*/
|
|
1872
|
-
private
|
|
1875
|
+
private exchangeSdpForCreatePc;
|
|
1873
1876
|
reoffer(): Promise<void>;
|
|
1874
1877
|
handleHighProfileFallback(): void;
|
|
1875
1878
|
/**
|
|
@@ -2692,6 +2695,7 @@ interface GlobalClientConfigInfo {
|
|
|
2692
2695
|
disableTransportCC?: boolean;
|
|
2693
2696
|
highStartBitrate?: boolean;
|
|
2694
2697
|
connectPcTimeoutMs?: number;
|
|
2698
|
+
preferH264CbProfile?: number;
|
|
2695
2699
|
}
|
|
2696
2700
|
/**
|
|
2697
2701
|
* 加入频道所需信息
|