agora-electron-sdk 4.1.1-rc.1 → 4.2.0-dev.13
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/LICENSE +21 -21
- package/README.md +143 -143
- package/gulpfile.js +5 -4
- package/js/AgoraSdk.js +62 -60
- package/js/Private/AgoraBase.js +4575 -3269
- package/js/Private/AgoraMediaBase.js +968 -564
- package/js/Private/AgoraMediaPlayerTypes.js +422 -310
- package/js/Private/IAgoraLog.js +86 -74
- package/js/Private/IAgoraMediaEngine.js +32 -32
- package/js/Private/IAgoraMediaPlayer.js +16 -16
- package/js/Private/IAgoraMediaPlayerSource.js +3 -3
- package/js/Private/IAgoraMediaRecorder.js +12 -12
- package/js/Private/IAgoraMediaStreamingSource.js +84 -0
- package/js/Private/IAgoraMusicContentCenter.js +239 -81
- package/js/Private/IAgoraRhythmPlayer.js +70 -62
- package/js/Private/IAgoraRtcEngine.js +1807 -948
- package/js/Private/IAgoraRtcEngineEx.js +26 -18
- package/js/Private/IAgoraSpatialAudio.js +74 -30
- package/js/Private/IAudioDeviceManager.js +20 -20
- package/js/Private/extension/AgoraBaseExtension.js +2 -2
- package/js/Private/extension/AgoraMediaBaseExtension.js +2 -2
- package/js/Private/extension/AgoraMediaPlayerTypesExtension.js +2 -2
- package/js/Private/extension/IAgoraLogExtension.js +2 -2
- package/js/Private/extension/IAgoraMediaEngineExtension.js +2 -2
- package/js/Private/extension/IAgoraMediaPlayerExtension.js +2 -2
- package/js/Private/extension/IAgoraMediaPlayerSourceExtension.js +2 -2
- package/js/Private/extension/IAgoraMediaRecorderExtension.js +2 -2
- package/js/Private/extension/IAgoraMusicContentCenterExtension.js +2 -2
- package/js/Private/extension/IAgoraRhythmPlayerExtension.js +2 -2
- package/js/Private/extension/IAgoraRtcEngineExExtension.js +2 -2
- package/js/Private/extension/IAgoraRtcEngineExtension.js +2 -2
- package/js/Private/extension/IAgoraSpatialAudioExtension.js +2 -2
- package/js/Private/extension/IAudioDeviceManagerExtension.js +2 -2
- package/js/Private/impl/AgoraBaseImpl.js +23 -23
- package/js/Private/impl/AgoraMediaBaseImpl.js +118 -138
- package/js/Private/impl/IAgoraMediaEngineImpl.js +287 -325
- package/js/Private/impl/IAgoraMediaPlayerImpl.js +932 -938
- package/js/Private/impl/IAgoraMediaPlayerSourceImpl.js +63 -63
- package/js/Private/impl/IAgoraMediaRecorderImpl.js +47 -67
- package/js/Private/impl/IAgoraMusicContentCenterImpl.js +353 -323
- package/js/Private/impl/IAgoraRtcEngineExImpl.js +945 -907
- package/js/Private/impl/IAgoraRtcEngineImpl.js +4742 -4702
- package/js/Private/impl/IAgoraSpatialAudioImpl.js +362 -362
- package/js/Private/impl/IAudioDeviceManagerImpl.js +375 -375
- package/js/Private/internal/AudioDeviceManagerInternal.js +44 -44
- package/js/Private/internal/IrisApiEngine.js +391 -382
- package/js/Private/internal/LocalSpatialAudioEngineInternal.js +46 -46
- package/js/Private/internal/MediaEngineInternal.js +119 -123
- package/js/Private/internal/MediaPlayerInternal.js +215 -213
- package/js/Private/internal/MediaRecorderInternal.js +82 -81
- package/js/Private/internal/MusicContentCenterInternal.js +128 -130
- package/js/Private/internal/RtcEngineExInternal.js +422 -363
- package/js/Private/internal/emitter/EventEmitter.js +111 -111
- package/js/Private/ti/AgoraBase-ti.js +40 -40
- package/js/Private/ti/AgoraMediaBase-ti.js +71 -73
- package/js/Private/ti/AgoraMediaPlayerTypes-ti.js +5 -5
- package/js/Private/ti/IAgoraLog-ti.js +5 -5
- package/js/Private/ti/IAgoraMediaEngine-ti.js +5 -5
- package/js/Private/ti/IAgoraMediaPlayer-ti.js +38 -42
- package/js/Private/ti/IAgoraMediaPlayerSource-ti.js +48 -48
- package/js/Private/ti/IAgoraMediaRecorder-ti.js +5 -5
- package/js/Private/ti/IAgoraMediaStreamingSource-ti.js +5 -0
- package/js/Private/ti/IAgoraMusicContentCenter-ti.js +41 -41
- package/js/Private/ti/IAgoraRhythmPlayer-ti.js +5 -5
- package/js/Private/ti/IAgoraRtcEngine-ti.js +139 -139
- package/js/Private/ti/IAgoraRtcEngineEx-ti.js +5 -5
- package/js/Private/ti/IAgoraSpatialAudio-ti.js +5 -5
- package/js/Private/ti/IAudioDeviceManager-ti.js +5 -5
- package/js/Renderer/AgoraView.js +128 -131
- package/js/Renderer/IRenderer.js +40 -48
- package/js/Renderer/IRendererManager.js +9 -0
- package/js/Renderer/RendererManager.js +479 -392
- package/js/Renderer/{GlRenderer → WebGLRenderer}/index.js +469 -473
- package/js/Renderer/{GlRenderer → WebGLRenderer}/webgl-utils.js +1337 -1337
- package/js/Renderer/YUVCanvasRenderer/index.js +195 -185
- package/js/Renderer/index.js +18 -0
- package/js/Types.js +17 -29
- package/js/Utils.js +168 -173
- package/package.json +61 -103
- package/scripts/bootstrap.js +1 -1
- package/scripts/build.js +1 -0
- package/scripts/buildJS.js +3 -3
- package/scripts/clean.js +2 -1
- package/scripts/downloadPrebuild.js +5 -5
- package/scripts/getConfig.js +3 -2
- package/scripts/synclib.js +8 -5
- package/scripts/util.js +3 -2
- package/scripts/zipBuild.js +2 -1
- package/ts/AgoraSdk.ts +9 -6
- package/ts/Private/AgoraBase.ts +278 -173
- package/ts/Private/AgoraMediaBase.ts +167 -100
- package/ts/Private/AgoraMediaPlayerTypes.ts +1 -1
- package/ts/Private/IAgoraMediaEngine.ts +43 -56
- package/ts/Private/IAgoraMediaPlayer.ts +90 -104
- package/ts/Private/IAgoraMediaPlayerSource.ts +3 -8
- package/ts/Private/IAgoraMediaRecorder.ts +8 -35
- package/ts/Private/IAgoraMediaStreamingSource.ts +80 -0
- package/ts/Private/IAgoraMusicContentCenter.ts +93 -12
- package/ts/Private/IAgoraRtcEngine.ts +807 -910
- package/ts/Private/IAgoraRtcEngineEx.ts +187 -191
- package/ts/Private/IAgoraSpatialAudio.ts +40 -22
- package/ts/Private/IAudioDeviceManager.ts +35 -13
- package/ts/Private/extension/IAgoraMediaEngineExtension.ts +1 -1
- package/ts/Private/extension/IAgoraMediaPlayerExtension.ts +4 -7
- package/ts/Private/extension/IAgoraMediaRecorderExtension.ts +6 -1
- package/ts/Private/extension/IAgoraMusicContentCenterExtension.ts +1 -1
- package/ts/Private/extension/IAgoraRtcEngineExtension.ts +4 -4
- package/ts/Private/impl/AgoraBaseImpl.ts +3 -3
- package/ts/Private/impl/AgoraMediaBaseImpl.ts +36 -42
- package/ts/Private/impl/IAgoraMediaEngineImpl.ts +79 -127
- package/ts/Private/impl/IAgoraMediaPlayerImpl.ts +106 -106
- package/ts/Private/impl/IAgoraMediaRecorderImpl.ts +13 -45
- package/ts/Private/impl/IAgoraMusicContentCenterImpl.ts +61 -16
- package/ts/Private/impl/IAgoraRtcEngineExImpl.ts +129 -59
- package/ts/Private/impl/IAgoraRtcEngineImpl.ts +490 -416
- package/ts/Private/impl/IAgoraSpatialAudioImpl.ts +5 -3
- package/ts/Private/impl/IAudioDeviceManagerImpl.ts +4 -2
- package/ts/Private/internal/AudioDeviceManagerInternal.ts +6 -5
- package/ts/Private/internal/IrisApiEngine.ts +41 -32
- package/ts/Private/internal/LocalSpatialAudioEngineInternal.ts +17 -13
- package/ts/Private/internal/MediaEngineInternal.ts +9 -11
- package/ts/Private/internal/MediaPlayerInternal.ts +42 -31
- package/ts/Private/internal/MediaRecorderInternal.ts +24 -22
- package/ts/Private/internal/MusicContentCenterInternal.ts +16 -18
- package/ts/Private/internal/RtcEngineExInternal.ts +189 -66
- package/ts/Private/ti/AgoraMediaBase-ti.ts +9 -10
- package/ts/Private/ti/IAgoraMediaPlayer-ti.ts +0 -5
- package/{js/Private/ti/AgoraMediaPlayerTypes-ti.d.ts → ts/Private/ti/IAgoraMediaStreamingSource-ti.ts} +11 -6
- package/ts/Private/ti/IAgoraMusicContentCenter-ti.ts +4 -4
- package/ts/Private/ti/IAgoraRtcEngine-ti.ts +4 -4
- package/ts/Renderer/AgoraView.ts +12 -7
- package/ts/Renderer/IRenderer.ts +11 -16
- package/ts/Renderer/IRendererManager.ts +35 -0
- package/ts/Renderer/RendererManager.ts +146 -82
- package/ts/Renderer/{GlRenderer → WebGLRenderer}/index.ts +36 -51
- package/ts/Renderer/YUVCanvasRenderer/index.ts +41 -25
- package/ts/Renderer/index.ts +2 -0
- package/ts/Types.ts +43 -23
- package/ts/Utils.ts +7 -12
- package/types/AgoraSdk.d.ts +38 -36
- package/types/AgoraSdk.d.ts.map +1 -0
- package/types/Private/AgoraBase.d.ts +4455 -4358
- package/types/Private/AgoraBase.d.ts.map +1 -0
- package/types/Private/AgoraMediaBase.d.ts +1125 -1070
- package/types/Private/AgoraMediaBase.d.ts.map +1 -0
- package/types/Private/AgoraMediaPlayerTypes.d.ts +409 -408
- package/types/Private/AgoraMediaPlayerTypes.d.ts.map +1 -0
- package/types/Private/IAgoraLog.d.ts +81 -80
- package/types/Private/IAgoraLog.d.ts.map +1 -0
- package/types/Private/IAgoraMediaEngine.d.ts +184 -193
- package/types/Private/IAgoraMediaEngine.d.ts.map +1 -0
- package/types/Private/IAgoraMediaPlayer.d.ts +533 -546
- package/types/Private/IAgoraMediaPlayer.d.ts.map +1 -0
- package/types/Private/IAgoraMediaPlayerSource.d.ts +83 -88
- package/types/Private/IAgoraMediaPlayerSource.d.ts.map +1 -0
- package/types/Private/IAgoraMediaRecorder.d.ts +29 -49
- package/types/Private/IAgoraMediaRecorder.d.ts.map +1 -0
- package/types/Private/IAgoraMediaStreamingSource.d.ts +42 -0
- package/types/Private/IAgoraMediaStreamingSource.d.ts.map +1 -0
- package/types/Private/IAgoraMusicContentCenter.d.ts +336 -255
- package/types/Private/IAgoraMusicContentCenter.d.ts.map +1 -0
- package/types/Private/IAgoraRhythmPlayer.d.ts +65 -64
- package/types/Private/IAgoraRhythmPlayer.d.ts.map +1 -0
- package/types/Private/IAgoraRtcEngine.d.ts +4948 -5058
- package/types/Private/IAgoraRtcEngine.d.ts.map +1 -0
- package/types/Private/IAgoraRtcEngineEx.d.ts +554 -570
- package/types/Private/IAgoraRtcEngineEx.d.ts.map +1 -0
- package/types/Private/IAgoraSpatialAudio.d.ts +266 -248
- package/types/Private/IAgoraSpatialAudio.d.ts.map +1 -0
- package/types/Private/IAudioDeviceManager.d.ts +255 -233
- package/types/Private/IAudioDeviceManager.d.ts.map +1 -0
- package/types/Private/extension/AgoraBaseExtension.d.ts +2 -1
- package/types/Private/extension/AgoraBaseExtension.d.ts.map +1 -0
- package/types/Private/extension/AgoraMediaBaseExtension.d.ts +2 -1
- package/types/Private/extension/AgoraMediaBaseExtension.d.ts.map +1 -0
- package/types/Private/extension/AgoraMediaPlayerTypesExtension.d.ts +2 -1
- package/types/Private/extension/AgoraMediaPlayerTypesExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraLogExtension.d.ts +2 -1
- package/types/Private/extension/IAgoraLogExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraMediaEngineExtension.d.ts +41 -40
- package/types/Private/extension/IAgoraMediaEngineExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraMediaPlayerExtension.d.ts +47 -46
- package/types/Private/extension/IAgoraMediaPlayerExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraMediaPlayerSourceExtension.d.ts +2 -1
- package/types/Private/extension/IAgoraMediaPlayerSourceExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraMediaRecorderExtension.d.ts +45 -40
- package/types/Private/extension/IAgoraMediaRecorderExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraMusicContentCenterExtension.d.ts +21 -20
- package/types/Private/extension/IAgoraMusicContentCenterExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraRhythmPlayerExtension.d.ts +2 -1
- package/types/Private/extension/IAgoraRhythmPlayerExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraRtcEngineExExtension.d.ts +2 -1
- package/types/Private/extension/IAgoraRtcEngineExExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraRtcEngineExtension.d.ts +43 -42
- package/types/Private/extension/IAgoraRtcEngineExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraSpatialAudioExtension.d.ts +2 -1
- package/types/Private/extension/IAgoraSpatialAudioExtension.d.ts.map +1 -0
- package/types/Private/extension/IAudioDeviceManagerExtension.d.ts +2 -1
- package/types/Private/extension/IAudioDeviceManagerExtension.d.ts.map +1 -0
- package/types/Private/impl/AgoraBaseImpl.d.ts +3 -2
- package/types/Private/impl/AgoraBaseImpl.d.ts.map +1 -0
- package/types/Private/impl/AgoraMediaBaseImpl.d.ts +9 -7
- package/types/Private/impl/AgoraMediaBaseImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraMediaEngineImpl.d.ts +40 -43
- package/types/Private/impl/IAgoraMediaEngineImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraMediaPlayerImpl.d.ts +141 -141
- package/types/Private/impl/IAgoraMediaPlayerImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraMediaPlayerSourceImpl.d.ts +3 -2
- package/types/Private/impl/IAgoraMediaPlayerSourceImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraMediaRecorderImpl.d.ts +11 -13
- package/types/Private/impl/IAgoraMediaRecorderImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraMusicContentCenterImpl.d.ts +59 -51
- package/types/Private/impl/IAgoraMusicContentCenterImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraRtcEngineExImpl.d.ts +106 -101
- package/types/Private/impl/IAgoraRtcEngineExImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraRtcEngineImpl.d.ts +570 -566
- package/types/Private/impl/IAgoraRtcEngineImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraSpatialAudioImpl.d.ts +49 -48
- package/types/Private/impl/IAgoraSpatialAudioImpl.d.ts.map +1 -0
- package/types/Private/impl/IAudioDeviceManagerImpl.d.ts +65 -64
- package/types/Private/impl/IAudioDeviceManagerImpl.d.ts.map +1 -0
- package/types/Private/internal/AudioDeviceManagerInternal.d.ts +9 -8
- package/types/Private/internal/AudioDeviceManagerInternal.d.ts.map +1 -0
- package/types/Private/internal/IrisApiEngine.d.ts +148 -146
- package/types/Private/internal/IrisApiEngine.d.ts.map +1 -0
- package/types/Private/internal/LocalSpatialAudioEngineInternal.d.ts +19 -18
- package/types/Private/internal/LocalSpatialAudioEngineInternal.d.ts.map +1 -0
- package/types/Private/internal/MediaEngineInternal.d.ts +22 -21
- package/types/Private/internal/MediaEngineInternal.d.ts.map +1 -0
- package/types/Private/internal/MediaPlayerInternal.d.ts +34 -33
- package/types/Private/internal/MediaPlayerInternal.d.ts.map +1 -0
- package/types/Private/internal/MediaRecorderInternal.d.ts +18 -15
- package/types/Private/internal/MediaRecorderInternal.d.ts.map +1 -0
- package/types/Private/internal/MusicContentCenterInternal.d.ts +40 -39
- package/types/Private/internal/MusicContentCenterInternal.d.ts.map +1 -0
- package/types/Private/internal/RtcEngineExInternal.d.ts +80 -73
- package/types/Private/internal/RtcEngineExInternal.d.ts.map +1 -0
- package/{js → types}/Private/internal/emitter/EventEmitter.d.ts +60 -59
- package/types/Private/internal/emitter/EventEmitter.d.ts.map +1 -0
- package/types/Private/ti/AgoraBase-ti.d.ts +8 -7
- package/types/Private/ti/AgoraBase-ti.d.ts.map +1 -0
- package/types/Private/ti/AgoraMediaBase-ti.d.ts +14 -12
- package/types/Private/ti/AgoraMediaBase-ti.d.ts.map +1 -0
- package/types/Private/ti/AgoraMediaPlayerTypes-ti.d.ts +7 -6
- package/types/Private/ti/AgoraMediaPlayerTypes-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraLog-ti.d.ts +7 -6
- package/types/Private/ti/IAgoraLog-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraMediaEngine-ti.d.ts +7 -6
- package/types/Private/ti/IAgoraMediaEngine-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraMediaPlayer-ti.d.ts +8 -8
- package/types/Private/ti/IAgoraMediaPlayer-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraMediaPlayerSource-ti.d.ts +8 -7
- package/types/Private/ti/IAgoraMediaPlayerSource-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraMediaRecorder-ti.d.ts +7 -6
- package/types/Private/ti/IAgoraMediaRecorder-ti.d.ts.map +1 -0
- package/{js/Private/ti/IAgoraMediaRecorder-ti.d.ts → types/Private/ti/IAgoraMediaStreamingSource-ti.d.ts} +7 -6
- package/types/Private/ti/IAgoraMediaStreamingSource-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraMusicContentCenter-ti.d.ts +8 -7
- package/types/Private/ti/IAgoraMusicContentCenter-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraRhythmPlayer-ti.d.ts +7 -6
- package/types/Private/ti/IAgoraRhythmPlayer-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraRtcEngine-ti.d.ts +10 -9
- package/types/Private/ti/IAgoraRtcEngine-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraRtcEngineEx-ti.d.ts +7 -6
- package/types/Private/ti/IAgoraRtcEngineEx-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraSpatialAudio-ti.d.ts +7 -6
- package/types/Private/ti/IAgoraSpatialAudio-ti.d.ts.map +1 -0
- package/types/Private/ti/IAudioDeviceManager-ti.d.ts +7 -6
- package/types/Private/ti/IAudioDeviceManager-ti.d.ts.map +1 -0
- package/types/Renderer/AgoraView.d.ts +70 -70
- package/types/Renderer/AgoraView.d.ts.map +1 -0
- package/types/Renderer/IRenderer.d.ts +22 -21
- package/types/Renderer/IRenderer.d.ts.map +1 -0
- package/types/Renderer/IRendererManager.d.ts +18 -0
- package/types/Renderer/IRendererManager.d.ts.map +1 -0
- package/types/Renderer/RendererManager.d.ts +154 -71
- package/types/Renderer/RendererManager.d.ts.map +1 -0
- package/types/Renderer/{GlRenderer → WebGLRenderer}/index.d.ts +49 -59
- package/types/Renderer/WebGLRenderer/index.d.ts.map +1 -0
- package/types/Renderer/WebGLRenderer/webgl-utils.d.ts +1 -0
- package/types/Renderer/WebGLRenderer/webgl-utils.d.ts.map +1 -0
- package/types/Renderer/YUVCanvasRenderer/index.d.ts +16 -16
- package/types/Renderer/YUVCanvasRenderer/index.d.ts.map +1 -0
- package/types/Renderer/index.d.ts +3 -0
- package/types/Renderer/index.d.ts.map +1 -0
- package/types/Types.d.ts +280 -260
- package/types/Types.d.ts.map +1 -0
- package/types/Utils.d.ts +59 -58
- package/types/Utils.d.ts.map +1 -0
- package/js/AgoraSdk.d.ts +0 -36
- package/js/Private/AgoraBase.d.ts +0 -4358
- package/js/Private/AgoraMediaBase.d.ts +0 -1070
- package/js/Private/AgoraMediaPlayerTypes.d.ts +0 -408
- package/js/Private/IAgoraLog.d.ts +0 -80
- package/js/Private/IAgoraMediaEngine.d.ts +0 -193
- package/js/Private/IAgoraMediaPlayer.d.ts +0 -546
- package/js/Private/IAgoraMediaPlayerSource.d.ts +0 -88
- package/js/Private/IAgoraMediaRecorder.d.ts +0 -49
- package/js/Private/IAgoraMusicContentCenter.d.ts +0 -255
- package/js/Private/IAgoraRhythmPlayer.d.ts +0 -64
- package/js/Private/IAgoraRtcEngine.d.ts +0 -5058
- package/js/Private/IAgoraRtcEngineEx.d.ts +0 -570
- package/js/Private/IAgoraSpatialAudio.d.ts +0 -248
- package/js/Private/IAudioDeviceManager.d.ts +0 -233
- package/js/Private/extension/AgoraBaseExtension.d.ts +0 -1
- package/js/Private/extension/AgoraMediaBaseExtension.d.ts +0 -1
- package/js/Private/extension/AgoraMediaPlayerTypesExtension.d.ts +0 -1
- package/js/Private/extension/IAgoraLogExtension.d.ts +0 -1
- package/js/Private/extension/IAgoraMediaEngineExtension.d.ts +0 -40
- package/js/Private/extension/IAgoraMediaPlayerExtension.d.ts +0 -46
- package/js/Private/extension/IAgoraMediaPlayerSourceExtension.d.ts +0 -1
- package/js/Private/extension/IAgoraMediaRecorderExtension.d.ts +0 -40
- package/js/Private/extension/IAgoraMusicContentCenterExtension.d.ts +0 -20
- package/js/Private/extension/IAgoraRhythmPlayerExtension.d.ts +0 -1
- package/js/Private/extension/IAgoraRtcEngineExExtension.d.ts +0 -1
- package/js/Private/extension/IAgoraRtcEngineExtension.d.ts +0 -42
- package/js/Private/extension/IAgoraSpatialAudioExtension.d.ts +0 -1
- package/js/Private/extension/IAudioDeviceManagerExtension.d.ts +0 -1
- package/js/Private/impl/AgoraBaseImpl.d.ts +0 -2
- package/js/Private/impl/AgoraMediaBaseImpl.d.ts +0 -7
- package/js/Private/impl/IAgoraMediaEngineImpl.d.ts +0 -43
- package/js/Private/impl/IAgoraMediaPlayerImpl.d.ts +0 -141
- package/js/Private/impl/IAgoraMediaPlayerSourceImpl.d.ts +0 -2
- package/js/Private/impl/IAgoraMediaRecorderImpl.d.ts +0 -13
- package/js/Private/impl/IAgoraMusicContentCenterImpl.d.ts +0 -51
- package/js/Private/impl/IAgoraRtcEngineExImpl.d.ts +0 -101
- package/js/Private/impl/IAgoraRtcEngineImpl.d.ts +0 -566
- package/js/Private/impl/IAgoraSpatialAudioImpl.d.ts +0 -48
- package/js/Private/impl/IAudioDeviceManagerImpl.d.ts +0 -64
- package/js/Private/internal/AudioDeviceManagerInternal.d.ts +0 -8
- package/js/Private/internal/IrisApiEngine.d.ts +0 -146
- package/js/Private/internal/LocalSpatialAudioEngineInternal.d.ts +0 -18
- package/js/Private/internal/MediaEngineInternal.d.ts +0 -21
- package/js/Private/internal/MediaPlayerInternal.d.ts +0 -33
- package/js/Private/internal/MediaRecorderInternal.d.ts +0 -15
- package/js/Private/internal/MusicContentCenterInternal.d.ts +0 -39
- package/js/Private/internal/RtcEngineExInternal.d.ts +0 -73
- package/js/Private/ti/AgoraBase-ti.d.ts +0 -7
- package/js/Private/ti/AgoraMediaBase-ti.d.ts +0 -12
- package/js/Private/ti/IAgoraLog-ti.d.ts +0 -6
- package/js/Private/ti/IAgoraMediaEngine-ti.d.ts +0 -6
- package/js/Private/ti/IAgoraMediaPlayer-ti.d.ts +0 -8
- package/js/Private/ti/IAgoraMediaPlayerSource-ti.d.ts +0 -7
- package/js/Private/ti/IAgoraMusicContentCenter-ti.d.ts +0 -7
- package/js/Private/ti/IAgoraRhythmPlayer-ti.d.ts +0 -6
- package/js/Private/ti/IAgoraRtcEngine-ti.d.ts +0 -9
- package/js/Private/ti/IAgoraRtcEngineEx-ti.d.ts +0 -6
- package/js/Private/ti/IAgoraSpatialAudio-ti.d.ts +0 -6
- package/js/Private/ti/IAudioDeviceManager-ti.d.ts +0 -6
- package/js/Renderer/AgoraView.d.ts +0 -70
- package/js/Renderer/GlRenderer/index.d.ts +0 -59
- package/js/Renderer/GlRenderer/webgl-utils.d.ts +0 -0
- package/js/Renderer/IRenderer.d.ts +0 -21
- package/js/Renderer/RendererManager.d.ts +0 -71
- package/js/Renderer/YUVCanvasRenderer/index.d.ts +0 -16
- package/js/Types.d.ts +0 -260
- package/js/Utils.d.ts +0 -58
- /package/ts/Renderer/{GlRenderer → WebGLRenderer}/webgl-utils.js +0 -0
|
@@ -1,101 +1,106 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { ChannelMediaOptions, LeaveChannelOptions } from '../IAgoraRtcEngine';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
export declare class IRtcEngineExImpl extends IRtcEngineImpl implements IRtcEngineEx {
|
|
7
|
-
joinChannelEx(token: string, connection: RtcConnection, options: ChannelMediaOptions): number;
|
|
8
|
-
protected getApiTypeFromJoinChannelEx(token: string, connection: RtcConnection, options: ChannelMediaOptions): string;
|
|
9
|
-
leaveChannelEx(connection: RtcConnection, options?: LeaveChannelOptions): number;
|
|
10
|
-
protected getApiTypeFromLeaveChannelEx(connection: RtcConnection, options?: LeaveChannelOptions): string;
|
|
11
|
-
updateChannelMediaOptionsEx(options: ChannelMediaOptions, connection: RtcConnection): number;
|
|
12
|
-
protected getApiTypeFromUpdateChannelMediaOptionsEx(options: ChannelMediaOptions, connection: RtcConnection): string;
|
|
13
|
-
setVideoEncoderConfigurationEx(config: VideoEncoderConfiguration, connection: RtcConnection): number;
|
|
14
|
-
protected getApiTypeFromSetVideoEncoderConfigurationEx(config: VideoEncoderConfiguration, connection: RtcConnection): string;
|
|
15
|
-
setupRemoteVideoEx(canvas: VideoCanvas, connection: RtcConnection): number;
|
|
16
|
-
protected getApiTypeFromSetupRemoteVideoEx(canvas: VideoCanvas, connection: RtcConnection): string;
|
|
17
|
-
muteRemoteAudioStreamEx(uid: number, mute: boolean, connection: RtcConnection): number;
|
|
18
|
-
protected getApiTypeFromMuteRemoteAudioStreamEx(uid: number, mute: boolean, connection: RtcConnection): string;
|
|
19
|
-
muteRemoteVideoStreamEx(uid: number, mute: boolean, connection: RtcConnection): number;
|
|
20
|
-
protected getApiTypeFromMuteRemoteVideoStreamEx(uid: number, mute: boolean, connection: RtcConnection): string;
|
|
21
|
-
setRemoteVideoStreamTypeEx(uid: number, streamType: VideoStreamType, connection: RtcConnection): number;
|
|
22
|
-
protected getApiTypeFromSetRemoteVideoStreamTypeEx(uid: number, streamType: VideoStreamType, connection: RtcConnection): string;
|
|
23
|
-
muteLocalAudioStreamEx(mute: boolean, connection: RtcConnection): number;
|
|
24
|
-
protected getApiTypeFromMuteLocalAudioStreamEx(mute: boolean, connection: RtcConnection): string;
|
|
25
|
-
muteLocalVideoStreamEx(mute: boolean, connection: RtcConnection): number;
|
|
26
|
-
protected getApiTypeFromMuteLocalVideoStreamEx(mute: boolean, connection: RtcConnection): string;
|
|
27
|
-
muteAllRemoteAudioStreamsEx(mute: boolean, connection: RtcConnection): number;
|
|
28
|
-
protected getApiTypeFromMuteAllRemoteAudioStreamsEx(mute: boolean, connection: RtcConnection): string;
|
|
29
|
-
muteAllRemoteVideoStreamsEx(mute: boolean, connection: RtcConnection): number;
|
|
30
|
-
protected getApiTypeFromMuteAllRemoteVideoStreamsEx(mute: boolean, connection: RtcConnection): string;
|
|
31
|
-
setSubscribeAudioBlocklistEx(uidList: number[], uidNumber: number, connection: RtcConnection): number;
|
|
32
|
-
protected getApiTypeFromSetSubscribeAudioBlocklistEx(uidList: number[], uidNumber: number, connection: RtcConnection): string;
|
|
33
|
-
setSubscribeAudioAllowlistEx(uidList: number[], uidNumber: number, connection: RtcConnection): number;
|
|
34
|
-
protected getApiTypeFromSetSubscribeAudioAllowlistEx(uidList: number[], uidNumber: number, connection: RtcConnection): string;
|
|
35
|
-
setSubscribeVideoBlocklistEx(uidList: number[], uidNumber: number, connection: RtcConnection): number;
|
|
36
|
-
protected getApiTypeFromSetSubscribeVideoBlocklistEx(uidList: number[], uidNumber: number, connection: RtcConnection): string;
|
|
37
|
-
setSubscribeVideoAllowlistEx(uidList: number[], uidNumber: number, connection: RtcConnection): number;
|
|
38
|
-
protected getApiTypeFromSetSubscribeVideoAllowlistEx(uidList: number[], uidNumber: number, connection: RtcConnection): string;
|
|
39
|
-
setRemoteVideoSubscriptionOptionsEx(uid: number, options: VideoSubscriptionOptions, connection: RtcConnection): number;
|
|
40
|
-
protected getApiTypeFromSetRemoteVideoSubscriptionOptionsEx(uid: number, options: VideoSubscriptionOptions, connection: RtcConnection): string;
|
|
41
|
-
setRemoteVoicePositionEx(uid: number, pan: number, gain: number, connection: RtcConnection): number;
|
|
42
|
-
protected getApiTypeFromSetRemoteVoicePositionEx(uid: number, pan: number, gain: number, connection: RtcConnection): string;
|
|
43
|
-
setRemoteUserSpatialAudioParamsEx(uid: number, params: SpatialAudioParams, connection: RtcConnection): number;
|
|
44
|
-
protected getApiTypeFromSetRemoteUserSpatialAudioParamsEx(uid: number, params: SpatialAudioParams, connection: RtcConnection): string;
|
|
45
|
-
setRemoteRenderModeEx(uid: number, renderMode: RenderModeType, mirrorMode: VideoMirrorModeType, connection: RtcConnection): number;
|
|
46
|
-
protected getApiTypeFromSetRemoteRenderModeEx(uid: number, renderMode: RenderModeType, mirrorMode: VideoMirrorModeType, connection: RtcConnection): string;
|
|
47
|
-
enableLoopbackRecordingEx(connection: RtcConnection, enabled: boolean, deviceName?: string): number;
|
|
48
|
-
protected getApiTypeFromEnableLoopbackRecordingEx(connection: RtcConnection, enabled: boolean, deviceName?: string): string;
|
|
49
|
-
|
|
50
|
-
protected
|
|
51
|
-
|
|
52
|
-
protected
|
|
53
|
-
|
|
54
|
-
protected
|
|
55
|
-
|
|
56
|
-
protected
|
|
57
|
-
|
|
58
|
-
protected
|
|
59
|
-
|
|
60
|
-
protected
|
|
61
|
-
|
|
62
|
-
protected
|
|
63
|
-
|
|
64
|
-
protected
|
|
65
|
-
|
|
66
|
-
protected
|
|
67
|
-
|
|
68
|
-
protected
|
|
69
|
-
|
|
70
|
-
protected
|
|
71
|
-
|
|
72
|
-
protected
|
|
73
|
-
|
|
74
|
-
protected
|
|
75
|
-
|
|
76
|
-
protected
|
|
77
|
-
|
|
78
|
-
protected
|
|
79
|
-
|
|
80
|
-
protected
|
|
81
|
-
|
|
82
|
-
protected
|
|
83
|
-
|
|
84
|
-
protected
|
|
85
|
-
|
|
86
|
-
protected
|
|
87
|
-
|
|
88
|
-
protected
|
|
89
|
-
|
|
90
|
-
protected
|
|
91
|
-
|
|
92
|
-
protected
|
|
93
|
-
|
|
94
|
-
protected
|
|
95
|
-
|
|
96
|
-
protected
|
|
97
|
-
|
|
98
|
-
protected
|
|
99
|
-
|
|
100
|
-
protected
|
|
101
|
-
|
|
1
|
+
import { ChannelMediaRelayConfiguration, ConnectionStateType, DataStreamConfig, EncryptionConfig, LiveTranscoding, SimulcastStreamConfig, SimulcastStreamMode, SpatialAudioParams, UserInfo, VideoCanvas, VideoEncoderConfiguration, VideoMirrorModeType, VideoStreamType, VideoSubscriptionOptions, WatermarkOptions } from '../AgoraBase';
|
|
2
|
+
import { RenderModeType } from '../AgoraMediaBase';
|
|
3
|
+
import { ChannelMediaOptions, LeaveChannelOptions, StreamFallbackOptions } from '../IAgoraRtcEngine';
|
|
4
|
+
import { IRtcEngineEx, RtcConnection } from '../IAgoraRtcEngineEx';
|
|
5
|
+
import { IRtcEngineImpl } from './IAgoraRtcEngineImpl';
|
|
6
|
+
export declare class IRtcEngineExImpl extends IRtcEngineImpl implements IRtcEngineEx {
|
|
7
|
+
joinChannelEx(token: string, connection: RtcConnection, options: ChannelMediaOptions): number;
|
|
8
|
+
protected getApiTypeFromJoinChannelEx(token: string, connection: RtcConnection, options: ChannelMediaOptions): string;
|
|
9
|
+
leaveChannelEx(connection: RtcConnection, options?: LeaveChannelOptions): number;
|
|
10
|
+
protected getApiTypeFromLeaveChannelEx(connection: RtcConnection, options?: LeaveChannelOptions): string;
|
|
11
|
+
updateChannelMediaOptionsEx(options: ChannelMediaOptions, connection: RtcConnection): number;
|
|
12
|
+
protected getApiTypeFromUpdateChannelMediaOptionsEx(options: ChannelMediaOptions, connection: RtcConnection): string;
|
|
13
|
+
setVideoEncoderConfigurationEx(config: VideoEncoderConfiguration, connection: RtcConnection): number;
|
|
14
|
+
protected getApiTypeFromSetVideoEncoderConfigurationEx(config: VideoEncoderConfiguration, connection: RtcConnection): string;
|
|
15
|
+
setupRemoteVideoEx(canvas: VideoCanvas, connection: RtcConnection): number;
|
|
16
|
+
protected getApiTypeFromSetupRemoteVideoEx(canvas: VideoCanvas, connection: RtcConnection): string;
|
|
17
|
+
muteRemoteAudioStreamEx(uid: number, mute: boolean, connection: RtcConnection): number;
|
|
18
|
+
protected getApiTypeFromMuteRemoteAudioStreamEx(uid: number, mute: boolean, connection: RtcConnection): string;
|
|
19
|
+
muteRemoteVideoStreamEx(uid: number, mute: boolean, connection: RtcConnection): number;
|
|
20
|
+
protected getApiTypeFromMuteRemoteVideoStreamEx(uid: number, mute: boolean, connection: RtcConnection): string;
|
|
21
|
+
setRemoteVideoStreamTypeEx(uid: number, streamType: VideoStreamType, connection: RtcConnection): number;
|
|
22
|
+
protected getApiTypeFromSetRemoteVideoStreamTypeEx(uid: number, streamType: VideoStreamType, connection: RtcConnection): string;
|
|
23
|
+
muteLocalAudioStreamEx(mute: boolean, connection: RtcConnection): number;
|
|
24
|
+
protected getApiTypeFromMuteLocalAudioStreamEx(mute: boolean, connection: RtcConnection): string;
|
|
25
|
+
muteLocalVideoStreamEx(mute: boolean, connection: RtcConnection): number;
|
|
26
|
+
protected getApiTypeFromMuteLocalVideoStreamEx(mute: boolean, connection: RtcConnection): string;
|
|
27
|
+
muteAllRemoteAudioStreamsEx(mute: boolean, connection: RtcConnection): number;
|
|
28
|
+
protected getApiTypeFromMuteAllRemoteAudioStreamsEx(mute: boolean, connection: RtcConnection): string;
|
|
29
|
+
muteAllRemoteVideoStreamsEx(mute: boolean, connection: RtcConnection): number;
|
|
30
|
+
protected getApiTypeFromMuteAllRemoteVideoStreamsEx(mute: boolean, connection: RtcConnection): string;
|
|
31
|
+
setSubscribeAudioBlocklistEx(uidList: number[], uidNumber: number, connection: RtcConnection): number;
|
|
32
|
+
protected getApiTypeFromSetSubscribeAudioBlocklistEx(uidList: number[], uidNumber: number, connection: RtcConnection): string;
|
|
33
|
+
setSubscribeAudioAllowlistEx(uidList: number[], uidNumber: number, connection: RtcConnection): number;
|
|
34
|
+
protected getApiTypeFromSetSubscribeAudioAllowlistEx(uidList: number[], uidNumber: number, connection: RtcConnection): string;
|
|
35
|
+
setSubscribeVideoBlocklistEx(uidList: number[], uidNumber: number, connection: RtcConnection): number;
|
|
36
|
+
protected getApiTypeFromSetSubscribeVideoBlocklistEx(uidList: number[], uidNumber: number, connection: RtcConnection): string;
|
|
37
|
+
setSubscribeVideoAllowlistEx(uidList: number[], uidNumber: number, connection: RtcConnection): number;
|
|
38
|
+
protected getApiTypeFromSetSubscribeVideoAllowlistEx(uidList: number[], uidNumber: number, connection: RtcConnection): string;
|
|
39
|
+
setRemoteVideoSubscriptionOptionsEx(uid: number, options: VideoSubscriptionOptions, connection: RtcConnection): number;
|
|
40
|
+
protected getApiTypeFromSetRemoteVideoSubscriptionOptionsEx(uid: number, options: VideoSubscriptionOptions, connection: RtcConnection): string;
|
|
41
|
+
setRemoteVoicePositionEx(uid: number, pan: number, gain: number, connection: RtcConnection): number;
|
|
42
|
+
protected getApiTypeFromSetRemoteVoicePositionEx(uid: number, pan: number, gain: number, connection: RtcConnection): string;
|
|
43
|
+
setRemoteUserSpatialAudioParamsEx(uid: number, params: SpatialAudioParams, connection: RtcConnection): number;
|
|
44
|
+
protected getApiTypeFromSetRemoteUserSpatialAudioParamsEx(uid: number, params: SpatialAudioParams, connection: RtcConnection): string;
|
|
45
|
+
setRemoteRenderModeEx(uid: number, renderMode: RenderModeType, mirrorMode: VideoMirrorModeType, connection: RtcConnection): number;
|
|
46
|
+
protected getApiTypeFromSetRemoteRenderModeEx(uid: number, renderMode: RenderModeType, mirrorMode: VideoMirrorModeType, connection: RtcConnection): string;
|
|
47
|
+
enableLoopbackRecordingEx(connection: RtcConnection, enabled: boolean, deviceName?: string): number;
|
|
48
|
+
protected getApiTypeFromEnableLoopbackRecordingEx(connection: RtcConnection, enabled: boolean, deviceName?: string): string;
|
|
49
|
+
adjustRecordingSignalVolumeEx(volume: number, connection: RtcConnection): number;
|
|
50
|
+
protected getApiTypeFromAdjustRecordingSignalVolumeEx(volume: number, connection: RtcConnection): string;
|
|
51
|
+
muteRecordingSignalEx(mute: boolean, connection: RtcConnection): number;
|
|
52
|
+
protected getApiTypeFromMuteRecordingSignalEx(mute: boolean, connection: RtcConnection): string;
|
|
53
|
+
adjustUserPlaybackSignalVolumeEx(uid: number, volume: number, connection: RtcConnection): number;
|
|
54
|
+
protected getApiTypeFromAdjustUserPlaybackSignalVolumeEx(uid: number, volume: number, connection: RtcConnection): string;
|
|
55
|
+
getConnectionStateEx(connection: RtcConnection): ConnectionStateType;
|
|
56
|
+
protected getApiTypeFromGetConnectionStateEx(connection: RtcConnection): string;
|
|
57
|
+
enableEncryptionEx(connection: RtcConnection, enabled: boolean, config: EncryptionConfig): number;
|
|
58
|
+
protected getApiTypeFromEnableEncryptionEx(connection: RtcConnection, enabled: boolean, config: EncryptionConfig): string;
|
|
59
|
+
createDataStreamEx(config: DataStreamConfig, connection: RtcConnection): number;
|
|
60
|
+
protected getApiTypeFromCreateDataStreamEx(config: DataStreamConfig, connection: RtcConnection): string;
|
|
61
|
+
sendStreamMessageEx(streamId: number, data: Uint8Array, length: number, connection: RtcConnection): number;
|
|
62
|
+
protected getApiTypeFromSendStreamMessageEx(streamId: number, data: Uint8Array, length: number, connection: RtcConnection): string;
|
|
63
|
+
addVideoWatermarkEx(watermarkUrl: string, options: WatermarkOptions, connection: RtcConnection): number;
|
|
64
|
+
protected getApiTypeFromAddVideoWatermarkEx(watermarkUrl: string, options: WatermarkOptions, connection: RtcConnection): string;
|
|
65
|
+
clearVideoWatermarkEx(connection: RtcConnection): number;
|
|
66
|
+
protected getApiTypeFromClearVideoWatermarkEx(connection: RtcConnection): string;
|
|
67
|
+
sendCustomReportMessageEx(id: string, category: string, event: string, label: string, value: number, connection: RtcConnection): number;
|
|
68
|
+
protected getApiTypeFromSendCustomReportMessageEx(id: string, category: string, event: string, label: string, value: number, connection: RtcConnection): string;
|
|
69
|
+
enableAudioVolumeIndicationEx(interval: number, smooth: number, reportVad: boolean, connection: RtcConnection): number;
|
|
70
|
+
protected getApiTypeFromEnableAudioVolumeIndicationEx(interval: number, smooth: number, reportVad: boolean, connection: RtcConnection): string;
|
|
71
|
+
startRtmpStreamWithoutTranscodingEx(url: string, connection: RtcConnection): number;
|
|
72
|
+
protected getApiTypeFromStartRtmpStreamWithoutTranscodingEx(url: string, connection: RtcConnection): string;
|
|
73
|
+
startRtmpStreamWithTranscodingEx(url: string, transcoding: LiveTranscoding, connection: RtcConnection): number;
|
|
74
|
+
protected getApiTypeFromStartRtmpStreamWithTranscodingEx(url: string, transcoding: LiveTranscoding, connection: RtcConnection): string;
|
|
75
|
+
updateRtmpTranscodingEx(transcoding: LiveTranscoding, connection: RtcConnection): number;
|
|
76
|
+
protected getApiTypeFromUpdateRtmpTranscodingEx(transcoding: LiveTranscoding, connection: RtcConnection): string;
|
|
77
|
+
stopRtmpStreamEx(url: string, connection: RtcConnection): number;
|
|
78
|
+
protected getApiTypeFromStopRtmpStreamEx(url: string, connection: RtcConnection): string;
|
|
79
|
+
startOrUpdateChannelMediaRelayEx(configuration: ChannelMediaRelayConfiguration, connection: RtcConnection): number;
|
|
80
|
+
protected getApiTypeFromStartOrUpdateChannelMediaRelayEx(configuration: ChannelMediaRelayConfiguration, connection: RtcConnection): string;
|
|
81
|
+
startChannelMediaRelayEx(configuration: ChannelMediaRelayConfiguration, connection: RtcConnection): number;
|
|
82
|
+
protected getApiTypeFromStartChannelMediaRelayEx(configuration: ChannelMediaRelayConfiguration, connection: RtcConnection): string;
|
|
83
|
+
updateChannelMediaRelayEx(configuration: ChannelMediaRelayConfiguration, connection: RtcConnection): number;
|
|
84
|
+
protected getApiTypeFromUpdateChannelMediaRelayEx(configuration: ChannelMediaRelayConfiguration, connection: RtcConnection): string;
|
|
85
|
+
stopChannelMediaRelayEx(connection: RtcConnection): number;
|
|
86
|
+
protected getApiTypeFromStopChannelMediaRelayEx(connection: RtcConnection): string;
|
|
87
|
+
pauseAllChannelMediaRelayEx(connection: RtcConnection): number;
|
|
88
|
+
protected getApiTypeFromPauseAllChannelMediaRelayEx(connection: RtcConnection): string;
|
|
89
|
+
resumeAllChannelMediaRelayEx(connection: RtcConnection): number;
|
|
90
|
+
protected getApiTypeFromResumeAllChannelMediaRelayEx(connection: RtcConnection): string;
|
|
91
|
+
getUserInfoByUserAccountEx(userAccount: string, connection: RtcConnection): UserInfo;
|
|
92
|
+
protected getApiTypeFromGetUserInfoByUserAccountEx(userAccount: string, connection: RtcConnection): string;
|
|
93
|
+
getUserInfoByUidEx(uid: number, connection: RtcConnection): UserInfo;
|
|
94
|
+
protected getApiTypeFromGetUserInfoByUidEx(uid: number, connection: RtcConnection): string;
|
|
95
|
+
enableDualStreamModeEx(enabled: boolean, streamConfig: SimulcastStreamConfig, connection: RtcConnection): number;
|
|
96
|
+
protected getApiTypeFromEnableDualStreamModeEx(enabled: boolean, streamConfig: SimulcastStreamConfig, connection: RtcConnection): string;
|
|
97
|
+
setDualStreamModeEx(mode: SimulcastStreamMode, streamConfig: SimulcastStreamConfig, connection: RtcConnection): number;
|
|
98
|
+
protected getApiTypeFromSetDualStreamModeEx(mode: SimulcastStreamMode, streamConfig: SimulcastStreamConfig, connection: RtcConnection): string;
|
|
99
|
+
setHighPriorityUserListEx(uidList: number[], uidNum: number, option: StreamFallbackOptions, connection: RtcConnection): number;
|
|
100
|
+
protected getApiTypeFromSetHighPriorityUserListEx(uidList: number[], uidNum: number, option: StreamFallbackOptions, connection: RtcConnection): string;
|
|
101
|
+
takeSnapshotEx(connection: RtcConnection, uid: number, filePath: string): number;
|
|
102
|
+
protected getApiTypeFromTakeSnapshotEx(connection: RtcConnection, uid: number, filePath: string): string;
|
|
103
|
+
startMediaRenderingTracingEx(connection: RtcConnection): number;
|
|
104
|
+
protected getApiTypeFromStartMediaRenderingTracingEx(connection: RtcConnection): string;
|
|
105
|
+
}
|
|
106
|
+
//# sourceMappingURL=IAgoraRtcEngineExImpl.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgoraRtcEngineExImpl.d.ts","sourceRoot":"","sources":["../../../ts/Private/impl/IAgoraRtcEngineExImpl.ts"],"names":[],"mappings":"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"}
|