@polyvharmony/rtc-core-trtc 1.4.0-v13.2.0.8732-dev.260702.2 → 1.4.0-v13.2.0.8732-dev.260702.3
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/CHANGELOG.md
CHANGED
package/ets/modules.abc
CHANGED
|
Binary file
|
package/oh-package.json5
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@polyvharmony/rtc-core-trtc","version":"1.4.0-v13.2.0.8732-dev.260702.
|
|
1
|
+
{"name":"@polyvharmony/rtc-core-trtc","version":"1.4.0-v13.2.0.8732-dev.260702.3","description":"rtc-core-trtc","author":"POLYV","repository":"https://github.com/polyv/polyv-harmony-livescenes-sdk-demo","license":"MIT","dependencies":{"@polyvharmony/rtc-sdk":"1.4.0-dev.260702.3","@polyvharmony/common-libs":"1.0.2","@tencentcloud/liteavsdk_trtc":"file:./libs/LiteAVSDK_TRTC_13.2.0.8732.stripped.har"},"types":"Index.d.ts","artifactType":"obfuscation","metadata":{"byteCodeHar":true,"sourceRoots":["./src/main"],"debug":false,"dependencyPkgVersion":{"@polyvharmony/rtc-sdk":"1.4.0-dev.260702.3","@polyvharmony/common-libs":"1.0.2","@tencentcloud/liteavsdk_trtc":"13.2.8732"},"declarationEntry":[],"useNormalizedOHMUrl":true},"compatibleSdkVersionStage":"beta1","compatibleSdkVersion":12,"compatibleSdkType":"HarmonyOS","obfuscated":true}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@polyvharmony/rtc-core-trtc","version":"1.4.0-v13.2.0.8732-dev.260702.
|
|
1
|
+
{"name":"@polyvharmony/rtc-core-trtc","version":"1.4.0-v13.2.0.8732-dev.260702.3","description":"rtc-core-trtc","author":"POLYV","repository":"https://github.com/polyv/polyv-harmony-livescenes-sdk-demo","license":"MIT","dependencies":{"@polyvharmony/rtc-sdk":"1.4.0-dev.260702.3","@polyvharmony/common-libs":"1.0.2","@tencentcloud/liteavsdk_trtc":"file:./libs/LiteAVSDK_TRTC_13.2.0.8732.stripped.har"},"types":"Index.d.ts","artifactType":"obfuscation","metadata":{"byteCodeHar":true,"sourceRoots":["./src/main"],"debug":false,"dependencyPkgVersion":{"@polyvharmony/rtc-sdk":"1.4.0-dev.260702.3","@polyvharmony/common-libs":"1.0.2","@tencentcloud/liteavsdk_trtc":"13.2.8732"},"declarationEntry":[],"useNormalizedOHMUrl":true},"compatibleSdkVersionStage":"beta1","compatibleSdkVersion":12,"compatibleSdkType":"HarmonyOS","obfuscated":true}
|
|
@@ -4,16 +4,17 @@ import image from "@ohos.multimedia.image";
|
|
|
4
4
|
export declare class PLVTRTCEngine extends PLVRTCEngine implements TRTCCloudCallback {
|
|
5
5
|
readonly rtcConfig: PLVRTCConfig;
|
|
6
6
|
readonly eventCallback: PLVRTCEngineEventCallback;
|
|
7
|
-
constructor(
|
|
7
|
+
constructor(y5: PLVRTCConfig, z5: PLVRTCEngineEventCallback);
|
|
8
8
|
private rtcEngine;
|
|
9
9
|
private currentJoinedChannelId;
|
|
10
10
|
private isCameraFront;
|
|
11
|
+
private isMuteLocalVideo;
|
|
11
12
|
private audioQuality;
|
|
12
13
|
private readonly channelUserMediaStates;
|
|
13
14
|
private readonly channelVideoRenderParamMap;
|
|
14
15
|
private init;
|
|
15
16
|
getSupportRTCTypes(): PLVRTCType[];
|
|
16
|
-
joinChannel(
|
|
17
|
+
joinChannel(w5: string): number;
|
|
17
18
|
leaveChannel(): number;
|
|
18
19
|
startScreenCapture(): number;
|
|
19
20
|
stopScreenCapture(): number;
|
|
@@ -2,6 +2,6 @@ import { PLVRTCConfig, PLVRTCEngine, PLVRTCEngineEventCallback, PLVRTCEngineFact
|
|
|
2
2
|
export declare class PLVTRTCEngineFactory extends PLVRTCEngineFactory {
|
|
3
3
|
static readonly instance: PLVTRTCEngineFactory;
|
|
4
4
|
private constructor();
|
|
5
|
-
isEngineSupport(
|
|
6
|
-
create(
|
|
5
|
+
isEngineSupport(d6: PLVRTCType): boolean;
|
|
6
|
+
create(a6: PLVRTCConfig, b6: PLVRTCEngineEventCallback): PLVRTCEngine | null;
|
|
7
7
|
}
|