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