react-native-shengwang 4.6.2-rc.2
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 +755 -0
- package/LICENSE +20 -0
- package/README.md +162 -0
- package/android/build.gradle +180 -0
- package/android/consumer-rules.pro +5 -0
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +11 -0
- package/android/src/main/AndroidManifestNew.xml +9 -0
- package/android/src/main/java/io/agora/rtc/ng/react/AgoraPIPActivity.java +107 -0
- package/android/src/main/java/io/agora/rtc/ng/react/AgoraRtcNgModule.java +278 -0
- package/android/src/main/java/io/agora/rtc/ng/react/AgoraRtcNgPackage.java +61 -0
- package/android/src/main/java/io/agora/rtc/ng/react/AgoraRtcSurfaceViewManager.java +60 -0
- package/android/src/main/java/io/agora/rtc/ng/react/AgoraRtcTextureViewManager.java +45 -0
- package/android/src/newarch/io/agora/rtc/ng/react/AgoraRtcNgSpec.java +9 -0
- package/android/src/newarch/io/agora/rtc/ng/react/AgoraRtcSurfaceViewManagerSpec.java +25 -0
- package/android/src/newarch/io/agora/rtc/ng/react/AgoraRtcTextureViewManagerSpec.java +25 -0
- package/android/src/oldarch/io/agora/rtc/ng/react/AgoraRtcNgSpec.java +40 -0
- package/android/src/oldarch/io/agora/rtc/ng/react/AgoraRtcSurfaceViewManagerSpec.java +16 -0
- package/android/src/oldarch/io/agora/rtc/ng/react/AgoraRtcTextureViewManagerSpec.java +12 -0
- package/ios/AgoraRtcNg.h +20 -0
- package/ios/AgoraRtcNg.mm +475 -0
- package/ios/AgoraRtcNg.xcodeproj/project.pbxproj +278 -0
- package/ios/AgoraRtcSurfaceView.h +17 -0
- package/ios/AgoraRtcSurfaceView.mm +95 -0
- package/ios/AgoraRtcSurfaceViewManager.mm +41 -0
- package/lib/commonjs/AgoraBase.js +4298 -0
- package/lib/commonjs/AgoraBase.js.map +1 -0
- package/lib/commonjs/AgoraMediaBase.js +1057 -0
- package/lib/commonjs/AgoraMediaBase.js.map +1 -0
- package/lib/commonjs/AgoraMediaPlayerTypes.js +323 -0
- package/lib/commonjs/AgoraMediaPlayerTypes.js.map +1 -0
- package/lib/commonjs/AgoraRtcRenderView.js +55 -0
- package/lib/commonjs/AgoraRtcRenderView.js.map +1 -0
- package/lib/commonjs/IAgoraH265Transcoder.js +40 -0
- package/lib/commonjs/IAgoraH265Transcoder.js.map +1 -0
- package/lib/commonjs/IAgoraLog.js +81 -0
- package/lib/commonjs/IAgoraLog.js.map +1 -0
- package/lib/commonjs/IAgoraMediaEngine.js +35 -0
- package/lib/commonjs/IAgoraMediaEngine.js.map +1 -0
- package/lib/commonjs/IAgoraMediaPlayer.js +25 -0
- package/lib/commonjs/IAgoraMediaPlayer.js.map +1 -0
- package/lib/commonjs/IAgoraMediaPlayerSource.js +4 -0
- package/lib/commonjs/IAgoraMediaPlayerSource.js.map +1 -0
- package/lib/commonjs/IAgoraMediaRecorder.js +13 -0
- package/lib/commonjs/IAgoraMediaRecorder.js.map +1 -0
- package/lib/commonjs/IAgoraMediaStreamingSource.js +77 -0
- package/lib/commonjs/IAgoraMediaStreamingSource.js.map +1 -0
- package/lib/commonjs/IAgoraMusicContentCenter.js +166 -0
- package/lib/commonjs/IAgoraMusicContentCenter.js.map +1 -0
- package/lib/commonjs/IAgoraPip.js +55 -0
- package/lib/commonjs/IAgoraPip.js.map +1 -0
- package/lib/commonjs/IAgoraRhythmPlayer.js +65 -0
- package/lib/commonjs/IAgoraRhythmPlayer.js.map +1 -0
- package/lib/commonjs/IAgoraRtcEngine.js +1056 -0
- package/lib/commonjs/IAgoraRtcEngine.js.map +1 -0
- package/lib/commonjs/IAgoraRtcEngineEx.js +22 -0
- package/lib/commonjs/IAgoraRtcEngineEx.js.map +1 -0
- package/lib/commonjs/IAgoraSpatialAudio.js +27 -0
- package/lib/commonjs/IAgoraSpatialAudio.js.map +1 -0
- package/lib/commonjs/IAudioDeviceManager.js +23 -0
- package/lib/commonjs/IAudioDeviceManager.js.map +1 -0
- package/lib/commonjs/Utils.js +44 -0
- package/lib/commonjs/Utils.js.map +1 -0
- package/lib/commonjs/extension/AgoraBaseExtension.js +6 -0
- package/lib/commonjs/extension/AgoraBaseExtension.js.map +1 -0
- package/lib/commonjs/extension/AgoraMediaBaseExtension.js +6 -0
- package/lib/commonjs/extension/AgoraMediaBaseExtension.js.map +1 -0
- package/lib/commonjs/extension/AgoraMediaPlayerTypesExtension.js +6 -0
- package/lib/commonjs/extension/AgoraMediaPlayerTypesExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraH265TranscoderExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraH265TranscoderExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraLogExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraLogExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraMediaEngineExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraMediaEngineExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraMediaPlayerExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraMediaPlayerExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraMediaPlayerSourceExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraMediaPlayerSourceExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraMediaRecorderExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraMediaRecorderExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraMusicContentCenterExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraMusicContentCenterExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraPipExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraPipExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraRhythmPlayerExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraRhythmPlayerExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraRtcEngineExExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraRtcEngineExExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraRtcEngineExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraRtcEngineExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraSpatialAudioExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraSpatialAudioExtension.js.map +1 -0
- package/lib/commonjs/extension/IAudioDeviceManagerExtension.js +6 -0
- package/lib/commonjs/extension/IAudioDeviceManagerExtension.js.map +1 -0
- package/lib/commonjs/impl/AgoraBaseImpl.js +26 -0
- package/lib/commonjs/impl/AgoraBaseImpl.js.map +1 -0
- package/lib/commonjs/impl/AgoraMediaBaseImpl.js +153 -0
- package/lib/commonjs/impl/AgoraMediaBaseImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraH265TranscoderImpl.js +121 -0
- package/lib/commonjs/impl/IAgoraH265TranscoderImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraMediaEngineImpl.js +341 -0
- package/lib/commonjs/impl/IAgoraMediaEngineImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraMediaPlayerImpl.js +965 -0
- package/lib/commonjs/impl/IAgoraMediaPlayerImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraMediaPlayerSourceImpl.js +76 -0
- package/lib/commonjs/impl/IAgoraMediaPlayerSourceImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraMediaRecorderImpl.js +51 -0
- package/lib/commonjs/impl/IAgoraMediaRecorderImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraMusicContentCenterImpl.js +429 -0
- package/lib/commonjs/impl/IAgoraMusicContentCenterImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraRtcEngineExImpl.js +1182 -0
- package/lib/commonjs/impl/IAgoraRtcEngineExImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraRtcEngineImpl.js +5435 -0
- package/lib/commonjs/impl/IAgoraRtcEngineImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraSpatialAudioImpl.js +362 -0
- package/lib/commonjs/impl/IAgoraSpatialAudioImpl.js.map +1 -0
- package/lib/commonjs/impl/IAudioDeviceManagerImpl.js +379 -0
- package/lib/commonjs/impl/IAudioDeviceManagerImpl.js.map +1 -0
- package/lib/commonjs/index.js +255 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/internal/AgoraH265TranscoderInternal.js +66 -0
- package/lib/commonjs/internal/AgoraH265TranscoderInternal.js.map +1 -0
- package/lib/commonjs/internal/AgoraMediaBaseInternal.js +20 -0
- package/lib/commonjs/internal/AgoraMediaBaseInternal.js.map +1 -0
- package/lib/commonjs/internal/AgoraPipInternal.js +101 -0
- package/lib/commonjs/internal/AgoraPipInternal.js.map +1 -0
- package/lib/commonjs/internal/IAgoraRtcRenderView.js +72 -0
- package/lib/commonjs/internal/IAgoraRtcRenderView.js.map +1 -0
- package/lib/commonjs/internal/IrisApiEngine.js +259 -0
- package/lib/commonjs/internal/IrisApiEngine.js.map +1 -0
- package/lib/commonjs/internal/LocalSpatialAudioEngineInternal.js +10 -0
- package/lib/commonjs/internal/LocalSpatialAudioEngineInternal.js.map +1 -0
- package/lib/commonjs/internal/MediaEngineInternal.js +124 -0
- package/lib/commonjs/internal/MediaEngineInternal.js.map +1 -0
- package/lib/commonjs/internal/MediaPlayerInternal.js +170 -0
- package/lib/commonjs/internal/MediaPlayerInternal.js.map +1 -0
- package/lib/commonjs/internal/MediaRecorderInternal.js +75 -0
- package/lib/commonjs/internal/MediaRecorderInternal.js.map +1 -0
- package/lib/commonjs/internal/MusicContentCenterInternal.js +144 -0
- package/lib/commonjs/internal/MusicContentCenterInternal.js.map +1 -0
- package/lib/commonjs/internal/RtcEngineExInternal.js +258 -0
- package/lib/commonjs/internal/RtcEngineExInternal.js.map +1 -0
- package/lib/commonjs/internal/call.js +133 -0
- package/lib/commonjs/internal/call.js.map +1 -0
- package/lib/commonjs/internal/event.js +32 -0
- package/lib/commonjs/internal/event.js.map +1 -0
- package/lib/commonjs/specs/AgoraRtcSurfaceViewNativeComponent.js +10 -0
- package/lib/commonjs/specs/AgoraRtcSurfaceViewNativeComponent.js.map +1 -0
- package/lib/commonjs/specs/AgoraRtcTextureViewNativeComponent.js +10 -0
- package/lib/commonjs/specs/AgoraRtcTextureViewNativeComponent.js.map +1 -0
- package/lib/commonjs/specs/NativeAgoraRtcNg.js +9 -0
- package/lib/commonjs/specs/NativeAgoraRtcNg.js.map +1 -0
- package/lib/commonjs/specs/index.js +22 -0
- package/lib/commonjs/specs/index.js.map +1 -0
- package/lib/commonjs/ti/AgoraBase-ti.js +24 -0
- package/lib/commonjs/ti/AgoraBase-ti.js.map +1 -0
- package/lib/commonjs/ti/AgoraMediaBase-ti.js +59 -0
- package/lib/commonjs/ti/AgoraMediaBase-ti.js.map +1 -0
- package/lib/commonjs/ti/AgoraMediaPlayerTypes-ti.js +15 -0
- package/lib/commonjs/ti/AgoraMediaPlayerTypes-ti.js.map +1 -0
- package/lib/commonjs/ti/AgoraPip-ti.js +22 -0
- package/lib/commonjs/ti/AgoraPip-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraH265Transcoder-ti.js +24 -0
- package/lib/commonjs/ti/IAgoraH265Transcoder-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraLog-ti.js +15 -0
- package/lib/commonjs/ti/IAgoraLog-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraMediaEngine-ti.js +15 -0
- package/lib/commonjs/ti/IAgoraMediaEngine-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraMediaPlayer-ti.js +22 -0
- package/lib/commonjs/ti/IAgoraMediaPlayer-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraMediaPlayerSource-ti.js +34 -0
- package/lib/commonjs/ti/IAgoraMediaPlayerSource-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraMediaRecorder-ti.js +15 -0
- package/lib/commonjs/ti/IAgoraMediaRecorder-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraMediaStreamingSource-ti.js +15 -0
- package/lib/commonjs/ti/IAgoraMediaStreamingSource-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraMusicContentCenter-ti.js +26 -0
- package/lib/commonjs/ti/IAgoraMusicContentCenter-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraPip-ti.js +22 -0
- package/lib/commonjs/ti/IAgoraPip-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraRhythmPlayer-ti.js +15 -0
- package/lib/commonjs/ti/IAgoraRhythmPlayer-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraRtcEngine-ti.js +128 -0
- package/lib/commonjs/ti/IAgoraRtcEngine-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraRtcEngineEx-ti.js +15 -0
- package/lib/commonjs/ti/IAgoraRtcEngineEx-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraSpatialAudio-ti.js +15 -0
- package/lib/commonjs/ti/IAgoraSpatialAudio-ti.js.map +1 -0
- package/lib/commonjs/ti/IAudioDeviceManager-ti.js +15 -0
- package/lib/commonjs/ti/IAudioDeviceManager-ti.js.map +1 -0
- package/lib/commonjs/ti/Utils-ti.js +15 -0
- package/lib/commonjs/ti/Utils-ti.js.map +1 -0
- package/lib/commonjs/ti/index-ti.js +15 -0
- package/lib/commonjs/ti/index-ti.js.map +1 -0
- package/lib/module/AgoraBase.js +4333 -0
- package/lib/module/AgoraBase.js.map +1 -0
- package/lib/module/AgoraMediaBase.js +1067 -0
- package/lib/module/AgoraMediaBase.js.map +1 -0
- package/lib/module/AgoraMediaPlayerTypes.js +318 -0
- package/lib/module/AgoraMediaPlayerTypes.js.map +1 -0
- package/lib/module/AgoraRtcRenderView.js +47 -0
- package/lib/module/AgoraRtcRenderView.js.map +1 -0
- package/lib/module/IAgoraH265Transcoder.js +36 -0
- package/lib/module/IAgoraH265Transcoder.js.map +1 -0
- package/lib/module/IAgoraLog.js +77 -0
- package/lib/module/IAgoraLog.js.map +1 -0
- package/lib/module/IAgoraMediaEngine.js +29 -0
- package/lib/module/IAgoraMediaEngine.js.map +1 -0
- package/lib/module/IAgoraMediaPlayer.js +17 -0
- package/lib/module/IAgoraMediaPlayer.js.map +1 -0
- package/lib/module/IAgoraMediaPlayerSource.js +6 -0
- package/lib/module/IAgoraMediaPlayerSource.js.map +1 -0
- package/lib/module/IAgoraMediaRecorder.js +6 -0
- package/lib/module/IAgoraMediaRecorder.js.map +1 -0
- package/lib/module/IAgoraMediaStreamingSource.js +73 -0
- package/lib/module/IAgoraMediaStreamingSource.js.map +1 -0
- package/lib/module/IAgoraMusicContentCenter.js +156 -0
- package/lib/module/IAgoraMusicContentCenter.js.map +1 -0
- package/lib/module/IAgoraPip.js +48 -0
- package/lib/module/IAgoraPip.js.map +1 -0
- package/lib/module/IAgoraRhythmPlayer.js +61 -0
- package/lib/module/IAgoraRhythmPlayer.js.map +1 -0
- package/lib/module/IAgoraRtcEngine.js +1049 -0
- package/lib/module/IAgoraRtcEngine.js.map +1 -0
- package/lib/module/IAgoraRtcEngineEx.js +15 -0
- package/lib/module/IAgoraRtcEngineEx.js.map +1 -0
- package/lib/module/IAgoraSpatialAudio.js +18 -0
- package/lib/module/IAgoraSpatialAudio.js.map +1 -0
- package/lib/module/IAudioDeviceManager.js +17 -0
- package/lib/module/IAudioDeviceManager.js.map +1 -0
- package/lib/module/Utils.js +35 -0
- package/lib/module/Utils.js.map +1 -0
- package/lib/module/extension/AgoraBaseExtension.js +2 -0
- package/lib/module/extension/AgoraBaseExtension.js.map +1 -0
- package/lib/module/extension/AgoraMediaBaseExtension.js +2 -0
- package/lib/module/extension/AgoraMediaBaseExtension.js.map +1 -0
- package/lib/module/extension/AgoraMediaPlayerTypesExtension.js +2 -0
- package/lib/module/extension/AgoraMediaPlayerTypesExtension.js.map +1 -0
- package/lib/module/extension/IAgoraH265TranscoderExtension.js +2 -0
- package/lib/module/extension/IAgoraH265TranscoderExtension.js.map +1 -0
- package/lib/module/extension/IAgoraLogExtension.js +2 -0
- package/lib/module/extension/IAgoraLogExtension.js.map +1 -0
- package/lib/module/extension/IAgoraMediaEngineExtension.js +2 -0
- package/lib/module/extension/IAgoraMediaEngineExtension.js.map +1 -0
- package/lib/module/extension/IAgoraMediaPlayerExtension.js +2 -0
- package/lib/module/extension/IAgoraMediaPlayerExtension.js.map +1 -0
- package/lib/module/extension/IAgoraMediaPlayerSourceExtension.js +2 -0
- package/lib/module/extension/IAgoraMediaPlayerSourceExtension.js.map +1 -0
- package/lib/module/extension/IAgoraMediaRecorderExtension.js +2 -0
- package/lib/module/extension/IAgoraMediaRecorderExtension.js.map +1 -0
- package/lib/module/extension/IAgoraMusicContentCenterExtension.js +2 -0
- package/lib/module/extension/IAgoraMusicContentCenterExtension.js.map +1 -0
- package/lib/module/extension/IAgoraPipExtension.js +2 -0
- package/lib/module/extension/IAgoraPipExtension.js.map +1 -0
- package/lib/module/extension/IAgoraRhythmPlayerExtension.js +2 -0
- package/lib/module/extension/IAgoraRhythmPlayerExtension.js.map +1 -0
- package/lib/module/extension/IAgoraRtcEngineExExtension.js +2 -0
- package/lib/module/extension/IAgoraRtcEngineExExtension.js.map +1 -0
- package/lib/module/extension/IAgoraRtcEngineExtension.js +2 -0
- package/lib/module/extension/IAgoraRtcEngineExtension.js.map +1 -0
- package/lib/module/extension/IAgoraSpatialAudioExtension.js +2 -0
- package/lib/module/extension/IAgoraSpatialAudioExtension.js.map +1 -0
- package/lib/module/extension/IAudioDeviceManagerExtension.js +2 -0
- package/lib/module/extension/IAudioDeviceManagerExtension.js.map +1 -0
- package/lib/module/impl/AgoraBaseImpl.js +20 -0
- package/lib/module/impl/AgoraBaseImpl.js.map +1 -0
- package/lib/module/impl/AgoraMediaBaseImpl.js +139 -0
- package/lib/module/impl/AgoraMediaBaseImpl.js.map +1 -0
- package/lib/module/impl/IAgoraH265TranscoderImpl.js +113 -0
- package/lib/module/impl/IAgoraH265TranscoderImpl.js.map +1 -0
- package/lib/module/impl/IAgoraMediaEngineImpl.js +335 -0
- package/lib/module/impl/IAgoraMediaEngineImpl.js.map +1 -0
- package/lib/module/impl/IAgoraMediaPlayerImpl.js +957 -0
- package/lib/module/impl/IAgoraMediaPlayerImpl.js.map +1 -0
- package/lib/module/impl/IAgoraMediaPlayerSourceImpl.js +70 -0
- package/lib/module/impl/IAgoraMediaPlayerSourceImpl.js.map +1 -0
- package/lib/module/impl/IAgoraMediaRecorderImpl.js +45 -0
- package/lib/module/impl/IAgoraMediaRecorderImpl.js.map +1 -0
- package/lib/module/impl/IAgoraMusicContentCenterImpl.js +419 -0
- package/lib/module/impl/IAgoraMusicContentCenterImpl.js.map +1 -0
- package/lib/module/impl/IAgoraRtcEngineExImpl.js +1176 -0
- package/lib/module/impl/IAgoraRtcEngineExImpl.js.map +1 -0
- package/lib/module/impl/IAgoraRtcEngineImpl.js +5423 -0
- package/lib/module/impl/IAgoraRtcEngineImpl.js.map +1 -0
- package/lib/module/impl/IAgoraSpatialAudioImpl.js +356 -0
- package/lib/module/impl/IAgoraSpatialAudioImpl.js.map +1 -0
- package/lib/module/impl/IAudioDeviceManagerImpl.js +373 -0
- package/lib/module/impl/IAudioDeviceManagerImpl.js.map +1 -0
- package/lib/module/index.js +43 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/internal/AgoraH265TranscoderInternal.js +58 -0
- package/lib/module/internal/AgoraH265TranscoderInternal.js.map +1 -0
- package/lib/module/internal/AgoraMediaBaseInternal.js +13 -0
- package/lib/module/internal/AgoraMediaBaseInternal.js.map +1 -0
- package/lib/module/internal/AgoraPipInternal.js +92 -0
- package/lib/module/internal/AgoraPipInternal.js.map +1 -0
- package/lib/module/internal/IAgoraRtcRenderView.js +62 -0
- package/lib/module/internal/IAgoraRtcRenderView.js.map +1 -0
- package/lib/module/internal/IrisApiEngine.js +251 -0
- package/lib/module/internal/IrisApiEngine.js.map +1 -0
- package/lib/module/internal/LocalSpatialAudioEngineInternal.js +3 -0
- package/lib/module/internal/LocalSpatialAudioEngineInternal.js.map +1 -0
- package/lib/module/internal/MediaEngineInternal.js +116 -0
- package/lib/module/internal/MediaEngineInternal.js.map +1 -0
- package/lib/module/internal/MediaPlayerInternal.js +162 -0
- package/lib/module/internal/MediaPlayerInternal.js.map +1 -0
- package/lib/module/internal/MediaRecorderInternal.js +67 -0
- package/lib/module/internal/MediaRecorderInternal.js.map +1 -0
- package/lib/module/internal/MusicContentCenterInternal.js +134 -0
- package/lib/module/internal/MusicContentCenterInternal.js.map +1 -0
- package/lib/module/internal/RtcEngineExInternal.js +250 -0
- package/lib/module/internal/RtcEngineExInternal.js.map +1 -0
- package/lib/module/internal/call.js +126 -0
- package/lib/module/internal/call.js.map +1 -0
- package/lib/module/internal/event.js +25 -0
- package/lib/module/internal/event.js.map +1 -0
- package/lib/module/specs/AgoraRtcSurfaceViewNativeComponent.js +3 -0
- package/lib/module/specs/AgoraRtcSurfaceViewNativeComponent.js.map +1 -0
- package/lib/module/specs/AgoraRtcTextureViewNativeComponent.js +3 -0
- package/lib/module/specs/AgoraRtcTextureViewNativeComponent.js.map +1 -0
- package/lib/module/specs/NativeAgoraRtcNg.js +3 -0
- package/lib/module/specs/NativeAgoraRtcNg.js.map +1 -0
- package/lib/module/specs/index.js +16 -0
- package/lib/module/specs/index.js.map +1 -0
- package/lib/module/ti/AgoraBase-ti.js +16 -0
- package/lib/module/ti/AgoraBase-ti.js.map +1 -0
- package/lib/module/ti/AgoraMediaBase-ti.js +51 -0
- package/lib/module/ti/AgoraMediaBase-ti.js.map +1 -0
- package/lib/module/ti/AgoraMediaPlayerTypes-ti.js +9 -0
- package/lib/module/ti/AgoraMediaPlayerTypes-ti.js.map +1 -0
- package/lib/module/ti/AgoraPip-ti.js +14 -0
- package/lib/module/ti/AgoraPip-ti.js.map +1 -0
- package/lib/module/ti/IAgoraH265Transcoder-ti.js +16 -0
- package/lib/module/ti/IAgoraH265Transcoder-ti.js.map +1 -0
- package/lib/module/ti/IAgoraLog-ti.js +9 -0
- package/lib/module/ti/IAgoraLog-ti.js.map +1 -0
- package/lib/module/ti/IAgoraMediaEngine-ti.js +9 -0
- package/lib/module/ti/IAgoraMediaEngine-ti.js.map +1 -0
- package/lib/module/ti/IAgoraMediaPlayer-ti.js +14 -0
- package/lib/module/ti/IAgoraMediaPlayer-ti.js.map +1 -0
- package/lib/module/ti/IAgoraMediaPlayerSource-ti.js +26 -0
- package/lib/module/ti/IAgoraMediaPlayerSource-ti.js.map +1 -0
- package/lib/module/ti/IAgoraMediaRecorder-ti.js +9 -0
- package/lib/module/ti/IAgoraMediaRecorder-ti.js.map +1 -0
- package/lib/module/ti/IAgoraMediaStreamingSource-ti.js +9 -0
- package/lib/module/ti/IAgoraMediaStreamingSource-ti.js.map +1 -0
- package/lib/module/ti/IAgoraMusicContentCenter-ti.js +18 -0
- package/lib/module/ti/IAgoraMusicContentCenter-ti.js.map +1 -0
- package/lib/module/ti/IAgoraPip-ti.js +14 -0
- package/lib/module/ti/IAgoraPip-ti.js.map +1 -0
- package/lib/module/ti/IAgoraRhythmPlayer-ti.js +9 -0
- package/lib/module/ti/IAgoraRhythmPlayer-ti.js.map +1 -0
- package/lib/module/ti/IAgoraRtcEngine-ti.js +120 -0
- package/lib/module/ti/IAgoraRtcEngine-ti.js.map +1 -0
- package/lib/module/ti/IAgoraRtcEngineEx-ti.js +9 -0
- package/lib/module/ti/IAgoraRtcEngineEx-ti.js.map +1 -0
- package/lib/module/ti/IAgoraSpatialAudio-ti.js +9 -0
- package/lib/module/ti/IAgoraSpatialAudio-ti.js.map +1 -0
- package/lib/module/ti/IAudioDeviceManager-ti.js +9 -0
- package/lib/module/ti/IAudioDeviceManager-ti.js.map +1 -0
- package/lib/module/ti/Utils-ti.js +9 -0
- package/lib/module/ti/Utils-ti.js.map +1 -0
- package/lib/module/ti/index-ti.js +9 -0
- package/lib/module/ti/index-ti.js.map +1 -0
- package/lib/typescript/src/AgoraBase.d.ts +5728 -0
- package/lib/typescript/src/AgoraBase.d.ts.map +1 -0
- package/lib/typescript/src/AgoraMediaBase.d.ts +1717 -0
- package/lib/typescript/src/AgoraMediaBase.d.ts.map +1 -0
- package/lib/typescript/src/AgoraMediaPlayerTypes.d.ts +456 -0
- package/lib/typescript/src/AgoraMediaPlayerTypes.d.ts.map +1 -0
- package/lib/typescript/src/AgoraRtcRenderView.d.ts +60 -0
- package/lib/typescript/src/AgoraRtcRenderView.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraH265Transcoder.d.ts +28 -0
- package/lib/typescript/src/IAgoraH265Transcoder.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraLog.d.ts +89 -0
- package/lib/typescript/src/IAgoraLog.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraMediaEngine.d.ts +255 -0
- package/lib/typescript/src/IAgoraMediaEngine.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraMediaPlayer.d.ts +656 -0
- package/lib/typescript/src/IAgoraMediaPlayer.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraMediaPlayerSource.d.ts +109 -0
- package/lib/typescript/src/IAgoraMediaPlayerSource.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraMediaRecorder.d.ts +60 -0
- package/lib/typescript/src/IAgoraMediaRecorder.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraMediaStreamingSource.d.ts +42 -0
- package/lib/typescript/src/IAgoraMediaStreamingSource.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraMusicContentCenter.d.ts +604 -0
- package/lib/typescript/src/IAgoraMusicContentCenter.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraPip.d.ts +257 -0
- package/lib/typescript/src/IAgoraPip.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraRhythmPlayer.d.ts +65 -0
- package/lib/typescript/src/IAgoraRhythmPlayer.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraRtcEngine.d.ts +6831 -0
- package/lib/typescript/src/IAgoraRtcEngine.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraRtcEngineEx.d.ts +817 -0
- package/lib/typescript/src/IAgoraRtcEngineEx.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraSpatialAudio.d.ts +194 -0
- package/lib/typescript/src/IAgoraSpatialAudio.d.ts.map +1 -0
- package/lib/typescript/src/IAudioDeviceManager.d.ts +155 -0
- package/lib/typescript/src/IAudioDeviceManager.d.ts.map +1 -0
- package/lib/typescript/src/Utils.d.ts +19 -0
- package/lib/typescript/src/Utils.d.ts.map +1 -0
- package/lib/typescript/src/extension/AgoraBaseExtension.d.ts +2 -0
- package/lib/typescript/src/extension/AgoraBaseExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/AgoraMediaBaseExtension.d.ts +2 -0
- package/lib/typescript/src/extension/AgoraMediaBaseExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/AgoraMediaPlayerTypesExtension.d.ts +2 -0
- package/lib/typescript/src/extension/AgoraMediaPlayerTypesExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraH265TranscoderExtension.d.ts +24 -0
- package/lib/typescript/src/extension/IAgoraH265TranscoderExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraLogExtension.d.ts +2 -0
- package/lib/typescript/src/extension/IAgoraLogExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraMediaEngineExtension.d.ts +40 -0
- package/lib/typescript/src/extension/IAgoraMediaEngineExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraMediaPlayerExtension.d.ts +46 -0
- package/lib/typescript/src/extension/IAgoraMediaPlayerExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraMediaPlayerSourceExtension.d.ts +2 -0
- package/lib/typescript/src/extension/IAgoraMediaPlayerSourceExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraMediaRecorderExtension.d.ts +44 -0
- package/lib/typescript/src/extension/IAgoraMediaRecorderExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraMusicContentCenterExtension.d.ts +20 -0
- package/lib/typescript/src/extension/IAgoraMusicContentCenterExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraPipExtension.d.ts +23 -0
- package/lib/typescript/src/extension/IAgoraPipExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraRhythmPlayerExtension.d.ts +2 -0
- package/lib/typescript/src/extension/IAgoraRhythmPlayerExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraRtcEngineExExtension.d.ts +2 -0
- package/lib/typescript/src/extension/IAgoraRtcEngineExExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraRtcEngineExtension.d.ts +49 -0
- package/lib/typescript/src/extension/IAgoraRtcEngineExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraSpatialAudioExtension.d.ts +2 -0
- package/lib/typescript/src/extension/IAgoraSpatialAudioExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAudioDeviceManagerExtension.d.ts +2 -0
- package/lib/typescript/src/extension/IAudioDeviceManagerExtension.d.ts.map +1 -0
- package/lib/typescript/src/impl/AgoraBaseImpl.d.ts +3 -0
- package/lib/typescript/src/impl/AgoraBaseImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/AgoraMediaBaseImpl.d.ts +14 -0
- package/lib/typescript/src/impl/AgoraMediaBaseImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraH265TranscoderImpl.d.ts +15 -0
- package/lib/typescript/src/impl/IAgoraH265TranscoderImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraMediaEngineImpl.d.ts +46 -0
- package/lib/typescript/src/impl/IAgoraMediaEngineImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraMediaPlayerImpl.d.ts +145 -0
- package/lib/typescript/src/impl/IAgoraMediaPlayerImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraMediaPlayerSourceImpl.d.ts +3 -0
- package/lib/typescript/src/impl/IAgoraMediaPlayerSourceImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraMediaRecorderImpl.d.ts +11 -0
- package/lib/typescript/src/impl/IAgoraMediaRecorderImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraMusicContentCenterImpl.d.ts +67 -0
- package/lib/typescript/src/impl/IAgoraMusicContentCenterImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraRtcEngineExImpl.d.ts +128 -0
- package/lib/typescript/src/impl/IAgoraRtcEngineExImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraRtcEngineImpl.d.ts +656 -0
- package/lib/typescript/src/impl/IAgoraRtcEngineImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraSpatialAudioImpl.d.ts +47 -0
- package/lib/typescript/src/impl/IAgoraSpatialAudioImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAudioDeviceManagerImpl.d.ts +65 -0
- package/lib/typescript/src/impl/IAudioDeviceManagerImpl.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +31 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/internal/AgoraH265TranscoderInternal.d.ts +14 -0
- package/lib/typescript/src/internal/AgoraH265TranscoderInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/AgoraMediaBaseInternal.d.ts +8 -0
- package/lib/typescript/src/internal/AgoraMediaBaseInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/AgoraPipInternal.d.ts +21 -0
- package/lib/typescript/src/internal/AgoraPipInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/IAgoraRtcRenderView.d.ts +13 -0
- package/lib/typescript/src/internal/IAgoraRtcRenderView.d.ts.map +1 -0
- package/lib/typescript/src/internal/IrisApiEngine.d.ts +12 -0
- package/lib/typescript/src/internal/IrisApiEngine.d.ts.map +1 -0
- package/lib/typescript/src/internal/LocalSpatialAudioEngineInternal.d.ts +4 -0
- package/lib/typescript/src/internal/LocalSpatialAudioEngineInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/MediaEngineInternal.d.ts +23 -0
- package/lib/typescript/src/internal/MediaEngineInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/MediaPlayerInternal.d.ts +28 -0
- package/lib/typescript/src/internal/MediaPlayerInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/MediaRecorderInternal.d.ts +16 -0
- package/lib/typescript/src/internal/MediaRecorderInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/MusicContentCenterInternal.d.ts +31 -0
- package/lib/typescript/src/internal/MusicContentCenterInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/RtcEngineExInternal.d.ts +62 -0
- package/lib/typescript/src/internal/RtcEngineExInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/call.d.ts +5 -0
- package/lib/typescript/src/internal/call.d.ts.map +1 -0
- package/lib/typescript/src/internal/event.d.ts +58 -0
- package/lib/typescript/src/internal/event.d.ts.map +1 -0
- package/lib/typescript/src/specs/AgoraRtcSurfaceViewNativeComponent.d.ts +13 -0
- package/lib/typescript/src/specs/AgoraRtcSurfaceViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/AgoraRtcTextureViewNativeComponent.d.ts +11 -0
- package/lib/typescript/src/specs/AgoraRtcTextureViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/NativeAgoraRtcNg.d.ts +23 -0
- package/lib/typescript/src/specs/NativeAgoraRtcNg.d.ts.map +1 -0
- package/lib/typescript/src/specs/index.d.ts +3 -0
- package/lib/typescript/src/specs/index.d.ts.map +1 -0
- package/lib/typescript/src/ti/AgoraBase-ti.d.ts +8 -0
- package/lib/typescript/src/ti/AgoraBase-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/AgoraMediaBase-ti.d.ts +15 -0
- package/lib/typescript/src/ti/AgoraMediaBase-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/AgoraMediaPlayerTypes-ti.d.ts +7 -0
- package/lib/typescript/src/ti/AgoraMediaPlayerTypes-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/AgoraPip-ti.d.ts +8 -0
- package/lib/typescript/src/ti/AgoraPip-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraH265Transcoder-ti.d.ts +8 -0
- package/lib/typescript/src/ti/IAgoraH265Transcoder-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraLog-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAgoraLog-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraMediaEngine-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAgoraMediaEngine-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraMediaPlayer-ti.d.ts +8 -0
- package/lib/typescript/src/ti/IAgoraMediaPlayer-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraMediaPlayerSource-ti.d.ts +8 -0
- package/lib/typescript/src/ti/IAgoraMediaPlayerSource-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraMediaRecorder-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAgoraMediaRecorder-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraMediaStreamingSource-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAgoraMediaStreamingSource-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraMusicContentCenter-ti.d.ts +8 -0
- package/lib/typescript/src/ti/IAgoraMusicContentCenter-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraPip-ti.d.ts +8 -0
- package/lib/typescript/src/ti/IAgoraPip-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraRhythmPlayer-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAgoraRhythmPlayer-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraRtcEngine-ti.d.ts +10 -0
- package/lib/typescript/src/ti/IAgoraRtcEngine-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraRtcEngineEx-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAgoraRtcEngineEx-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraSpatialAudio-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAgoraSpatialAudio-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAudioDeviceManager-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAudioDeviceManager-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/Utils-ti.d.ts +7 -0
- package/lib/typescript/src/ti/Utils-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/index-ti.d.ts +7 -0
- package/lib/typescript/src/ti/index-ti.d.ts.map +1 -0
- package/package.json +175 -0
- package/react-native-agora.podspec +50 -0
- package/src/AgoraBase.ts +5941 -0
- package/src/AgoraMediaBase.ts +1814 -0
- package/src/AgoraMediaPlayerTypes.ts +467 -0
- package/src/AgoraRtcRenderView.tsx +72 -0
- package/src/IAgoraH265Transcoder.ts +73 -0
- package/src/IAgoraLog.ts +91 -0
- package/src/IAgoraMediaEngine.ts +321 -0
- package/src/IAgoraMediaPlayer.ts +753 -0
- package/src/IAgoraMediaPlayerSource.ts +137 -0
- package/src/IAgoraMediaRecorder.ts +65 -0
- package/src/IAgoraMediaStreamingSource.ts +81 -0
- package/src/IAgoraMusicContentCenter.ts +678 -0
- package/src/IAgoraPip.ts +295 -0
- package/src/IAgoraRhythmPlayer.ts +67 -0
- package/src/IAgoraRtcEngine.ts +8100 -0
- package/src/IAgoraRtcEngineEx.ts +1108 -0
- package/src/IAgoraSpatialAudio.ts +248 -0
- package/src/IAudioDeviceManager.ts +185 -0
- package/src/Utils.ts +35 -0
- package/src/extension/AgoraBaseExtension.ts +1 -0
- package/src/extension/AgoraMediaBaseExtension.ts +1 -0
- package/src/extension/AgoraMediaPlayerTypesExtension.ts +1 -0
- package/src/extension/IAgoraH265TranscoderExtension.ts +39 -0
- package/src/extension/IAgoraLogExtension.ts +1 -0
- package/src/extension/IAgoraMediaEngineExtension.ts +62 -0
- package/src/extension/IAgoraMediaPlayerExtension.ts +64 -0
- package/src/extension/IAgoraMediaPlayerSourceExtension.ts +1 -0
- package/src/extension/IAgoraMediaRecorderExtension.ts +59 -0
- package/src/extension/IAgoraMusicContentCenterExtension.ts +34 -0
- package/src/extension/IAgoraPipExtension.ts +37 -0
- package/src/extension/IAgoraRhythmPlayerExtension.ts +1 -0
- package/src/extension/IAgoraRtcEngineExExtension.ts +1 -0
- package/src/extension/IAgoraRtcEngineExtension.ts +72 -0
- package/src/extension/IAgoraSpatialAudioExtension.ts +1 -0
- package/src/extension/IAudioDeviceManagerExtension.ts +1 -0
- package/src/impl/AgoraBaseImpl.ts +39 -0
- package/src/impl/AgoraMediaBaseImpl.ts +238 -0
- package/src/impl/IAgoraH265TranscoderImpl.ts +152 -0
- package/src/impl/IAgoraMediaEngineImpl.ts +490 -0
- package/src/impl/IAgoraMediaPlayerImpl.ts +1180 -0
- package/src/impl/IAgoraMediaPlayerSourceImpl.ts +94 -0
- package/src/impl/IAgoraMediaRecorderImpl.ts +58 -0
- package/src/impl/IAgoraMusicContentCenterImpl.ts +561 -0
- package/src/impl/IAgoraRtcEngineExImpl.ts +1911 -0
- package/src/impl/IAgoraRtcEngineImpl.ts +7737 -0
- package/src/impl/IAgoraSpatialAudioImpl.ts +494 -0
- package/src/impl/IAudioDeviceManagerImpl.ts +442 -0
- package/src/index.ts +53 -0
- package/src/internal/AgoraH265TranscoderInternal.ts +93 -0
- package/src/internal/AgoraMediaBaseInternal.ts +15 -0
- package/src/internal/AgoraPipInternal.ts +136 -0
- package/src/internal/IAgoraRtcRenderView.tsx +79 -0
- package/src/internal/IrisApiEngine.ts +337 -0
- package/src/internal/LocalSpatialAudioEngineInternal.ts +3 -0
- package/src/internal/MediaEngineInternal.ts +187 -0
- package/src/internal/MediaPlayerInternal.ts +282 -0
- package/src/internal/MediaRecorderInternal.ts +96 -0
- package/src/internal/MusicContentCenterInternal.ts +204 -0
- package/src/internal/RtcEngineExInternal.ts +443 -0
- package/src/internal/call.ts +140 -0
- package/src/internal/event.ts +100 -0
- package/src/specs/AgoraRtcSurfaceViewNativeComponent.ts +16 -0
- package/src/specs/AgoraRtcTextureViewNativeComponent.ts +14 -0
- package/src/specs/NativeAgoraRtcNg.ts +40 -0
- package/src/specs/index.ts +26 -0
- package/src/ti/AgoraBase-ti.ts +16 -0
- package/src/ti/AgoraMediaBase-ti.ts +58 -0
- package/src/ti/AgoraMediaPlayerTypes-ti.ts +11 -0
- package/src/ti/AgoraPip-ti.ts +14 -0
- package/src/ti/IAgoraH265Transcoder-ti.ts +16 -0
- package/src/ti/IAgoraLog-ti.ts +11 -0
- package/src/ti/IAgoraMediaEngine-ti.ts +11 -0
- package/src/ti/IAgoraMediaPlayer-ti.ts +14 -0
- package/src/ti/IAgoraMediaPlayerSource-ti.ts +26 -0
- package/src/ti/IAgoraMediaRecorder-ti.ts +11 -0
- package/src/ti/IAgoraMediaStreamingSource-ti.ts +11 -0
- package/src/ti/IAgoraMusicContentCenter-ti.ts +18 -0
- package/src/ti/IAgoraPip-ti.ts +14 -0
- package/src/ti/IAgoraRhythmPlayer-ti.ts +11 -0
- package/src/ti/IAgoraRtcEngine-ti.ts +122 -0
- package/src/ti/IAgoraRtcEngineEx-ti.ts +11 -0
- package/src/ti/IAgoraSpatialAudio-ti.ts +11 -0
- package/src/ti/IAudioDeviceManager-ti.ts +11 -0
- package/src/ti/Utils-ti.ts +11 -0
- package/src/ti/index-ti.ts +11 -0
|
@@ -0,0 +1,373 @@
|
|
|
1
|
+
import { callIrisApi } from '../internal/call';
|
|
2
|
+
|
|
3
|
+
// @ts-ignore
|
|
4
|
+
export class IAudioDeviceManagerImpl {
|
|
5
|
+
enumeratePlaybackDevices() {
|
|
6
|
+
const apiType = this.getApiTypeFromEnumeratePlaybackDevices();
|
|
7
|
+
const jsonParams = {};
|
|
8
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
9
|
+
return jsonResults.result;
|
|
10
|
+
}
|
|
11
|
+
getApiTypeFromEnumeratePlaybackDevices() {
|
|
12
|
+
return 'AudioDeviceManager_enumeratePlaybackDevices';
|
|
13
|
+
}
|
|
14
|
+
enumerateRecordingDevices() {
|
|
15
|
+
const apiType = this.getApiTypeFromEnumerateRecordingDevices();
|
|
16
|
+
const jsonParams = {};
|
|
17
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
18
|
+
return jsonResults.result;
|
|
19
|
+
}
|
|
20
|
+
getApiTypeFromEnumerateRecordingDevices() {
|
|
21
|
+
return 'AudioDeviceManager_enumerateRecordingDevices';
|
|
22
|
+
}
|
|
23
|
+
setPlaybackDevice(deviceId) {
|
|
24
|
+
const apiType = this.getApiTypeFromSetPlaybackDevice(deviceId);
|
|
25
|
+
const jsonParams = {
|
|
26
|
+
deviceId: deviceId,
|
|
27
|
+
toJSON: () => {
|
|
28
|
+
return {
|
|
29
|
+
deviceId: deviceId
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
34
|
+
return jsonResults.result;
|
|
35
|
+
}
|
|
36
|
+
getApiTypeFromSetPlaybackDevice(deviceId) {
|
|
37
|
+
return 'AudioDeviceManager_setPlaybackDevice_4ad5f6e';
|
|
38
|
+
}
|
|
39
|
+
getPlaybackDevice() {
|
|
40
|
+
const apiType = this.getApiTypeFromGetPlaybackDevice();
|
|
41
|
+
const jsonParams = {};
|
|
42
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
43
|
+
const deviceId = jsonResults.deviceId;
|
|
44
|
+
return deviceId;
|
|
45
|
+
}
|
|
46
|
+
getApiTypeFromGetPlaybackDevice() {
|
|
47
|
+
return 'AudioDeviceManager_getPlaybackDevice_73b9872';
|
|
48
|
+
}
|
|
49
|
+
getPlaybackDeviceInfo() {
|
|
50
|
+
const apiType = this.getApiTypeFromGetPlaybackDeviceInfo();
|
|
51
|
+
const jsonParams = {};
|
|
52
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
53
|
+
return jsonResults.result;
|
|
54
|
+
}
|
|
55
|
+
getApiTypeFromGetPlaybackDeviceInfo() {
|
|
56
|
+
return 'AudioDeviceManager_getPlaybackDeviceInfo_ed3a96d';
|
|
57
|
+
}
|
|
58
|
+
setPlaybackDeviceVolume(volume) {
|
|
59
|
+
const apiType = this.getApiTypeFromSetPlaybackDeviceVolume(volume);
|
|
60
|
+
const jsonParams = {
|
|
61
|
+
volume: volume,
|
|
62
|
+
toJSON: () => {
|
|
63
|
+
return {
|
|
64
|
+
volume: volume
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
};
|
|
68
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
69
|
+
return jsonResults.result;
|
|
70
|
+
}
|
|
71
|
+
getApiTypeFromSetPlaybackDeviceVolume(volume) {
|
|
72
|
+
return 'AudioDeviceManager_setPlaybackDeviceVolume_46f8ab7';
|
|
73
|
+
}
|
|
74
|
+
getPlaybackDeviceVolume() {
|
|
75
|
+
const apiType = this.getApiTypeFromGetPlaybackDeviceVolume();
|
|
76
|
+
const jsonParams = {};
|
|
77
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
78
|
+
const volume = jsonResults.volume;
|
|
79
|
+
return volume;
|
|
80
|
+
}
|
|
81
|
+
getApiTypeFromGetPlaybackDeviceVolume() {
|
|
82
|
+
return 'AudioDeviceManager_getPlaybackDeviceVolume_915cb25';
|
|
83
|
+
}
|
|
84
|
+
setRecordingDevice(deviceId) {
|
|
85
|
+
const apiType = this.getApiTypeFromSetRecordingDevice(deviceId);
|
|
86
|
+
const jsonParams = {
|
|
87
|
+
deviceId: deviceId,
|
|
88
|
+
toJSON: () => {
|
|
89
|
+
return {
|
|
90
|
+
deviceId: deviceId
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
};
|
|
94
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
95
|
+
return jsonResults.result;
|
|
96
|
+
}
|
|
97
|
+
getApiTypeFromSetRecordingDevice(deviceId) {
|
|
98
|
+
return 'AudioDeviceManager_setRecordingDevice_4ad5f6e';
|
|
99
|
+
}
|
|
100
|
+
getRecordingDevice() {
|
|
101
|
+
const apiType = this.getApiTypeFromGetRecordingDevice();
|
|
102
|
+
const jsonParams = {};
|
|
103
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
104
|
+
const deviceId = jsonResults.deviceId;
|
|
105
|
+
return deviceId;
|
|
106
|
+
}
|
|
107
|
+
getApiTypeFromGetRecordingDevice() {
|
|
108
|
+
return 'AudioDeviceManager_getRecordingDevice_73b9872';
|
|
109
|
+
}
|
|
110
|
+
getRecordingDeviceInfo() {
|
|
111
|
+
const apiType = this.getApiTypeFromGetRecordingDeviceInfo();
|
|
112
|
+
const jsonParams = {};
|
|
113
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
114
|
+
return jsonResults.result;
|
|
115
|
+
}
|
|
116
|
+
getApiTypeFromGetRecordingDeviceInfo() {
|
|
117
|
+
return 'AudioDeviceManager_getRecordingDeviceInfo_ed3a96d';
|
|
118
|
+
}
|
|
119
|
+
setRecordingDeviceVolume(volume) {
|
|
120
|
+
const apiType = this.getApiTypeFromSetRecordingDeviceVolume(volume);
|
|
121
|
+
const jsonParams = {
|
|
122
|
+
volume: volume,
|
|
123
|
+
toJSON: () => {
|
|
124
|
+
return {
|
|
125
|
+
volume: volume
|
|
126
|
+
};
|
|
127
|
+
}
|
|
128
|
+
};
|
|
129
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
130
|
+
return jsonResults.result;
|
|
131
|
+
}
|
|
132
|
+
getApiTypeFromSetRecordingDeviceVolume(volume) {
|
|
133
|
+
return 'AudioDeviceManager_setRecordingDeviceVolume_46f8ab7';
|
|
134
|
+
}
|
|
135
|
+
getRecordingDeviceVolume() {
|
|
136
|
+
const apiType = this.getApiTypeFromGetRecordingDeviceVolume();
|
|
137
|
+
const jsonParams = {};
|
|
138
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
139
|
+
const volume = jsonResults.volume;
|
|
140
|
+
return volume;
|
|
141
|
+
}
|
|
142
|
+
getApiTypeFromGetRecordingDeviceVolume() {
|
|
143
|
+
return 'AudioDeviceManager_getRecordingDeviceVolume_915cb25';
|
|
144
|
+
}
|
|
145
|
+
setLoopbackDevice(deviceId) {
|
|
146
|
+
const apiType = this.getApiTypeFromSetLoopbackDevice(deviceId);
|
|
147
|
+
const jsonParams = {
|
|
148
|
+
deviceId: deviceId,
|
|
149
|
+
toJSON: () => {
|
|
150
|
+
return {
|
|
151
|
+
deviceId: deviceId
|
|
152
|
+
};
|
|
153
|
+
}
|
|
154
|
+
};
|
|
155
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
156
|
+
return jsonResults.result;
|
|
157
|
+
}
|
|
158
|
+
getApiTypeFromSetLoopbackDevice(deviceId) {
|
|
159
|
+
return 'AudioDeviceManager_setLoopbackDevice_4ad5f6e';
|
|
160
|
+
}
|
|
161
|
+
getLoopbackDevice() {
|
|
162
|
+
const apiType = this.getApiTypeFromGetLoopbackDevice();
|
|
163
|
+
const jsonParams = {};
|
|
164
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
165
|
+
const deviceId = jsonResults.deviceId;
|
|
166
|
+
return deviceId;
|
|
167
|
+
}
|
|
168
|
+
getApiTypeFromGetLoopbackDevice() {
|
|
169
|
+
return 'AudioDeviceManager_getLoopbackDevice_73b9872';
|
|
170
|
+
}
|
|
171
|
+
setPlaybackDeviceMute(mute) {
|
|
172
|
+
const apiType = this.getApiTypeFromSetPlaybackDeviceMute(mute);
|
|
173
|
+
const jsonParams = {
|
|
174
|
+
mute: mute,
|
|
175
|
+
toJSON: () => {
|
|
176
|
+
return {
|
|
177
|
+
mute: mute
|
|
178
|
+
};
|
|
179
|
+
}
|
|
180
|
+
};
|
|
181
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
182
|
+
return jsonResults.result;
|
|
183
|
+
}
|
|
184
|
+
getApiTypeFromSetPlaybackDeviceMute(mute) {
|
|
185
|
+
return 'AudioDeviceManager_setPlaybackDeviceMute_5039d15';
|
|
186
|
+
}
|
|
187
|
+
getPlaybackDeviceMute() {
|
|
188
|
+
const apiType = this.getApiTypeFromGetPlaybackDeviceMute();
|
|
189
|
+
const jsonParams = {};
|
|
190
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
191
|
+
const mute = jsonResults.mute;
|
|
192
|
+
return mute;
|
|
193
|
+
}
|
|
194
|
+
getApiTypeFromGetPlaybackDeviceMute() {
|
|
195
|
+
return 'AudioDeviceManager_getPlaybackDeviceMute_d942327';
|
|
196
|
+
}
|
|
197
|
+
setRecordingDeviceMute(mute) {
|
|
198
|
+
const apiType = this.getApiTypeFromSetRecordingDeviceMute(mute);
|
|
199
|
+
const jsonParams = {
|
|
200
|
+
mute: mute,
|
|
201
|
+
toJSON: () => {
|
|
202
|
+
return {
|
|
203
|
+
mute: mute
|
|
204
|
+
};
|
|
205
|
+
}
|
|
206
|
+
};
|
|
207
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
208
|
+
return jsonResults.result;
|
|
209
|
+
}
|
|
210
|
+
getApiTypeFromSetRecordingDeviceMute(mute) {
|
|
211
|
+
return 'AudioDeviceManager_setRecordingDeviceMute_5039d15';
|
|
212
|
+
}
|
|
213
|
+
getRecordingDeviceMute() {
|
|
214
|
+
const apiType = this.getApiTypeFromGetRecordingDeviceMute();
|
|
215
|
+
const jsonParams = {};
|
|
216
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
217
|
+
const mute = jsonResults.mute;
|
|
218
|
+
return mute;
|
|
219
|
+
}
|
|
220
|
+
getApiTypeFromGetRecordingDeviceMute() {
|
|
221
|
+
return 'AudioDeviceManager_getRecordingDeviceMute_d942327';
|
|
222
|
+
}
|
|
223
|
+
startPlaybackDeviceTest(testAudioFilePath) {
|
|
224
|
+
const apiType = this.getApiTypeFromStartPlaybackDeviceTest(testAudioFilePath);
|
|
225
|
+
const jsonParams = {
|
|
226
|
+
testAudioFilePath: testAudioFilePath,
|
|
227
|
+
toJSON: () => {
|
|
228
|
+
return {
|
|
229
|
+
testAudioFilePath: testAudioFilePath
|
|
230
|
+
};
|
|
231
|
+
}
|
|
232
|
+
};
|
|
233
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
234
|
+
return jsonResults.result;
|
|
235
|
+
}
|
|
236
|
+
getApiTypeFromStartPlaybackDeviceTest(testAudioFilePath) {
|
|
237
|
+
return 'AudioDeviceManager_startPlaybackDeviceTest_3a2037f';
|
|
238
|
+
}
|
|
239
|
+
stopPlaybackDeviceTest() {
|
|
240
|
+
const apiType = this.getApiTypeFromStopPlaybackDeviceTest();
|
|
241
|
+
const jsonParams = {};
|
|
242
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
243
|
+
return jsonResults.result;
|
|
244
|
+
}
|
|
245
|
+
getApiTypeFromStopPlaybackDeviceTest() {
|
|
246
|
+
return 'AudioDeviceManager_stopPlaybackDeviceTest';
|
|
247
|
+
}
|
|
248
|
+
startRecordingDeviceTest(indicationInterval) {
|
|
249
|
+
const apiType = this.getApiTypeFromStartRecordingDeviceTest(indicationInterval);
|
|
250
|
+
const jsonParams = {
|
|
251
|
+
indicationInterval: indicationInterval,
|
|
252
|
+
toJSON: () => {
|
|
253
|
+
return {
|
|
254
|
+
indicationInterval: indicationInterval
|
|
255
|
+
};
|
|
256
|
+
}
|
|
257
|
+
};
|
|
258
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
259
|
+
return jsonResults.result;
|
|
260
|
+
}
|
|
261
|
+
getApiTypeFromStartRecordingDeviceTest(indicationInterval) {
|
|
262
|
+
return 'AudioDeviceManager_startRecordingDeviceTest_46f8ab7';
|
|
263
|
+
}
|
|
264
|
+
stopRecordingDeviceTest() {
|
|
265
|
+
const apiType = this.getApiTypeFromStopRecordingDeviceTest();
|
|
266
|
+
const jsonParams = {};
|
|
267
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
268
|
+
return jsonResults.result;
|
|
269
|
+
}
|
|
270
|
+
getApiTypeFromStopRecordingDeviceTest() {
|
|
271
|
+
return 'AudioDeviceManager_stopRecordingDeviceTest';
|
|
272
|
+
}
|
|
273
|
+
startAudioDeviceLoopbackTest(indicationInterval) {
|
|
274
|
+
const apiType = this.getApiTypeFromStartAudioDeviceLoopbackTest(indicationInterval);
|
|
275
|
+
const jsonParams = {
|
|
276
|
+
indicationInterval: indicationInterval,
|
|
277
|
+
toJSON: () => {
|
|
278
|
+
return {
|
|
279
|
+
indicationInterval: indicationInterval
|
|
280
|
+
};
|
|
281
|
+
}
|
|
282
|
+
};
|
|
283
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
284
|
+
return jsonResults.result;
|
|
285
|
+
}
|
|
286
|
+
getApiTypeFromStartAudioDeviceLoopbackTest(indicationInterval) {
|
|
287
|
+
return 'AudioDeviceManager_startAudioDeviceLoopbackTest_46f8ab7';
|
|
288
|
+
}
|
|
289
|
+
stopAudioDeviceLoopbackTest() {
|
|
290
|
+
const apiType = this.getApiTypeFromStopAudioDeviceLoopbackTest();
|
|
291
|
+
const jsonParams = {};
|
|
292
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
293
|
+
return jsonResults.result;
|
|
294
|
+
}
|
|
295
|
+
getApiTypeFromStopAudioDeviceLoopbackTest() {
|
|
296
|
+
return 'AudioDeviceManager_stopAudioDeviceLoopbackTest';
|
|
297
|
+
}
|
|
298
|
+
followSystemPlaybackDevice(enable) {
|
|
299
|
+
const apiType = this.getApiTypeFromFollowSystemPlaybackDevice(enable);
|
|
300
|
+
const jsonParams = {
|
|
301
|
+
enable: enable,
|
|
302
|
+
toJSON: () => {
|
|
303
|
+
return {
|
|
304
|
+
enable: enable
|
|
305
|
+
};
|
|
306
|
+
}
|
|
307
|
+
};
|
|
308
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
309
|
+
return jsonResults.result;
|
|
310
|
+
}
|
|
311
|
+
getApiTypeFromFollowSystemPlaybackDevice(enable) {
|
|
312
|
+
return 'AudioDeviceManager_followSystemPlaybackDevice_5039d15';
|
|
313
|
+
}
|
|
314
|
+
followSystemRecordingDevice(enable) {
|
|
315
|
+
const apiType = this.getApiTypeFromFollowSystemRecordingDevice(enable);
|
|
316
|
+
const jsonParams = {
|
|
317
|
+
enable: enable,
|
|
318
|
+
toJSON: () => {
|
|
319
|
+
return {
|
|
320
|
+
enable: enable
|
|
321
|
+
};
|
|
322
|
+
}
|
|
323
|
+
};
|
|
324
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
325
|
+
return jsonResults.result;
|
|
326
|
+
}
|
|
327
|
+
getApiTypeFromFollowSystemRecordingDevice(enable) {
|
|
328
|
+
return 'AudioDeviceManager_followSystemRecordingDevice_5039d15';
|
|
329
|
+
}
|
|
330
|
+
followSystemLoopbackDevice(enable) {
|
|
331
|
+
const apiType = this.getApiTypeFromFollowSystemLoopbackDevice(enable);
|
|
332
|
+
const jsonParams = {
|
|
333
|
+
enable: enable,
|
|
334
|
+
toJSON: () => {
|
|
335
|
+
return {
|
|
336
|
+
enable: enable
|
|
337
|
+
};
|
|
338
|
+
}
|
|
339
|
+
};
|
|
340
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
341
|
+
return jsonResults.result;
|
|
342
|
+
}
|
|
343
|
+
getApiTypeFromFollowSystemLoopbackDevice(enable) {
|
|
344
|
+
return 'AudioDeviceManager_followSystemLoopbackDevice_5039d15';
|
|
345
|
+
}
|
|
346
|
+
release() {
|
|
347
|
+
const apiType = this.getApiTypeFromRelease();
|
|
348
|
+
const jsonParams = {};
|
|
349
|
+
callIrisApi.call(this, apiType, jsonParams);
|
|
350
|
+
}
|
|
351
|
+
getApiTypeFromRelease() {
|
|
352
|
+
return 'AudioDeviceManager_release';
|
|
353
|
+
}
|
|
354
|
+
getPlaybackDefaultDevice() {
|
|
355
|
+
const apiType = this.getApiTypeFromGetPlaybackDefaultDevice();
|
|
356
|
+
const jsonParams = {};
|
|
357
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
358
|
+
return jsonResults.result;
|
|
359
|
+
}
|
|
360
|
+
getApiTypeFromGetPlaybackDefaultDevice() {
|
|
361
|
+
return 'AudioDeviceManager_getPlaybackDefaultDevice';
|
|
362
|
+
}
|
|
363
|
+
getRecordingDefaultDevice() {
|
|
364
|
+
const apiType = this.getApiTypeFromGetRecordingDefaultDevice();
|
|
365
|
+
const jsonParams = {};
|
|
366
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
367
|
+
return jsonResults.result;
|
|
368
|
+
}
|
|
369
|
+
getApiTypeFromGetRecordingDefaultDevice() {
|
|
370
|
+
return 'AudioDeviceManager_getRecordingDefaultDevice';
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
//# sourceMappingURL=IAudioDeviceManagerImpl.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["callIrisApi","IAudioDeviceManagerImpl","enumeratePlaybackDevices","apiType","getApiTypeFromEnumeratePlaybackDevices","jsonParams","jsonResults","call","result","enumerateRecordingDevices","getApiTypeFromEnumerateRecordingDevices","setPlaybackDevice","deviceId","getApiTypeFromSetPlaybackDevice","toJSON","getPlaybackDevice","getApiTypeFromGetPlaybackDevice","getPlaybackDeviceInfo","getApiTypeFromGetPlaybackDeviceInfo","setPlaybackDeviceVolume","volume","getApiTypeFromSetPlaybackDeviceVolume","getPlaybackDeviceVolume","getApiTypeFromGetPlaybackDeviceVolume","setRecordingDevice","getApiTypeFromSetRecordingDevice","getRecordingDevice","getApiTypeFromGetRecordingDevice","getRecordingDeviceInfo","getApiTypeFromGetRecordingDeviceInfo","setRecordingDeviceVolume","getApiTypeFromSetRecordingDeviceVolume","getRecordingDeviceVolume","getApiTypeFromGetRecordingDeviceVolume","setLoopbackDevice","getApiTypeFromSetLoopbackDevice","getLoopbackDevice","getApiTypeFromGetLoopbackDevice","setPlaybackDeviceMute","mute","getApiTypeFromSetPlaybackDeviceMute","getPlaybackDeviceMute","getApiTypeFromGetPlaybackDeviceMute","setRecordingDeviceMute","getApiTypeFromSetRecordingDeviceMute","getRecordingDeviceMute","getApiTypeFromGetRecordingDeviceMute","startPlaybackDeviceTest","testAudioFilePath","getApiTypeFromStartPlaybackDeviceTest","stopPlaybackDeviceTest","getApiTypeFromStopPlaybackDeviceTest","startRecordingDeviceTest","indicationInterval","getApiTypeFromStartRecordingDeviceTest","stopRecordingDeviceTest","getApiTypeFromStopRecordingDeviceTest","startAudioDeviceLoopbackTest","getApiTypeFromStartAudioDeviceLoopbackTest","stopAudioDeviceLoopbackTest","getApiTypeFromStopAudioDeviceLoopbackTest","followSystemPlaybackDevice","enable","getApiTypeFromFollowSystemPlaybackDevice","followSystemRecordingDevice","getApiTypeFromFollowSystemRecordingDevice","followSystemLoopbackDevice","getApiTypeFromFollowSystemLoopbackDevice","release","getApiTypeFromRelease","getPlaybackDefaultDevice","getApiTypeFromGetPlaybackDefaultDevice","getRecordingDefaultDevice","getApiTypeFromGetRecordingDefaultDevice"],"sourceRoot":"../../../src","sources":["impl/IAudioDeviceManagerImpl.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { NativeEventEmitter } from 'react-native';
|
|
2
|
+
import { handleEvent } from './internal/IrisApiEngine';
|
|
3
|
+
import { RtcEngineExInternal } from './internal/RtcEngineExInternal';
|
|
4
|
+
export const showRPSystemBroadcastPickerView = AgoraRtcNg.showRPSystemBroadcastPickerView;
|
|
5
|
+
export * from './AgoraBase';
|
|
6
|
+
export * from './AgoraMediaBase';
|
|
7
|
+
export * from './AgoraMediaPlayerTypes';
|
|
8
|
+
export * from './IAgoraLog';
|
|
9
|
+
export * from './IAgoraMediaEngine';
|
|
10
|
+
export * from './IAgoraMediaPlayer';
|
|
11
|
+
export * from './IAgoraMediaPlayerSource';
|
|
12
|
+
export * from './IAgoraMediaRecorder';
|
|
13
|
+
export * from './IAgoraMusicContentCenter';
|
|
14
|
+
export * from './IAgoraRhythmPlayer';
|
|
15
|
+
export * from './IAgoraRtcEngine';
|
|
16
|
+
export * from './IAgoraRtcEngineEx';
|
|
17
|
+
export * from './IAgoraSpatialAudio';
|
|
18
|
+
export * from './IAudioDeviceManager';
|
|
19
|
+
export * from './AgoraRtcRenderView';
|
|
20
|
+
export * from './IAgoraPip';
|
|
21
|
+
export { isDebuggable, setDebuggable } from './Utils';
|
|
22
|
+
export { callIrisApi } from './internal/call';
|
|
23
|
+
const AgoraEventEmitter = new NativeEventEmitter(AgoraRtcNg);
|
|
24
|
+
AgoraEventEmitter.addListener('AgoraRtcNg:onEvent', handleEvent);
|
|
25
|
+
const instance = new RtcEngineExInternal();
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* @ignore
|
|
29
|
+
*/
|
|
30
|
+
export function createAgoraRtcEngine() {
|
|
31
|
+
return instance;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* @ignore
|
|
36
|
+
*/
|
|
37
|
+
export function getMediaPlayerCacheManager() {
|
|
38
|
+
return new IMediaPlayerCacheManagerImpl();
|
|
39
|
+
}
|
|
40
|
+
export default createAgoraRtcEngine;
|
|
41
|
+
import AgoraRtcNg from './specs';
|
|
42
|
+
import { IMediaPlayerCacheManagerImpl } from './impl/IAgoraMediaPlayerImpl';
|
|
43
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["NativeEventEmitter","handleEvent","RtcEngineExInternal","showRPSystemBroadcastPickerView","AgoraRtcNg","isDebuggable","setDebuggable","callIrisApi","AgoraEventEmitter","addListener","instance","createAgoraRtcEngine","getMediaPlayerCacheManager","IMediaPlayerCacheManagerImpl"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":"AAAA,SAASA,kBAAkB,QAAQ,cAAc;AAIjD,SAASC,WAAW,QAAQ,0BAA0B;AACtD,SAASC,mBAAmB,QAAQ,gCAAgC;AAEpE,OAAO,MAAMC,+BAA+B,GAC1CC,UAAU,CAACD,+BAA+B;AAE5C,cAAc,aAAa;AAC3B,cAAc,kBAAkB;AAChC,cAAc,yBAAyB;AACvC,cAAc,aAAa;AAC3B,cAAc,qBAAqB;AACnC,cAAc,qBAAqB;AACnC,cAAc,2BAA2B;AACzC,cAAc,uBAAuB;AACrC,cAAc,4BAA4B;AAC1C,cAAc,sBAAsB;AACpC,cAAc,mBAAmB;AACjC,cAAc,qBAAqB;AACnC,cAAc,sBAAsB;AACpC,cAAc,uBAAuB;AACrC,cAAc,sBAAsB;AACpC,cAAc,aAAa;AAC3B,SAASE,YAAY,EAAEC,aAAa,QAAQ,SAAS;AACrD,SAASC,WAAW,QAAQ,iBAAiB;AAE7C,MAAMC,iBAAiB,GAAG,IAAIR,kBAAkB,CAACI,UAAU,CAAC;AAC5DI,iBAAiB,CAACC,WAAW,CAAC,oBAAoB,EAAER,WAAW,CAAC;AAEhE,MAAMS,QAAQ,GAAG,IAAIR,mBAAmB,CAAC,CAAC;;AAE1C;AACA;AACA;AACA,OAAO,SAASS,oBAAoBA,CAAA,EAAe;EACjD,OAAOD,QAAQ;AACjB;;AAEA;AACA;AACA;AACA,OAAO,SAASE,0BAA0BA,CAAA,EAA6B;EACrE,OAAO,IAAIC,4BAA4B,CAAC,CAAC;AAC3C;AAEA,eAAeF,oBAAoB;AAEnC,OAAOP,UAAU,MAAM,SAAS;AAEhC,SAASS,4BAA4B,QAAQ,8BAA8B","ignoreList":[]}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { createCheckers } from 'ts-interface-checker';
|
|
2
|
+
import { IH265TranscoderImpl } from '../impl/IAgoraH265TranscoderImpl';
|
|
3
|
+
import IAgoraH265TranscoderTI from '../ti/IAgoraH265Transcoder-ti';
|
|
4
|
+
const checkers = createCheckers(IAgoraH265TranscoderTI);
|
|
5
|
+
import { DeviceEventEmitter, EVENT_TYPE } from './event';
|
|
6
|
+
export class H265TranscoderInternal extends IH265TranscoderImpl {
|
|
7
|
+
static _h265_transcoder_observers = [];
|
|
8
|
+
release() {
|
|
9
|
+
H265TranscoderInternal._h265_transcoder_observers = [];
|
|
10
|
+
this.removeAllListeners();
|
|
11
|
+
}
|
|
12
|
+
_addListenerPreCheck(eventType) {
|
|
13
|
+
var _checkers$IH265Transc;
|
|
14
|
+
if ((_checkers$IH265Transc = checkers.IH265TranscoderObserver) !== null && _checkers$IH265Transc !== void 0 && _checkers$IH265Transc.strictTest({
|
|
15
|
+
[eventType]: undefined
|
|
16
|
+
})) {
|
|
17
|
+
if (H265TranscoderInternal._h265_transcoder_observers.length === 0) {
|
|
18
|
+
this.registerTranscoderObserver({});
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
return true;
|
|
22
|
+
}
|
|
23
|
+
addListener(eventType, listener) {
|
|
24
|
+
this._addListenerPreCheck(eventType);
|
|
25
|
+
const callback = (eventProcessor, data) => {
|
|
26
|
+
if (eventProcessor.type(data) !== EVENT_TYPE.IAgoraH265Transcoder) {
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
eventProcessor.func.map(it => {
|
|
30
|
+
it({
|
|
31
|
+
[eventType]: listener
|
|
32
|
+
}, eventType, data);
|
|
33
|
+
});
|
|
34
|
+
};
|
|
35
|
+
// @ts-ignore
|
|
36
|
+
listener.agoraCallback = callback;
|
|
37
|
+
DeviceEventEmitter.addListener(eventType, callback);
|
|
38
|
+
}
|
|
39
|
+
removeListener(eventType, listener) {
|
|
40
|
+
DeviceEventEmitter.removeListener(eventType,
|
|
41
|
+
// @ts-ignore
|
|
42
|
+
(listener === null || listener === void 0 ? void 0 : listener.agoraCallback) ?? listener);
|
|
43
|
+
}
|
|
44
|
+
removeAllListeners(eventType) {
|
|
45
|
+
DeviceEventEmitter.removeAllListeners(eventType);
|
|
46
|
+
}
|
|
47
|
+
registerTranscoderObserver(observer) {
|
|
48
|
+
if (!H265TranscoderInternal._h265_transcoder_observers.find(value => value === observer)) {
|
|
49
|
+
H265TranscoderInternal._h265_transcoder_observers.push(observer);
|
|
50
|
+
}
|
|
51
|
+
return super.registerTranscoderObserver(observer);
|
|
52
|
+
}
|
|
53
|
+
unregisterTranscoderObserver(observer) {
|
|
54
|
+
H265TranscoderInternal._h265_transcoder_observers = H265TranscoderInternal._h265_transcoder_observers.filter(value => value !== observer);
|
|
55
|
+
return super.unregisterTranscoderObserver(observer);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
//# sourceMappingURL=AgoraH265TranscoderInternal.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["createCheckers","IH265TranscoderImpl","IAgoraH265TranscoderTI","checkers","DeviceEventEmitter","EVENT_TYPE","H265TranscoderInternal","_h265_transcoder_observers","release","removeAllListeners","_addListenerPreCheck","eventType","_checkers$IH265Transc","IH265TranscoderObserver","strictTest","undefined","length","registerTranscoderObserver","addListener","listener","callback","eventProcessor","data","type","IAgoraH265Transcoder","func","map","it","agoraCallback","removeListener","observer","find","value","push","unregisterTranscoderObserver","filter"],"sourceRoot":"../../../src","sources":["internal/AgoraH265TranscoderInternal.ts"],"mappings":"AAAA,SAASA,cAAc,QAAQ,sBAAsB;AAIrD,SAASC,mBAAmB,QAAQ,kCAAkC;AAEtE,OAAOC,sBAAsB,MAAM,+BAA+B;AAElE,MAAMC,QAAQ,GAAGH,cAAc,CAACE,sBAAsB,CAAC;AAEvD,SAASE,kBAAkB,EAAEC,UAAU,QAAwB,SAAS;AAExE,OAAO,MAAMC,sBAAsB,SAASL,mBAAmB,CAAC;EAC9D,OAAOM,0BAA0B,GAA8B,EAAE;EAEjEC,OAAOA,CAAA,EAAG;IACRF,sBAAsB,CAACC,0BAA0B,GAAG,EAAE;IACtD,IAAI,CAACE,kBAAkB,CAAC,CAAC;EAC3B;EAEAC,oBAAoBA,CAClBC,SAAoB,EACX;IAAA,IAAAC,qBAAA;IACT,KAAAA,qBAAA,GACET,QAAQ,CAACU,uBAAuB,cAAAD,qBAAA,eAAhCA,qBAAA,CAAkCE,UAAU,CAAC;MAC3C,CAACH,SAAS,GAAGI;IACf,CAAC,CAAC,EACF;MACA,IAAIT,sBAAsB,CAACC,0BAA0B,CAACS,MAAM,KAAK,CAAC,EAAE;QAClE,IAAI,CAACC,0BAA0B,CAAC,CAAC,CAAC,CAAC;MACrC;IACF;IACA,OAAO,IAAI;EACb;EAEAC,WAAWA,CACTP,SAAoB,EACpBQ,QAAyC,EACnC;IACN,IAAI,CAACT,oBAAoB,CAACC,SAAS,CAAC;IACpC,MAAMS,QAAQ,GAAGA,CAACC,cAAmC,EAAEC,IAAS,KAAK;MACnE,IAAID,cAAc,CAACE,IAAI,CAACD,IAAI,CAAC,KAAKjB,UAAU,CAACmB,oBAAoB,EAAE;QACjE;MACF;MACAH,cAAc,CAACI,IAAI,CAACC,GAAG,CAAEC,EAAE,IAAK;QAC9BA,EAAE,CAAC;UAAE,CAAChB,SAAS,GAAGQ;QAAS,CAAC,EAAER,SAAS,EAAEW,IAAI,CAAC;MAChD,CAAC,CAAC;IACJ,CAAC;IACD;IACAH,QAAQ,CAAES,aAAa,GAAGR,QAAQ;IAClChB,kBAAkB,CAACc,WAAW,CAACP,SAAS,EAAES,QAAQ,CAAC;EACrD;EAEAS,cAAcA,CACZlB,SAAoB,EACpBQ,QAA0C,EAC1C;IACAf,kBAAkB,CAACyB,cAAc,CAC/BlB,SAAS;IACT;IACA,CAAAQ,QAAQ,aAARA,QAAQ,uBAARA,QAAQ,CAAES,aAAa,KAAIT,QAC7B,CAAC;EACH;EAEAV,kBAAkBA,CAChBE,SAAqB,EACrB;IACAP,kBAAkB,CAACK,kBAAkB,CAACE,SAAS,CAAC;EAClD;EAESM,0BAA0BA,CACjCa,QAAiC,EACzB;IACR,IACE,CAACxB,sBAAsB,CAACC,0BAA0B,CAACwB,IAAI,CACpDC,KAAK,IAAKA,KAAK,KAAKF,QACvB,CAAC,EACD;MACAxB,sBAAsB,CAACC,0BAA0B,CAAC0B,IAAI,CAACH,QAAQ,CAAC;IAClE;IACA,OAAO,KAAK,CAACb,0BAA0B,CAACa,QAAQ,CAAC;EACnD;EAESI,4BAA4BA,CACnCJ,QAAiC,EACzB;IACRxB,sBAAsB,CAACC,0BAA0B,GAC/CD,sBAAsB,CAACC,0BAA0B,CAAC4B,MAAM,CACrDH,KAAK,IAAKA,KAAK,KAAKF,QACvB,CAAC;IACH,OAAO,KAAK,CAACI,4BAA4B,CAACJ,QAAQ,CAAC;EACrD;AACF","ignoreList":[]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IVideoFrameMetaInfoImpl } from '../impl/AgoraMediaBaseImpl';
|
|
2
|
+
export class VideoFrameMetaInfoInternal extends IVideoFrameMetaInfoImpl {
|
|
3
|
+
constructor(videoFrameMetaInfo) {
|
|
4
|
+
super();
|
|
5
|
+
this._videoFrameMetaInfo = videoFrameMetaInfo;
|
|
6
|
+
}
|
|
7
|
+
getMetaInfoStr(key) {
|
|
8
|
+
var _this$_videoFrameMeta;
|
|
9
|
+
// @ts-ignore
|
|
10
|
+
return (_this$_videoFrameMeta = this._videoFrameMetaInfo) === null || _this$_videoFrameMeta === void 0 ? void 0 : _this$_videoFrameMeta[key];
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AgoraMediaBaseInternal.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["IVideoFrameMetaInfoImpl","VideoFrameMetaInfoInternal","constructor","videoFrameMetaInfo","_videoFrameMetaInfo","getMetaInfoStr","key","_this$_videoFrameMeta"],"sourceRoot":"../../../src","sources":["internal/AgoraMediaBaseInternal.ts"],"mappings":"AACA,SAASA,uBAAuB,QAAQ,4BAA4B;AAEpE,OAAO,MAAMC,0BAA0B,SAASD,uBAAuB,CAAC;EAEtEE,WAAWA,CAACC,kBAAmD,EAAE;IAC/D,KAAK,CAAC,CAAC;IACP,IAAI,CAACC,mBAAmB,GAAGD,kBAAkB;EAC/C;EAESE,cAAcA,CAACC,GAAgB,EAAU;IAAA,IAAAC,qBAAA;IAChD;IACA,QAAAA,qBAAA,GAAO,IAAI,CAACH,mBAAmB,cAAAG,qBAAA,uBAAxBA,qBAAA,CAA2BD,GAAG,CAAC;EACxC;AACF","ignoreList":[]}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { createCheckers } from 'ts-interface-checker';
|
|
2
|
+
import AgoraRtcNg from '../specs';
|
|
3
|
+
import IAgoraPipTI from '../ti/IAgoraPip-ti';
|
|
4
|
+
import { DeviceEventEmitter, EVENT_TYPE } from './event';
|
|
5
|
+
const checkers = createCheckers(IAgoraPipTI);
|
|
6
|
+
export function processAgoraPipObserver(handler, event, jsonParams) {
|
|
7
|
+
switch (event) {
|
|
8
|
+
case 'onPipStateChanged':
|
|
9
|
+
if (handler.onPipStateChanged !== undefined) {
|
|
10
|
+
handler.onPipStateChanged(jsonParams.state, jsonParams.error);
|
|
11
|
+
}
|
|
12
|
+
break;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
export class AgoraPipInternal {
|
|
16
|
+
static _agora_pip_observers = [];
|
|
17
|
+
pipIsSupported() {
|
|
18
|
+
return AgoraRtcNg.pipIsSupported();
|
|
19
|
+
}
|
|
20
|
+
pipIsAutoEnterSupported() {
|
|
21
|
+
return AgoraRtcNg.pipIsAutoEnterSupported();
|
|
22
|
+
}
|
|
23
|
+
isPipActivated() {
|
|
24
|
+
return AgoraRtcNg.isPipActivated();
|
|
25
|
+
}
|
|
26
|
+
pipSetup(options) {
|
|
27
|
+
if (typeof options === 'object') {
|
|
28
|
+
return AgoraRtcNg.pipSetup(options);
|
|
29
|
+
} else {
|
|
30
|
+
return false;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
pipStart() {
|
|
34
|
+
return AgoraRtcNg.pipStart();
|
|
35
|
+
}
|
|
36
|
+
pipStop() {
|
|
37
|
+
AgoraRtcNg.pipStop();
|
|
38
|
+
}
|
|
39
|
+
pipDispose() {
|
|
40
|
+
AgoraRtcNg.pipDispose();
|
|
41
|
+
}
|
|
42
|
+
release() {
|
|
43
|
+
AgoraPipInternal._agora_pip_observers = [];
|
|
44
|
+
this.removeAllListeners();
|
|
45
|
+
this.pipDispose();
|
|
46
|
+
}
|
|
47
|
+
_addListenerPreCheck(eventType) {
|
|
48
|
+
var _checkers$AgoraPipSta;
|
|
49
|
+
if ((_checkers$AgoraPipSta = checkers.AgoraPipStateChangedObserver) !== null && _checkers$AgoraPipSta !== void 0 && _checkers$AgoraPipSta.strictTest({
|
|
50
|
+
[eventType]: undefined
|
|
51
|
+
})) {
|
|
52
|
+
if (AgoraPipInternal._agora_pip_observers.length === 0) {
|
|
53
|
+
console.error('Please call `registerPipObserver` before you want to receive event by `addListener`');
|
|
54
|
+
return false;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
return true;
|
|
58
|
+
}
|
|
59
|
+
addListener(eventType, listener) {
|
|
60
|
+
this._addListenerPreCheck(eventType);
|
|
61
|
+
const callback = (eventProcessor, data) => {
|
|
62
|
+
if (eventProcessor.type(data) !== EVENT_TYPE.IAgoraPip) {
|
|
63
|
+
return;
|
|
64
|
+
}
|
|
65
|
+
eventProcessor.func.map(it => {
|
|
66
|
+
it({
|
|
67
|
+
[eventType]: listener
|
|
68
|
+
}, eventType, data);
|
|
69
|
+
});
|
|
70
|
+
};
|
|
71
|
+
// @ts-ignore
|
|
72
|
+
listener.agoraCallback = callback;
|
|
73
|
+
DeviceEventEmitter.addListener(eventType, callback);
|
|
74
|
+
}
|
|
75
|
+
removeListener(eventType, listener) {
|
|
76
|
+
DeviceEventEmitter.removeListener(eventType,
|
|
77
|
+
// @ts-ignore
|
|
78
|
+
(listener === null || listener === void 0 ? void 0 : listener.agoraCallback) ?? listener);
|
|
79
|
+
}
|
|
80
|
+
removeAllListeners(eventType) {
|
|
81
|
+
DeviceEventEmitter.removeAllListeners(eventType);
|
|
82
|
+
}
|
|
83
|
+
registerPipStateChangedObserver(observer) {
|
|
84
|
+
if (!AgoraPipInternal._agora_pip_observers.find(value => value === observer)) {
|
|
85
|
+
AgoraPipInternal._agora_pip_observers.push(observer);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
unregisterPipStateChangedObserver(observer) {
|
|
89
|
+
AgoraPipInternal._agora_pip_observers = AgoraPipInternal._agora_pip_observers.filter(value => value !== observer);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
//# sourceMappingURL=AgoraPipInternal.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["createCheckers","AgoraRtcNg","IAgoraPipTI","DeviceEventEmitter","EVENT_TYPE","checkers","processAgoraPipObserver","handler","event","jsonParams","onPipStateChanged","undefined","state","error","AgoraPipInternal","_agora_pip_observers","pipIsSupported","pipIsAutoEnterSupported","isPipActivated","pipSetup","options","pipStart","pipStop","pipDispose","release","removeAllListeners","_addListenerPreCheck","eventType","_checkers$AgoraPipSta","AgoraPipStateChangedObserver","strictTest","length","console","addListener","listener","callback","eventProcessor","data","type","IAgoraPip","func","map","it","agoraCallback","removeListener","registerPipStateChangedObserver","observer","find","value","push","unregisterPipStateChangedObserver","filter"],"sourceRoot":"../../../src","sources":["internal/AgoraPipInternal.ts"],"mappings":"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","ignoreList":[]}
|