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
package/js/Private/IAgoraLog.js
CHANGED
|
@@ -1,74 +1,86 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LogConfig = exports.LogFilterType = exports.LogLevel = void 0;
|
|
4
|
-
require("./extension/IAgoraLogExtension");
|
|
5
|
-
/**
|
|
6
|
-
* The output log level of the SDK.
|
|
7
|
-
*/
|
|
8
|
-
var LogLevel;
|
|
9
|
-
(function (LogLevel) {
|
|
10
|
-
/**
|
|
11
|
-
* 0: Do not output any log information.
|
|
12
|
-
*/
|
|
13
|
-
LogLevel[LogLevel["LogLevelNone"] = 0] = "LogLevelNone";
|
|
14
|
-
/**
|
|
15
|
-
* 0x0001: (Default) Output FATAL, ERROR, WARN, and INFO level log information. We recommend setting your log filter to this level.
|
|
16
|
-
*/
|
|
17
|
-
LogLevel[LogLevel["LogLevelInfo"] = 1] = "LogLevelInfo";
|
|
18
|
-
/**
|
|
19
|
-
* 0x0002: Output FATAL, ERROR, and WARN level log information.
|
|
20
|
-
*/
|
|
21
|
-
LogLevel[LogLevel["LogLevelWarn"] = 2] = "LogLevelWarn";
|
|
22
|
-
/**
|
|
23
|
-
* 0x0004: Output FATAL and ERROR level log information.
|
|
24
|
-
*/
|
|
25
|
-
LogLevel[LogLevel["LogLevelError"] = 4] = "LogLevelError";
|
|
26
|
-
/**
|
|
27
|
-
* 0x0008: Output FATAL level log information.
|
|
28
|
-
*/
|
|
29
|
-
LogLevel[LogLevel["LogLevelFatal"] = 8] = "LogLevelFatal";
|
|
30
|
-
/**
|
|
31
|
-
* @ignore
|
|
32
|
-
*/
|
|
33
|
-
LogLevel[LogLevel["LogLevelApiCall"] = 16] = "LogLevelApiCall";
|
|
34
|
-
})(LogLevel = exports.LogLevel || (exports.LogLevel = {}));
|
|
35
|
-
/**
|
|
36
|
-
* The output log level of the SDK.
|
|
37
|
-
*/
|
|
38
|
-
var LogFilterType;
|
|
39
|
-
(function (LogFilterType) {
|
|
40
|
-
/**
|
|
41
|
-
* 0: Do not output any log information.
|
|
42
|
-
*/
|
|
43
|
-
LogFilterType[LogFilterType["LogFilterOff"] = 0] = "LogFilterOff";
|
|
44
|
-
/**
|
|
45
|
-
* 0x080f: Output all log information. Set your log filter to this level if you want to get the most complete log file.
|
|
46
|
-
*/
|
|
47
|
-
LogFilterType[LogFilterType["LogFilterDebug"] = 2063] = "LogFilterDebug";
|
|
48
|
-
/**
|
|
49
|
-
* 0x000f: Output LogFilterCritical, LogFilterError, LogFilterWarn, and LogFilterInfo level log information. We recommend setting your log filter to this level.
|
|
50
|
-
*/
|
|
51
|
-
LogFilterType[LogFilterType["LogFilterInfo"] = 15] = "LogFilterInfo";
|
|
52
|
-
/**
|
|
53
|
-
* 0x000e: Output LogFilterCritical, LogFilterError, and LogFilterWarn level log information.
|
|
54
|
-
*/
|
|
55
|
-
LogFilterType[LogFilterType["LogFilterWarn"] = 14] = "LogFilterWarn";
|
|
56
|
-
/**
|
|
57
|
-
* 0x000c: Output LogFilterCritical and LogFilterError level log information.
|
|
58
|
-
*/
|
|
59
|
-
LogFilterType[LogFilterType["LogFilterError"] = 12] = "LogFilterError";
|
|
60
|
-
/**
|
|
61
|
-
* 0x0008: Output LogFilterCritical level log information.
|
|
62
|
-
*/
|
|
63
|
-
LogFilterType[LogFilterType["LogFilterCritical"] = 8] = "LogFilterCritical";
|
|
64
|
-
/**
|
|
65
|
-
* @ignore
|
|
66
|
-
*/
|
|
67
|
-
LogFilterType[LogFilterType["LogFilterMask"] = 2063] = "LogFilterMask";
|
|
68
|
-
})(LogFilterType = exports.LogFilterType || (exports.LogFilterType = {}));
|
|
69
|
-
/**
|
|
70
|
-
* Configuration of Agora SDK log files.
|
|
71
|
-
*/
|
|
72
|
-
class LogConfig {
|
|
73
|
-
|
|
74
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LogConfig = exports.LogFilterType = exports.LogLevel = void 0;
|
|
4
|
+
require("./extension/IAgoraLogExtension");
|
|
5
|
+
/**
|
|
6
|
+
* The output log level of the SDK.
|
|
7
|
+
*/
|
|
8
|
+
var LogLevel;
|
|
9
|
+
(function (LogLevel) {
|
|
10
|
+
/**
|
|
11
|
+
* 0: Do not output any log information.
|
|
12
|
+
*/
|
|
13
|
+
LogLevel[LogLevel["LogLevelNone"] = 0] = "LogLevelNone";
|
|
14
|
+
/**
|
|
15
|
+
* 0x0001: (Default) Output FATAL, ERROR, WARN, and INFO level log information. We recommend setting your log filter to this level.
|
|
16
|
+
*/
|
|
17
|
+
LogLevel[LogLevel["LogLevelInfo"] = 1] = "LogLevelInfo";
|
|
18
|
+
/**
|
|
19
|
+
* 0x0002: Output FATAL, ERROR, and WARN level log information.
|
|
20
|
+
*/
|
|
21
|
+
LogLevel[LogLevel["LogLevelWarn"] = 2] = "LogLevelWarn";
|
|
22
|
+
/**
|
|
23
|
+
* 0x0004: Output FATAL and ERROR level log information.
|
|
24
|
+
*/
|
|
25
|
+
LogLevel[LogLevel["LogLevelError"] = 4] = "LogLevelError";
|
|
26
|
+
/**
|
|
27
|
+
* 0x0008: Output FATAL level log information.
|
|
28
|
+
*/
|
|
29
|
+
LogLevel[LogLevel["LogLevelFatal"] = 8] = "LogLevelFatal";
|
|
30
|
+
/**
|
|
31
|
+
* @ignore
|
|
32
|
+
*/
|
|
33
|
+
LogLevel[LogLevel["LogLevelApiCall"] = 16] = "LogLevelApiCall";
|
|
34
|
+
})(LogLevel = exports.LogLevel || (exports.LogLevel = {}));
|
|
35
|
+
/**
|
|
36
|
+
* The output log level of the SDK.
|
|
37
|
+
*/
|
|
38
|
+
var LogFilterType;
|
|
39
|
+
(function (LogFilterType) {
|
|
40
|
+
/**
|
|
41
|
+
* 0: Do not output any log information.
|
|
42
|
+
*/
|
|
43
|
+
LogFilterType[LogFilterType["LogFilterOff"] = 0] = "LogFilterOff";
|
|
44
|
+
/**
|
|
45
|
+
* 0x080f: Output all log information. Set your log filter to this level if you want to get the most complete log file.
|
|
46
|
+
*/
|
|
47
|
+
LogFilterType[LogFilterType["LogFilterDebug"] = 2063] = "LogFilterDebug";
|
|
48
|
+
/**
|
|
49
|
+
* 0x000f: Output LogFilterCritical, LogFilterError, LogFilterWarn, and LogFilterInfo level log information. We recommend setting your log filter to this level.
|
|
50
|
+
*/
|
|
51
|
+
LogFilterType[LogFilterType["LogFilterInfo"] = 15] = "LogFilterInfo";
|
|
52
|
+
/**
|
|
53
|
+
* 0x000e: Output LogFilterCritical, LogFilterError, and LogFilterWarn level log information.
|
|
54
|
+
*/
|
|
55
|
+
LogFilterType[LogFilterType["LogFilterWarn"] = 14] = "LogFilterWarn";
|
|
56
|
+
/**
|
|
57
|
+
* 0x000c: Output LogFilterCritical and LogFilterError level log information.
|
|
58
|
+
*/
|
|
59
|
+
LogFilterType[LogFilterType["LogFilterError"] = 12] = "LogFilterError";
|
|
60
|
+
/**
|
|
61
|
+
* 0x0008: Output LogFilterCritical level log information.
|
|
62
|
+
*/
|
|
63
|
+
LogFilterType[LogFilterType["LogFilterCritical"] = 8] = "LogFilterCritical";
|
|
64
|
+
/**
|
|
65
|
+
* @ignore
|
|
66
|
+
*/
|
|
67
|
+
LogFilterType[LogFilterType["LogFilterMask"] = 2063] = "LogFilterMask";
|
|
68
|
+
})(LogFilterType = exports.LogFilterType || (exports.LogFilterType = {}));
|
|
69
|
+
/**
|
|
70
|
+
* Configuration of Agora SDK log files.
|
|
71
|
+
*/
|
|
72
|
+
class LogConfig {
|
|
73
|
+
/**
|
|
74
|
+
* The complete path of the log files. Ensure that the path for the log file exists and is writable. You can use this parameter to rename the log files.The default file path is:macOSIf Sandbox is enabled: App~/Library/Logs/agorasdk.log. For example, /Users/<username>/Library/Containers/<AppBundleIdentifier>/Data/Library/Logs/agorasdk.log.If Sandbox is disabled: ~/Library/Logs/agorasdk.log.Windows:C:\Users\<user_name>\AppData\Local\Agora\<process_name>\agorasdk.log。
|
|
75
|
+
*/
|
|
76
|
+
filePath;
|
|
77
|
+
/**
|
|
78
|
+
* The size (KB) of an agorasdk.log file. The value range is [128,1024]. The default value is 1,024 KB. If you set fileSizeInKByte to a value lower than 128 KB, the SDK adjusts it to 128 KB. If you set fileSizeInKBytes to a value higher than 1,024 KB, the SDK adjusts it to 1,024 KB.
|
|
79
|
+
*/
|
|
80
|
+
fileSizeInKB;
|
|
81
|
+
/**
|
|
82
|
+
* The output level of the SDK log file. See LogLevel .For example, if you set the log level to WARN, the SDK outputs the logs within levels FATAL, ERROR, and WARN.
|
|
83
|
+
*/
|
|
84
|
+
level;
|
|
85
|
+
}
|
|
86
|
+
exports.LogConfig = LogConfig;
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IMediaEngine = exports.AudioMixingDualMonoMode = void 0;
|
|
4
|
-
require("./extension/IAgoraMediaEngineExtension");
|
|
5
|
-
/**
|
|
6
|
-
* The channel mode.
|
|
7
|
-
*/
|
|
8
|
-
var AudioMixingDualMonoMode;
|
|
9
|
-
(function (AudioMixingDualMonoMode) {
|
|
10
|
-
/**
|
|
11
|
-
* @ignore
|
|
12
|
-
*/
|
|
13
|
-
AudioMixingDualMonoMode[AudioMixingDualMonoMode["AudioMixingDualMonoAuto"] = 0] = "AudioMixingDualMonoAuto";
|
|
14
|
-
/**
|
|
15
|
-
* 1: Left channel mode. This mode replaces the audio of the right channel with the audio of the left channel, which means the user can only hear the audio of the left channel.
|
|
16
|
-
*/
|
|
17
|
-
AudioMixingDualMonoMode[AudioMixingDualMonoMode["AudioMixingDualMonoL"] = 1] = "AudioMixingDualMonoL";
|
|
18
|
-
/**
|
|
19
|
-
* 2: Right channel mode. This mode replaces the audio of the left channel with the audio of the right channel, which means the user can only hear the audio of the right channel.
|
|
20
|
-
*/
|
|
21
|
-
AudioMixingDualMonoMode[AudioMixingDualMonoMode["AudioMixingDualMonoR"] = 2] = "AudioMixingDualMonoR";
|
|
22
|
-
/**
|
|
23
|
-
* 3: Mixed channel mode. This mode mixes the audio of the left channel and the right channel, which means the user can hear the audio of the left channel and the right channel at the same time.
|
|
24
|
-
*/
|
|
25
|
-
AudioMixingDualMonoMode[AudioMixingDualMonoMode["AudioMixingDualMonoMix"] = 3] = "AudioMixingDualMonoMix";
|
|
26
|
-
})(AudioMixingDualMonoMode = exports.AudioMixingDualMonoMode || (exports.AudioMixingDualMonoMode = {}));
|
|
27
|
-
/**
|
|
28
|
-
* The IMediaEngine class.
|
|
29
|
-
*/
|
|
30
|
-
class IMediaEngine {
|
|
31
|
-
}
|
|
32
|
-
exports.IMediaEngine = IMediaEngine;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IMediaEngine = exports.AudioMixingDualMonoMode = void 0;
|
|
4
|
+
require("./extension/IAgoraMediaEngineExtension");
|
|
5
|
+
/**
|
|
6
|
+
* The channel mode.
|
|
7
|
+
*/
|
|
8
|
+
var AudioMixingDualMonoMode;
|
|
9
|
+
(function (AudioMixingDualMonoMode) {
|
|
10
|
+
/**
|
|
11
|
+
* @ignore
|
|
12
|
+
*/
|
|
13
|
+
AudioMixingDualMonoMode[AudioMixingDualMonoMode["AudioMixingDualMonoAuto"] = 0] = "AudioMixingDualMonoAuto";
|
|
14
|
+
/**
|
|
15
|
+
* 1: Left channel mode. This mode replaces the audio of the right channel with the audio of the left channel, which means the user can only hear the audio of the left channel.
|
|
16
|
+
*/
|
|
17
|
+
AudioMixingDualMonoMode[AudioMixingDualMonoMode["AudioMixingDualMonoL"] = 1] = "AudioMixingDualMonoL";
|
|
18
|
+
/**
|
|
19
|
+
* 2: Right channel mode. This mode replaces the audio of the left channel with the audio of the right channel, which means the user can only hear the audio of the right channel.
|
|
20
|
+
*/
|
|
21
|
+
AudioMixingDualMonoMode[AudioMixingDualMonoMode["AudioMixingDualMonoR"] = 2] = "AudioMixingDualMonoR";
|
|
22
|
+
/**
|
|
23
|
+
* 3: Mixed channel mode. This mode mixes the audio of the left channel and the right channel, which means the user can hear the audio of the left channel and the right channel at the same time.
|
|
24
|
+
*/
|
|
25
|
+
AudioMixingDualMonoMode[AudioMixingDualMonoMode["AudioMixingDualMonoMix"] = 3] = "AudioMixingDualMonoMix";
|
|
26
|
+
})(AudioMixingDualMonoMode = exports.AudioMixingDualMonoMode || (exports.AudioMixingDualMonoMode = {}));
|
|
27
|
+
/**
|
|
28
|
+
* The IMediaEngine class.
|
|
29
|
+
*/
|
|
30
|
+
class IMediaEngine {
|
|
31
|
+
}
|
|
32
|
+
exports.IMediaEngine = IMediaEngine;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IMediaPlayerCacheManager = exports.IMediaPlayer = void 0;
|
|
4
|
-
require("./extension/IAgoraMediaPlayerExtension");
|
|
5
|
-
/**
|
|
6
|
-
* This class provides media player functions and supports multiple instances.
|
|
7
|
-
*/
|
|
8
|
-
class IMediaPlayer {
|
|
9
|
-
}
|
|
10
|
-
exports.IMediaPlayer = IMediaPlayer;
|
|
11
|
-
/**
|
|
12
|
-
* This class provides methods to manage cached media files.
|
|
13
|
-
*/
|
|
14
|
-
class IMediaPlayerCacheManager {
|
|
15
|
-
}
|
|
16
|
-
exports.IMediaPlayerCacheManager = IMediaPlayerCacheManager;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IMediaPlayerCacheManager = exports.IMediaPlayer = void 0;
|
|
4
|
+
require("./extension/IAgoraMediaPlayerExtension");
|
|
5
|
+
/**
|
|
6
|
+
* This class provides media player functions and supports multiple instances.
|
|
7
|
+
*/
|
|
8
|
+
class IMediaPlayer {
|
|
9
|
+
}
|
|
10
|
+
exports.IMediaPlayer = IMediaPlayer;
|
|
11
|
+
/**
|
|
12
|
+
* This class provides methods to manage cached media files.
|
|
13
|
+
*/
|
|
14
|
+
class IMediaPlayerCacheManager {
|
|
15
|
+
}
|
|
16
|
+
exports.IMediaPlayerCacheManager = IMediaPlayerCacheManager;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
require("./extension/IAgoraMediaPlayerSourceExtension");
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
require("./extension/IAgoraMediaPlayerSourceExtension");
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IMediaRecorder = void 0;
|
|
4
|
-
require("./extension/IAgoraMediaRecorderExtension");
|
|
5
|
-
/**
|
|
6
|
-
* Used for recording audio and video on the client.
|
|
7
|
-
* IMediaRecorder can record the following:
|
|
8
|
-
*
|
|
9
|
-
*/
|
|
10
|
-
class IMediaRecorder {
|
|
11
|
-
}
|
|
12
|
-
exports.IMediaRecorder = IMediaRecorder;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IMediaRecorder = void 0;
|
|
4
|
+
require("./extension/IAgoraMediaRecorderExtension");
|
|
5
|
+
/**
|
|
6
|
+
* Used for recording audio and video on the client.
|
|
7
|
+
* IMediaRecorder can record the following:
|
|
8
|
+
* The audio captured by the local microphone and encoded in AAC format.The video captured by the local camera and encoded by the SDK.
|
|
9
|
+
*/
|
|
10
|
+
class IMediaRecorder {
|
|
11
|
+
}
|
|
12
|
+
exports.IMediaRecorder = IMediaRecorder;
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InputSeiData = exports.StreamingSrcState = exports.StreamingSrcErr = void 0;
|
|
4
|
+
require("./extension/IAgoraMediaStreamingSourceExtension");
|
|
5
|
+
/* enum_streamingsrcerr */
|
|
6
|
+
var StreamingSrcErr;
|
|
7
|
+
(function (StreamingSrcErr) {
|
|
8
|
+
/* enum_streamingsrcerr_StreamingSrcErrNone */
|
|
9
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrNone"] = 0] = "StreamingSrcErrNone";
|
|
10
|
+
/* enum_streamingsrcerr_StreamingSrcErrUnknown */
|
|
11
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrUnknown"] = 1] = "StreamingSrcErrUnknown";
|
|
12
|
+
/* enum_streamingsrcerr_StreamingSrcErrInvalidParam */
|
|
13
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrInvalidParam"] = 2] = "StreamingSrcErrInvalidParam";
|
|
14
|
+
/* enum_streamingsrcerr_StreamingSrcErrBadState */
|
|
15
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrBadState"] = 3] = "StreamingSrcErrBadState";
|
|
16
|
+
/* enum_streamingsrcerr_StreamingSrcErrNoMem */
|
|
17
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrNoMem"] = 4] = "StreamingSrcErrNoMem";
|
|
18
|
+
/* enum_streamingsrcerr_StreamingSrcErrBufferOverflow */
|
|
19
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrBufferOverflow"] = 5] = "StreamingSrcErrBufferOverflow";
|
|
20
|
+
/* enum_streamingsrcerr_StreamingSrcErrBufferUnderflow */
|
|
21
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrBufferUnderflow"] = 6] = "StreamingSrcErrBufferUnderflow";
|
|
22
|
+
/* enum_streamingsrcerr_StreamingSrcErrNotFound */
|
|
23
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrNotFound"] = 7] = "StreamingSrcErrNotFound";
|
|
24
|
+
/* enum_streamingsrcerr_StreamingSrcErrTimeout */
|
|
25
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrTimeout"] = 8] = "StreamingSrcErrTimeout";
|
|
26
|
+
/* enum_streamingsrcerr_StreamingSrcErrExpired */
|
|
27
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrExpired"] = 9] = "StreamingSrcErrExpired";
|
|
28
|
+
/* enum_streamingsrcerr_StreamingSrcErrUnsupported */
|
|
29
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrUnsupported"] = 10] = "StreamingSrcErrUnsupported";
|
|
30
|
+
/* enum_streamingsrcerr_StreamingSrcErrNotExist */
|
|
31
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrNotExist"] = 11] = "StreamingSrcErrNotExist";
|
|
32
|
+
/* enum_streamingsrcerr_StreamingSrcErrExist */
|
|
33
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrExist"] = 12] = "StreamingSrcErrExist";
|
|
34
|
+
/* enum_streamingsrcerr_StreamingSrcErrOpen */
|
|
35
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrOpen"] = 13] = "StreamingSrcErrOpen";
|
|
36
|
+
/* enum_streamingsrcerr_StreamingSrcErrClose */
|
|
37
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrClose"] = 14] = "StreamingSrcErrClose";
|
|
38
|
+
/* enum_streamingsrcerr_StreamingSrcErrRead */
|
|
39
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrRead"] = 15] = "StreamingSrcErrRead";
|
|
40
|
+
/* enum_streamingsrcerr_StreamingSrcErrWrite */
|
|
41
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrWrite"] = 16] = "StreamingSrcErrWrite";
|
|
42
|
+
/* enum_streamingsrcerr_StreamingSrcErrSeek */
|
|
43
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrSeek"] = 17] = "StreamingSrcErrSeek";
|
|
44
|
+
/* enum_streamingsrcerr_StreamingSrcErrEof */
|
|
45
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrEof"] = 18] = "StreamingSrcErrEof";
|
|
46
|
+
/* enum_streamingsrcerr_StreamingSrcErrCodecopen */
|
|
47
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrCodecopen"] = 19] = "StreamingSrcErrCodecopen";
|
|
48
|
+
/* enum_streamingsrcerr_StreamingSrcErrCodecclose */
|
|
49
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrCodecclose"] = 20] = "StreamingSrcErrCodecclose";
|
|
50
|
+
/* enum_streamingsrcerr_StreamingSrcErrCodecproc */
|
|
51
|
+
StreamingSrcErr[StreamingSrcErr["StreamingSrcErrCodecproc"] = 21] = "StreamingSrcErrCodecproc";
|
|
52
|
+
})(StreamingSrcErr = exports.StreamingSrcErr || (exports.StreamingSrcErr = {}));
|
|
53
|
+
/* enum_streamingsrcstate */
|
|
54
|
+
var StreamingSrcState;
|
|
55
|
+
(function (StreamingSrcState) {
|
|
56
|
+
/* enum_streamingsrcstate_StreamingSrcStateClosed */
|
|
57
|
+
StreamingSrcState[StreamingSrcState["StreamingSrcStateClosed"] = 0] = "StreamingSrcStateClosed";
|
|
58
|
+
/* enum_streamingsrcstate_StreamingSrcStateOpening */
|
|
59
|
+
StreamingSrcState[StreamingSrcState["StreamingSrcStateOpening"] = 1] = "StreamingSrcStateOpening";
|
|
60
|
+
/* enum_streamingsrcstate_StreamingSrcStateIdle */
|
|
61
|
+
StreamingSrcState[StreamingSrcState["StreamingSrcStateIdle"] = 2] = "StreamingSrcStateIdle";
|
|
62
|
+
/* enum_streamingsrcstate_StreamingSrcStatePlaying */
|
|
63
|
+
StreamingSrcState[StreamingSrcState["StreamingSrcStatePlaying"] = 3] = "StreamingSrcStatePlaying";
|
|
64
|
+
/* enum_streamingsrcstate_StreamingSrcStateSeeking */
|
|
65
|
+
StreamingSrcState[StreamingSrcState["StreamingSrcStateSeeking"] = 4] = "StreamingSrcStateSeeking";
|
|
66
|
+
/* enum_streamingsrcstate_StreamingSrcStateEof */
|
|
67
|
+
StreamingSrcState[StreamingSrcState["StreamingSrcStateEof"] = 5] = "StreamingSrcStateEof";
|
|
68
|
+
/* enum_streamingsrcstate_StreamingSrcStateError */
|
|
69
|
+
StreamingSrcState[StreamingSrcState["StreamingSrcStateError"] = 6] = "StreamingSrcStateError";
|
|
70
|
+
})(StreamingSrcState = exports.StreamingSrcState || (exports.StreamingSrcState = {}));
|
|
71
|
+
/* class_inputseidata */
|
|
72
|
+
class InputSeiData {
|
|
73
|
+
/* class_inputseidata_type */
|
|
74
|
+
type;
|
|
75
|
+
/* class_inputseidata_timestamp */
|
|
76
|
+
timestamp;
|
|
77
|
+
/* class_inputseidata_frame_index */
|
|
78
|
+
frame_index;
|
|
79
|
+
/* class_inputseidata_private_data */
|
|
80
|
+
private_data;
|
|
81
|
+
/* class_inputseidata_data_size */
|
|
82
|
+
data_size;
|
|
83
|
+
}
|
|
84
|
+
exports.InputSeiData = InputSeiData;
|