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,335 @@
|
|
|
1
|
+
import { SenderOptions } from '../AgoraBase';
|
|
2
|
+
import { ExternalVideoSourceType } from '../AgoraMediaBase';
|
|
3
|
+
import { callIrisApi } from '../internal/call';
|
|
4
|
+
|
|
5
|
+
// @ts-ignore
|
|
6
|
+
export class IMediaEngineImpl {
|
|
7
|
+
registerAudioFrameObserver(observer) {
|
|
8
|
+
const apiType = this.getApiTypeFromRegisterAudioFrameObserver(observer);
|
|
9
|
+
const jsonParams = {
|
|
10
|
+
observer: observer,
|
|
11
|
+
toJSON: () => {
|
|
12
|
+
return {};
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
16
|
+
return jsonResults.result;
|
|
17
|
+
}
|
|
18
|
+
getApiTypeFromRegisterAudioFrameObserver(observer) {
|
|
19
|
+
return 'MediaEngine_registerAudioFrameObserver_d873a64';
|
|
20
|
+
}
|
|
21
|
+
registerVideoFrameObserver(observer) {
|
|
22
|
+
const apiType = this.getApiTypeFromRegisterVideoFrameObserver(observer);
|
|
23
|
+
const jsonParams = {
|
|
24
|
+
observer: observer,
|
|
25
|
+
toJSON: () => {
|
|
26
|
+
return {};
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
30
|
+
return jsonResults.result;
|
|
31
|
+
}
|
|
32
|
+
getApiTypeFromRegisterVideoFrameObserver(observer) {
|
|
33
|
+
return 'MediaEngine_registerVideoFrameObserver_2cc0ef1';
|
|
34
|
+
}
|
|
35
|
+
registerVideoEncodedFrameObserver(observer) {
|
|
36
|
+
const apiType = this.getApiTypeFromRegisterVideoEncodedFrameObserver(observer);
|
|
37
|
+
const jsonParams = {
|
|
38
|
+
observer: observer,
|
|
39
|
+
toJSON: () => {
|
|
40
|
+
return {};
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
44
|
+
return jsonResults.result;
|
|
45
|
+
}
|
|
46
|
+
getApiTypeFromRegisterVideoEncodedFrameObserver(observer) {
|
|
47
|
+
return 'MediaEngine_registerVideoEncodedFrameObserver_d45d579';
|
|
48
|
+
}
|
|
49
|
+
registerFaceInfoObserver(observer) {
|
|
50
|
+
const apiType = this.getApiTypeFromRegisterFaceInfoObserver(observer);
|
|
51
|
+
const jsonParams = {
|
|
52
|
+
observer: observer,
|
|
53
|
+
toJSON: () => {
|
|
54
|
+
return {};
|
|
55
|
+
}
|
|
56
|
+
};
|
|
57
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
58
|
+
return jsonResults.result;
|
|
59
|
+
}
|
|
60
|
+
getApiTypeFromRegisterFaceInfoObserver(observer) {
|
|
61
|
+
return 'MediaEngine_registerFaceInfoObserver_0303ed6';
|
|
62
|
+
}
|
|
63
|
+
pushAudioFrame(frame, trackId = 0) {
|
|
64
|
+
const apiType = this.getApiTypeFromPushAudioFrame(frame, trackId);
|
|
65
|
+
const jsonParams = {
|
|
66
|
+
frame: frame,
|
|
67
|
+
trackId: trackId,
|
|
68
|
+
toJSON: () => {
|
|
69
|
+
return {
|
|
70
|
+
frame: frame,
|
|
71
|
+
trackId: trackId
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
76
|
+
return jsonResults.result;
|
|
77
|
+
}
|
|
78
|
+
getApiTypeFromPushAudioFrame(frame, trackId = 0) {
|
|
79
|
+
return 'MediaEngine_pushAudioFrame_c71f4ab';
|
|
80
|
+
}
|
|
81
|
+
pullAudioFrame(frame) {
|
|
82
|
+
const apiType = this.getApiTypeFromPullAudioFrame(frame);
|
|
83
|
+
const jsonParams = {
|
|
84
|
+
frame: frame,
|
|
85
|
+
toJSON: () => {
|
|
86
|
+
return {
|
|
87
|
+
frame: frame
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
};
|
|
91
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
92
|
+
return jsonResults.result;
|
|
93
|
+
}
|
|
94
|
+
getApiTypeFromPullAudioFrame(frame) {
|
|
95
|
+
return 'MediaEngine_pullAudioFrame_2c74a9c';
|
|
96
|
+
}
|
|
97
|
+
setExternalVideoSource(enabled, useTexture, sourceType = ExternalVideoSourceType.VideoFrame, encodedVideoOption = new SenderOptions()) {
|
|
98
|
+
const apiType = this.getApiTypeFromSetExternalVideoSource(enabled, useTexture, sourceType, encodedVideoOption);
|
|
99
|
+
const jsonParams = {
|
|
100
|
+
enabled: enabled,
|
|
101
|
+
useTexture: useTexture,
|
|
102
|
+
sourceType: sourceType,
|
|
103
|
+
encodedVideoOption: encodedVideoOption,
|
|
104
|
+
toJSON: () => {
|
|
105
|
+
return {
|
|
106
|
+
enabled: enabled,
|
|
107
|
+
useTexture: useTexture,
|
|
108
|
+
sourceType: sourceType,
|
|
109
|
+
encodedVideoOption: encodedVideoOption
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
};
|
|
113
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
114
|
+
return jsonResults.result;
|
|
115
|
+
}
|
|
116
|
+
getApiTypeFromSetExternalVideoSource(enabled, useTexture, sourceType = ExternalVideoSourceType.VideoFrame, encodedVideoOption = new SenderOptions()) {
|
|
117
|
+
return 'MediaEngine_setExternalVideoSource_fff99b6';
|
|
118
|
+
}
|
|
119
|
+
setExternalRemoteEglContext(eglContext) {
|
|
120
|
+
const apiType = this.getApiTypeFromSetExternalRemoteEglContext(eglContext);
|
|
121
|
+
const jsonParams = {
|
|
122
|
+
eglContext: eglContext,
|
|
123
|
+
toJSON: () => {
|
|
124
|
+
return {
|
|
125
|
+
eglContext: eglContext
|
|
126
|
+
};
|
|
127
|
+
}
|
|
128
|
+
};
|
|
129
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
130
|
+
return jsonResults.result;
|
|
131
|
+
}
|
|
132
|
+
getApiTypeFromSetExternalRemoteEglContext(eglContext) {
|
|
133
|
+
return 'MediaEngine_setExternalRemoteEglContext_f337cbf';
|
|
134
|
+
}
|
|
135
|
+
setExternalAudioSource(enabled, sampleRate, channels, localPlayback = false, publish = true) {
|
|
136
|
+
const apiType = this.getApiTypeFromSetExternalAudioSource(enabled, sampleRate, channels, localPlayback, publish);
|
|
137
|
+
const jsonParams = {
|
|
138
|
+
enabled: enabled,
|
|
139
|
+
sampleRate: sampleRate,
|
|
140
|
+
channels: channels,
|
|
141
|
+
localPlayback: localPlayback,
|
|
142
|
+
publish: publish,
|
|
143
|
+
toJSON: () => {
|
|
144
|
+
return {
|
|
145
|
+
enabled: enabled,
|
|
146
|
+
sampleRate: sampleRate,
|
|
147
|
+
channels: channels,
|
|
148
|
+
localPlayback: localPlayback,
|
|
149
|
+
publish: publish
|
|
150
|
+
};
|
|
151
|
+
}
|
|
152
|
+
};
|
|
153
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
154
|
+
return jsonResults.result;
|
|
155
|
+
}
|
|
156
|
+
getApiTypeFromSetExternalAudioSource(enabled, sampleRate, channels, localPlayback = false, publish = true) {
|
|
157
|
+
return 'MediaEngine_setExternalAudioSource_e6538be';
|
|
158
|
+
}
|
|
159
|
+
createCustomAudioTrack(trackType, config) {
|
|
160
|
+
const apiType = this.getApiTypeFromCreateCustomAudioTrack(trackType, config);
|
|
161
|
+
const jsonParams = {
|
|
162
|
+
trackType: trackType,
|
|
163
|
+
config: config,
|
|
164
|
+
toJSON: () => {
|
|
165
|
+
return {
|
|
166
|
+
trackType: trackType,
|
|
167
|
+
config: config
|
|
168
|
+
};
|
|
169
|
+
}
|
|
170
|
+
};
|
|
171
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
172
|
+
return jsonResults.result;
|
|
173
|
+
}
|
|
174
|
+
getApiTypeFromCreateCustomAudioTrack(trackType, config) {
|
|
175
|
+
return 'MediaEngine_createCustomAudioTrack_5a0bf1a';
|
|
176
|
+
}
|
|
177
|
+
destroyCustomAudioTrack(trackId) {
|
|
178
|
+
const apiType = this.getApiTypeFromDestroyCustomAudioTrack(trackId);
|
|
179
|
+
const jsonParams = {
|
|
180
|
+
trackId: trackId,
|
|
181
|
+
toJSON: () => {
|
|
182
|
+
return {
|
|
183
|
+
trackId: trackId
|
|
184
|
+
};
|
|
185
|
+
}
|
|
186
|
+
};
|
|
187
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
188
|
+
return jsonResults.result;
|
|
189
|
+
}
|
|
190
|
+
getApiTypeFromDestroyCustomAudioTrack(trackId) {
|
|
191
|
+
return 'MediaEngine_destroyCustomAudioTrack_6178b5d';
|
|
192
|
+
}
|
|
193
|
+
setExternalAudioSink(enabled, sampleRate, channels) {
|
|
194
|
+
const apiType = this.getApiTypeFromSetExternalAudioSink(enabled, sampleRate, channels);
|
|
195
|
+
const jsonParams = {
|
|
196
|
+
enabled: enabled,
|
|
197
|
+
sampleRate: sampleRate,
|
|
198
|
+
channels: channels,
|
|
199
|
+
toJSON: () => {
|
|
200
|
+
return {
|
|
201
|
+
enabled: enabled,
|
|
202
|
+
sampleRate: sampleRate,
|
|
203
|
+
channels: channels
|
|
204
|
+
};
|
|
205
|
+
}
|
|
206
|
+
};
|
|
207
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
208
|
+
return jsonResults.result;
|
|
209
|
+
}
|
|
210
|
+
getApiTypeFromSetExternalAudioSink(enabled, sampleRate, channels) {
|
|
211
|
+
return 'MediaEngine_setExternalAudioSink_d275ce0';
|
|
212
|
+
}
|
|
213
|
+
enableCustomAudioLocalPlayback(trackId, enabled) {
|
|
214
|
+
const apiType = this.getApiTypeFromEnableCustomAudioLocalPlayback(trackId, enabled);
|
|
215
|
+
const jsonParams = {
|
|
216
|
+
trackId: trackId,
|
|
217
|
+
enabled: enabled,
|
|
218
|
+
toJSON: () => {
|
|
219
|
+
return {
|
|
220
|
+
trackId: trackId,
|
|
221
|
+
enabled: enabled
|
|
222
|
+
};
|
|
223
|
+
}
|
|
224
|
+
};
|
|
225
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
226
|
+
return jsonResults.result;
|
|
227
|
+
}
|
|
228
|
+
getApiTypeFromEnableCustomAudioLocalPlayback(trackId, enabled) {
|
|
229
|
+
return 'MediaEngine_enableCustomAudioLocalPlayback_5f38e8a';
|
|
230
|
+
}
|
|
231
|
+
pushVideoFrame(frame, videoTrackId = 0) {
|
|
232
|
+
const apiType = this.getApiTypeFromPushVideoFrame(frame, videoTrackId);
|
|
233
|
+
const jsonParams = {
|
|
234
|
+
frame: frame,
|
|
235
|
+
videoTrackId: videoTrackId,
|
|
236
|
+
toJSON: () => {
|
|
237
|
+
return {
|
|
238
|
+
frame: frame,
|
|
239
|
+
videoTrackId: videoTrackId
|
|
240
|
+
};
|
|
241
|
+
}
|
|
242
|
+
};
|
|
243
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
244
|
+
return jsonResults.result;
|
|
245
|
+
}
|
|
246
|
+
getApiTypeFromPushVideoFrame(frame, videoTrackId = 0) {
|
|
247
|
+
return 'MediaEngine_pushVideoFrame_4e544e2';
|
|
248
|
+
}
|
|
249
|
+
pushEncodedVideoImage(imageBuffer, length, videoEncodedFrameInfo, videoTrackId = 0) {
|
|
250
|
+
const apiType = this.getApiTypeFromPushEncodedVideoImage(imageBuffer, length, videoEncodedFrameInfo, videoTrackId);
|
|
251
|
+
const jsonParams = {
|
|
252
|
+
imageBuffer: imageBuffer,
|
|
253
|
+
length: length,
|
|
254
|
+
videoEncodedFrameInfo: videoEncodedFrameInfo,
|
|
255
|
+
videoTrackId: videoTrackId,
|
|
256
|
+
toJSON: () => {
|
|
257
|
+
return {
|
|
258
|
+
length: length,
|
|
259
|
+
videoEncodedFrameInfo: videoEncodedFrameInfo,
|
|
260
|
+
videoTrackId: videoTrackId
|
|
261
|
+
};
|
|
262
|
+
}
|
|
263
|
+
};
|
|
264
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
265
|
+
return jsonResults.result;
|
|
266
|
+
}
|
|
267
|
+
getApiTypeFromPushEncodedVideoImage(imageBuffer, length, videoEncodedFrameInfo, videoTrackId = 0) {
|
|
268
|
+
return 'MediaEngine_pushEncodedVideoImage_e71452b';
|
|
269
|
+
}
|
|
270
|
+
release() {
|
|
271
|
+
const apiType = this.getApiTypeFromRelease();
|
|
272
|
+
const jsonParams = {};
|
|
273
|
+
callIrisApi.call(this, apiType, jsonParams);
|
|
274
|
+
}
|
|
275
|
+
getApiTypeFromRelease() {
|
|
276
|
+
return 'MediaEngine_release';
|
|
277
|
+
}
|
|
278
|
+
unregisterAudioFrameObserver(observer) {
|
|
279
|
+
const apiType = this.getApiTypeFromUnregisterAudioFrameObserver(observer);
|
|
280
|
+
const jsonParams = {
|
|
281
|
+
observer: observer,
|
|
282
|
+
toJSON: () => {
|
|
283
|
+
return {};
|
|
284
|
+
}
|
|
285
|
+
};
|
|
286
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
287
|
+
return jsonResults.result;
|
|
288
|
+
}
|
|
289
|
+
getApiTypeFromUnregisterAudioFrameObserver(observer) {
|
|
290
|
+
return 'MediaEngine_unregisterAudioFrameObserver';
|
|
291
|
+
}
|
|
292
|
+
unregisterVideoFrameObserver(observer) {
|
|
293
|
+
const apiType = this.getApiTypeFromUnregisterVideoFrameObserver(observer);
|
|
294
|
+
const jsonParams = {
|
|
295
|
+
observer: observer,
|
|
296
|
+
toJSON: () => {
|
|
297
|
+
return {};
|
|
298
|
+
}
|
|
299
|
+
};
|
|
300
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
301
|
+
return jsonResults.result;
|
|
302
|
+
}
|
|
303
|
+
getApiTypeFromUnregisterVideoFrameObserver(observer) {
|
|
304
|
+
return 'MediaEngine_unregisterVideoFrameObserver';
|
|
305
|
+
}
|
|
306
|
+
unregisterVideoEncodedFrameObserver(observer) {
|
|
307
|
+
const apiType = this.getApiTypeFromUnregisterVideoEncodedFrameObserver(observer);
|
|
308
|
+
const jsonParams = {
|
|
309
|
+
observer: observer,
|
|
310
|
+
toJSON: () => {
|
|
311
|
+
return {};
|
|
312
|
+
}
|
|
313
|
+
};
|
|
314
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
315
|
+
return jsonResults.result;
|
|
316
|
+
}
|
|
317
|
+
getApiTypeFromUnregisterVideoEncodedFrameObserver(observer) {
|
|
318
|
+
return 'MediaEngine_unregisterVideoEncodedFrameObserver';
|
|
319
|
+
}
|
|
320
|
+
unregisterFaceInfoObserver(observer) {
|
|
321
|
+
const apiType = this.getApiTypeFromUnregisterFaceInfoObserver(observer);
|
|
322
|
+
const jsonParams = {
|
|
323
|
+
observer: observer,
|
|
324
|
+
toJSON: () => {
|
|
325
|
+
return {};
|
|
326
|
+
}
|
|
327
|
+
};
|
|
328
|
+
const jsonResults = callIrisApi.call(this, apiType, jsonParams);
|
|
329
|
+
return jsonResults.result;
|
|
330
|
+
}
|
|
331
|
+
getApiTypeFromUnregisterFaceInfoObserver(observer) {
|
|
332
|
+
return 'MediaEngine_unregisterFaceInfoObserver';
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
//# sourceMappingURL=IAgoraMediaEngineImpl.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["SenderOptions","ExternalVideoSourceType","callIrisApi","IMediaEngineImpl","registerAudioFrameObserver","observer","apiType","getApiTypeFromRegisterAudioFrameObserver","jsonParams","toJSON","jsonResults","call","result","registerVideoFrameObserver","getApiTypeFromRegisterVideoFrameObserver","registerVideoEncodedFrameObserver","getApiTypeFromRegisterVideoEncodedFrameObserver","registerFaceInfoObserver","getApiTypeFromRegisterFaceInfoObserver","pushAudioFrame","frame","trackId","getApiTypeFromPushAudioFrame","pullAudioFrame","getApiTypeFromPullAudioFrame","setExternalVideoSource","enabled","useTexture","sourceType","VideoFrame","encodedVideoOption","getApiTypeFromSetExternalVideoSource","setExternalRemoteEglContext","eglContext","getApiTypeFromSetExternalRemoteEglContext","setExternalAudioSource","sampleRate","channels","localPlayback","publish","getApiTypeFromSetExternalAudioSource","createCustomAudioTrack","trackType","config","getApiTypeFromCreateCustomAudioTrack","destroyCustomAudioTrack","getApiTypeFromDestroyCustomAudioTrack","setExternalAudioSink","getApiTypeFromSetExternalAudioSink","enableCustomAudioLocalPlayback","getApiTypeFromEnableCustomAudioLocalPlayback","pushVideoFrame","videoTrackId","getApiTypeFromPushVideoFrame","pushEncodedVideoImage","imageBuffer","length","videoEncodedFrameInfo","getApiTypeFromPushEncodedVideoImage","release","getApiTypeFromRelease","unregisterAudioFrameObserver","getApiTypeFromUnregisterAudioFrameObserver","unregisterVideoFrameObserver","getApiTypeFromUnregisterVideoFrameObserver","unregisterVideoEncodedFrameObserver","getApiTypeFromUnregisterVideoEncodedFrameObserver","unregisterFaceInfoObserver","getApiTypeFromUnregisterFaceInfoObserver"],"sourceRoot":"../../../src","sources":["impl/IAgoraMediaEngineImpl.ts"],"mappings":"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","ignoreList":[]}
|