agora-electron-sdk 4.5.2 → 4.5.3-dev.1

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.
Files changed (411) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/README.md +6 -3
  3. package/js/example/src/renderer/examples/advanced/VideoEffect/videoEffectHelpers.js +308 -0
  4. package/js/{AgoraSdk.js → ts/AgoraSdk.js} +2 -12
  5. package/js/{Decoder → ts/Decoder}/index.js +1 -1
  6. package/js/{Private → ts/Private}/AgoraBase.js +829 -674
  7. package/js/{Private → ts/Private}/AgoraMediaBase.js +154 -151
  8. package/js/{Private → ts/Private}/AgoraMediaPlayerTypes.js +58 -54
  9. package/js/{Private → ts/Private}/IAgoraLog.js +13 -13
  10. package/js/{Private → ts/Private}/IAgoraMediaEngine.js +4 -4
  11. package/js/{Private → ts/Private}/IAgoraMediaPlayer.js +2 -2
  12. package/js/{Private → ts/Private}/IAgoraMusicContentCenter.js +1 -1
  13. package/js/{Private → ts/Private}/IAgoraRhythmPlayer.js +13 -13
  14. package/js/{Private → ts/Private}/IAgoraRtcEngine.js +150 -94
  15. package/js/{Private → ts/Private}/IAgoraRtcEngineEx.js +3 -3
  16. package/js/{Private → ts/Private}/IAgoraSpatialAudio.js +4 -4
  17. package/js/{Private → ts/Private}/IAudioDeviceManager.js +2 -2
  18. package/js/{Private → ts/Private}/impl/IAgoraMediaPlayerImpl.js +10 -0
  19. package/js/{Private → ts/Private}/impl/IAgoraRtcEngineExImpl.js +74 -0
  20. package/js/{Private → ts/Private}/impl/IAgoraRtcEngineImpl.js +233 -1
  21. package/js/{Private → ts/Private}/internal/IrisApiEngine.js +45 -0
  22. package/js/{Private → ts/Private}/internal/RtcEngineExInternal.js +74 -4
  23. package/js/ts/Private/internal/VideoEffectObjectInternal.js +14 -0
  24. package/js/{Private → ts/Private}/ti/IAgoraRtcEngine-ti.js +2 -0
  25. package/js/{Renderer → ts/Renderer}/AgoraView.js +19 -2
  26. package/js/{Renderer → ts/Renderer}/IRenderer.js +7 -4
  27. package/js/{Renderer → ts/Renderer}/IRendererCache.js +17 -1
  28. package/js/ts/Renderer/RendererCache.js +252 -0
  29. package/js/{Renderer → ts/Renderer}/RendererManager.js +13 -64
  30. package/js/{Renderer → ts/Renderer}/WebCodecsRenderer/index.js +5 -5
  31. package/js/{Renderer → ts/Renderer}/WebCodecsRendererCache.js +13 -1
  32. package/js/{Renderer → ts/Renderer}/WebGLRenderer/index.js +179 -26
  33. package/js/{Renderer → ts/Renderer}/YUVCanvasRenderer/index.js +12 -5
  34. package/js/{Utils.js → ts/Utils.js} +7 -7
  35. package/package.json +25 -12
  36. package/scripts/checkElectron.js +4 -2
  37. package/scripts/download.js +102 -0
  38. package/scripts/downloadPrebuild.js +2 -1
  39. package/scripts/synclib.js +2 -2
  40. package/ts/AgoraSdk.ts +2 -12
  41. package/ts/Decoder/index.ts +5 -1
  42. package/ts/Private/AgoraBase.ts +1259 -1060
  43. package/ts/Private/AgoraMediaBase.ts +351 -324
  44. package/ts/Private/AgoraMediaPlayerTypes.ts +94 -91
  45. package/ts/Private/IAgoraLog.ts +20 -18
  46. package/ts/Private/IAgoraMediaEngine.ts +86 -81
  47. package/ts/Private/IAgoraMediaPlayer.ts +196 -181
  48. package/ts/Private/IAgoraMediaPlayerSource.ts +40 -40
  49. package/ts/Private/IAgoraMusicContentCenter.ts +3 -3
  50. package/ts/Private/IAgoraRhythmPlayer.ts +15 -15
  51. package/ts/Private/IAgoraRtcEngine.ts +2492 -2047
  52. package/ts/Private/IAgoraRtcEngineEx.ts +434 -335
  53. package/ts/Private/IAgoraSpatialAudio.ts +43 -45
  54. package/ts/Private/IAudioDeviceManager.ts +106 -97
  55. package/ts/Private/impl/IAgoraMediaPlayerImpl.ts +12 -0
  56. package/ts/Private/impl/IAgoraRtcEngineExImpl.ts +138 -0
  57. package/ts/Private/impl/IAgoraRtcEngineImpl.ts +331 -0
  58. package/ts/Private/internal/IrisApiEngine.ts +47 -0
  59. package/ts/Private/internal/RtcEngineExInternal.ts +106 -9
  60. package/ts/Private/internal/VideoEffectObjectInternal.ts +14 -0
  61. package/ts/Private/ti/IAgoraRtcEngine-ti.ts +2 -0
  62. package/ts/Renderer/AgoraView.ts +32 -3
  63. package/ts/Renderer/IRenderer.ts +8 -3
  64. package/ts/Renderer/IRendererCache.ts +33 -0
  65. package/ts/Renderer/RendererCache.ts +211 -12
  66. package/ts/Renderer/RendererManager.ts +21 -99
  67. package/ts/Renderer/WebCodecsRenderer/index.ts +9 -6
  68. package/ts/Renderer/WebCodecsRendererCache.ts +17 -1
  69. package/ts/Renderer/WebGLRenderer/index.ts +246 -40
  70. package/ts/Renderer/YUVCanvasRenderer/index.ts +29 -16
  71. package/ts/Types.ts +14 -9
  72. package/ts/Utils.ts +8 -7
  73. package/types/example/src/renderer/examples/advanced/VideoEffect/videoEffectHelpers.d.ts +130 -0
  74. package/types/example/src/renderer/examples/advanced/VideoEffect/videoEffectHelpers.d.ts.map +1 -0
  75. package/types/{AgoraSdk.d.ts → ts/AgoraSdk.d.ts} +2 -12
  76. package/types/ts/AgoraSdk.d.ts.map +1 -0
  77. package/types/ts/Decoder/gpu-utils.d.ts.map +1 -0
  78. package/types/ts/Decoder/index.d.ts.map +1 -0
  79. package/types/ts/Private/AgoraBase.d.ts +5504 -0
  80. package/types/ts/Private/AgoraBase.d.ts.map +1 -0
  81. package/types/ts/Private/AgoraMediaBase.d.ts +1695 -0
  82. package/types/ts/Private/AgoraMediaBase.d.ts.map +1 -0
  83. package/types/ts/Private/AgoraMediaPlayerTypes.d.ts +456 -0
  84. package/types/ts/Private/AgoraMediaPlayerTypes.d.ts.map +1 -0
  85. package/types/ts/Private/IAgoraH265Transcoder.d.ts.map +1 -0
  86. package/types/ts/Private/IAgoraLog.d.ts +91 -0
  87. package/types/ts/Private/IAgoraLog.d.ts.map +1 -0
  88. package/types/ts/Private/IAgoraMediaEngine.d.ts +255 -0
  89. package/types/ts/Private/IAgoraMediaEngine.d.ts.map +1 -0
  90. package/types/ts/Private/IAgoraMediaPlayer.d.ts +662 -0
  91. package/types/ts/Private/IAgoraMediaPlayer.d.ts.map +1 -0
  92. package/types/ts/Private/IAgoraMediaPlayerSource.d.ts +109 -0
  93. package/types/ts/Private/IAgoraMediaPlayerSource.d.ts.map +1 -0
  94. package/types/ts/Private/IAgoraMediaRecorder.d.ts.map +1 -0
  95. package/types/ts/Private/IAgoraMediaStreamingSource.d.ts.map +1 -0
  96. package/types/{Private → ts/Private}/IAgoraMusicContentCenter.d.ts +3 -3
  97. package/types/ts/Private/IAgoraMusicContentCenter.d.ts.map +1 -0
  98. package/types/ts/Private/IAgoraRhythmPlayer.d.ts +65 -0
  99. package/types/ts/Private/IAgoraRhythmPlayer.d.ts.map +1 -0
  100. package/types/ts/Private/IAgoraRtcEngine.d.ts +6504 -0
  101. package/types/ts/Private/IAgoraRtcEngine.d.ts.map +1 -0
  102. package/types/ts/Private/IAgoraRtcEngineEx.d.ts +817 -0
  103. package/types/ts/Private/IAgoraRtcEngineEx.d.ts.map +1 -0
  104. package/types/ts/Private/IAgoraSpatialAudio.d.ts +194 -0
  105. package/types/ts/Private/IAgoraSpatialAudio.d.ts.map +1 -0
  106. package/types/ts/Private/IAudioDeviceManager.d.ts +321 -0
  107. package/types/ts/Private/IAudioDeviceManager.d.ts.map +1 -0
  108. package/types/ts/Private/extension/AgoraBaseExtension.d.ts.map +1 -0
  109. package/types/ts/Private/extension/AgoraMediaBaseExtension.d.ts.map +1 -0
  110. package/types/ts/Private/extension/AgoraMediaPlayerTypesExtension.d.ts.map +1 -0
  111. package/types/ts/Private/extension/IAgoraH265TranscoderExtension.d.ts.map +1 -0
  112. package/types/ts/Private/extension/IAgoraLogExtension.d.ts.map +1 -0
  113. package/types/ts/Private/extension/IAgoraMediaEngineExtension.d.ts.map +1 -0
  114. package/types/ts/Private/extension/IAgoraMediaPlayerExtension.d.ts.map +1 -0
  115. package/types/ts/Private/extension/IAgoraMediaPlayerSourceExtension.d.ts.map +1 -0
  116. package/types/ts/Private/extension/IAgoraMediaRecorderExtension.d.ts.map +1 -0
  117. package/types/ts/Private/extension/IAgoraMusicContentCenterExtension.d.ts.map +1 -0
  118. package/types/ts/Private/extension/IAgoraRhythmPlayerExtension.d.ts.map +1 -0
  119. package/types/ts/Private/extension/IAgoraRtcEngineExExtension.d.ts.map +1 -0
  120. package/types/ts/Private/extension/IAgoraRtcEngineExtension.d.ts.map +1 -0
  121. package/types/ts/Private/extension/IAgoraSpatialAudioExtension.d.ts.map +1 -0
  122. package/types/ts/Private/extension/IAudioDeviceManagerExtension.d.ts.map +1 -0
  123. package/types/ts/Private/impl/AgoraBaseImpl.d.ts.map +1 -0
  124. package/types/ts/Private/impl/AgoraMediaBaseImpl.d.ts.map +1 -0
  125. package/types/ts/Private/impl/IAgoraH265TranscoderImpl.d.ts.map +1 -0
  126. package/types/ts/Private/impl/IAgoraMediaEngineImpl.d.ts.map +1 -0
  127. package/types/{Private → ts/Private}/impl/IAgoraMediaPlayerImpl.d.ts +2 -0
  128. package/types/ts/Private/impl/IAgoraMediaPlayerImpl.d.ts.map +1 -0
  129. package/types/ts/Private/impl/IAgoraMediaPlayerSourceImpl.d.ts.map +1 -0
  130. package/types/ts/Private/impl/IAgoraMediaRecorderImpl.d.ts.map +1 -0
  131. package/types/ts/Private/impl/IAgoraMusicContentCenterImpl.d.ts.map +1 -0
  132. package/types/{Private → ts/Private}/impl/IAgoraRtcEngineExImpl.d.ts +7 -1
  133. package/types/ts/Private/impl/IAgoraRtcEngineExImpl.d.ts.map +1 -0
  134. package/types/{Private → ts/Private}/impl/IAgoraRtcEngineImpl.d.ts +27 -1
  135. package/types/ts/Private/impl/IAgoraRtcEngineImpl.d.ts.map +1 -0
  136. package/types/ts/Private/impl/IAgoraSpatialAudioImpl.d.ts.map +1 -0
  137. package/types/ts/Private/impl/IAudioDeviceManagerImpl.d.ts.map +1 -0
  138. package/types/ts/Private/internal/AgoraH265TranscoderInternal.d.ts.map +1 -0
  139. package/types/ts/Private/internal/AgoraMediaBaseInternal.d.ts.map +1 -0
  140. package/types/ts/Private/internal/AudioDeviceManagerInternal.d.ts.map +1 -0
  141. package/types/ts/Private/internal/IrisApiEngine.d.ts.map +1 -0
  142. package/types/ts/Private/internal/LocalSpatialAudioEngineInternal.d.ts.map +1 -0
  143. package/types/ts/Private/internal/MediaEngineInternal.d.ts.map +1 -0
  144. package/types/ts/Private/internal/MediaPlayerInternal.d.ts.map +1 -0
  145. package/types/ts/Private/internal/MediaRecorderInternal.d.ts.map +1 -0
  146. package/types/ts/Private/internal/MusicContentCenterInternal.d.ts.map +1 -0
  147. package/types/{Private → ts/Private}/internal/RtcEngineExInternal.d.ts +10 -4
  148. package/types/ts/Private/internal/RtcEngineExInternal.d.ts.map +1 -0
  149. package/types/ts/Private/internal/VideoEffectObjectInternal.d.ts +7 -0
  150. package/types/ts/Private/internal/VideoEffectObjectInternal.d.ts.map +1 -0
  151. package/types/{Private → ts/Private}/ipc/main.d.ts.map +1 -1
  152. package/types/ts/Private/ipc/renderer.d.ts.map +1 -0
  153. package/types/ts/Private/ti/AgoraBase-ti.d.ts.map +1 -0
  154. package/types/ts/Private/ti/AgoraMediaBase-ti.d.ts.map +1 -0
  155. package/types/ts/Private/ti/AgoraMediaPlayerTypes-ti.d.ts.map +1 -0
  156. package/types/ts/Private/ti/IAgoraH265Transcoder-ti.d.ts.map +1 -0
  157. package/types/ts/Private/ti/IAgoraLog-ti.d.ts.map +1 -0
  158. package/types/ts/Private/ti/IAgoraMediaEngine-ti.d.ts.map +1 -0
  159. package/types/ts/Private/ti/IAgoraMediaPlayer-ti.d.ts.map +1 -0
  160. package/types/ts/Private/ti/IAgoraMediaPlayerSource-ti.d.ts.map +1 -0
  161. package/types/ts/Private/ti/IAgoraMediaRecorder-ti.d.ts.map +1 -0
  162. package/types/ts/Private/ti/IAgoraMediaStreamingSource-ti.d.ts.map +1 -0
  163. package/types/ts/Private/ti/IAgoraMusicContentCenter-ti.d.ts.map +1 -0
  164. package/types/ts/Private/ti/IAgoraRhythmPlayer-ti.d.ts.map +1 -0
  165. package/types/ts/Private/ti/IAgoraRtcEngine-ti.d.ts.map +1 -0
  166. package/types/ts/Private/ti/IAgoraRtcEngineEx-ti.d.ts.map +1 -0
  167. package/types/ts/Private/ti/IAgoraSpatialAudio-ti.d.ts.map +1 -0
  168. package/types/ts/Private/ti/IAudioDeviceManager-ti.d.ts.map +1 -0
  169. package/types/{Renderer → ts/Renderer}/AgoraView.d.ts +6 -0
  170. package/types/ts/Renderer/AgoraView.d.ts.map +1 -0
  171. package/types/ts/Renderer/CapabilityManager.d.ts.map +1 -0
  172. package/types/{Renderer → ts/Renderer}/IRenderer.d.ts +2 -2
  173. package/types/ts/Renderer/IRenderer.d.ts.map +1 -0
  174. package/types/{Renderer → ts/Renderer}/IRendererCache.d.ts +21 -1
  175. package/types/ts/Renderer/IRendererCache.d.ts.map +1 -0
  176. package/types/{Renderer → ts/Renderer}/RendererCache.d.ts +27 -0
  177. package/types/ts/Renderer/RendererCache.d.ts.map +1 -0
  178. package/types/{Renderer → ts/Renderer}/RendererManager.d.ts +4 -17
  179. package/types/ts/Renderer/RendererManager.d.ts.map +1 -0
  180. package/types/{Renderer → ts/Renderer}/WebCodecsRenderer/index.d.ts +3 -3
  181. package/types/ts/Renderer/WebCodecsRenderer/index.d.ts.map +1 -0
  182. package/types/{Renderer → ts/Renderer}/WebCodecsRendererCache.d.ts +7 -0
  183. package/types/ts/Renderer/WebCodecsRendererCache.d.ts.map +1 -0
  184. package/types/{Renderer → ts/Renderer}/WebGLRenderer/index.d.ts +12 -2
  185. package/types/ts/Renderer/WebGLRenderer/index.d.ts.map +1 -0
  186. package/types/ts/Renderer/WebGLRenderer/webgl-utils.d.ts.map +1 -0
  187. package/types/ts/Renderer/YUVCanvasRenderer/index.d.ts +10 -0
  188. package/types/ts/Renderer/YUVCanvasRenderer/index.d.ts.map +1 -0
  189. package/types/ts/Renderer/index.d.ts.map +1 -0
  190. package/types/{Types.d.ts → ts/Types.d.ts} +11 -6
  191. package/types/ts/Types.d.ts.map +1 -0
  192. package/types/{Utils.d.ts → ts/Utils.d.ts} +1 -1
  193. package/types/ts/Utils.d.ts.map +1 -0
  194. package/js/Renderer/RendererCache.js +0 -100
  195. package/types/AgoraSdk.d.ts.map +0 -1
  196. package/types/Decoder/gpu-utils.d.ts.map +0 -1
  197. package/types/Decoder/index.d.ts.map +0 -1
  198. package/types/Private/AgoraBase.d.ts +0 -5310
  199. package/types/Private/AgoraBase.d.ts.map +0 -1
  200. package/types/Private/AgoraMediaBase.d.ts +0 -1668
  201. package/types/Private/AgoraMediaBase.d.ts.map +0 -1
  202. package/types/Private/AgoraMediaPlayerTypes.d.ts +0 -453
  203. package/types/Private/AgoraMediaPlayerTypes.d.ts.map +0 -1
  204. package/types/Private/IAgoraH265Transcoder.d.ts.map +0 -1
  205. package/types/Private/IAgoraLog.d.ts +0 -89
  206. package/types/Private/IAgoraLog.d.ts.map +0 -1
  207. package/types/Private/IAgoraMediaEngine.d.ts +0 -250
  208. package/types/Private/IAgoraMediaEngine.d.ts.map +0 -1
  209. package/types/Private/IAgoraMediaPlayer.d.ts +0 -648
  210. package/types/Private/IAgoraMediaPlayer.d.ts.map +0 -1
  211. package/types/Private/IAgoraMediaPlayerSource.d.ts +0 -109
  212. package/types/Private/IAgoraMediaPlayerSource.d.ts.map +0 -1
  213. package/types/Private/IAgoraMediaRecorder.d.ts.map +0 -1
  214. package/types/Private/IAgoraMediaStreamingSource.d.ts.map +0 -1
  215. package/types/Private/IAgoraMusicContentCenter.d.ts.map +0 -1
  216. package/types/Private/IAgoraRhythmPlayer.d.ts +0 -65
  217. package/types/Private/IAgoraRhythmPlayer.d.ts.map +0 -1
  218. package/types/Private/IAgoraRtcEngine.d.ts +0 -6103
  219. package/types/Private/IAgoraRtcEngine.d.ts.map +0 -1
  220. package/types/Private/IAgoraRtcEngineEx.d.ts +0 -741
  221. package/types/Private/IAgoraRtcEngineEx.d.ts.map +0 -1
  222. package/types/Private/IAgoraSpatialAudio.d.ts +0 -196
  223. package/types/Private/IAgoraSpatialAudio.d.ts.map +0 -1
  224. package/types/Private/IAudioDeviceManager.d.ts +0 -312
  225. package/types/Private/IAudioDeviceManager.d.ts.map +0 -1
  226. package/types/Private/extension/AgoraBaseExtension.d.ts.map +0 -1
  227. package/types/Private/extension/AgoraMediaBaseExtension.d.ts.map +0 -1
  228. package/types/Private/extension/AgoraMediaPlayerTypesExtension.d.ts.map +0 -1
  229. package/types/Private/extension/IAgoraH265TranscoderExtension.d.ts.map +0 -1
  230. package/types/Private/extension/IAgoraLogExtension.d.ts.map +0 -1
  231. package/types/Private/extension/IAgoraMediaEngineExtension.d.ts.map +0 -1
  232. package/types/Private/extension/IAgoraMediaPlayerExtension.d.ts.map +0 -1
  233. package/types/Private/extension/IAgoraMediaPlayerSourceExtension.d.ts.map +0 -1
  234. package/types/Private/extension/IAgoraMediaRecorderExtension.d.ts.map +0 -1
  235. package/types/Private/extension/IAgoraMusicContentCenterExtension.d.ts.map +0 -1
  236. package/types/Private/extension/IAgoraRhythmPlayerExtension.d.ts.map +0 -1
  237. package/types/Private/extension/IAgoraRtcEngineExExtension.d.ts.map +0 -1
  238. package/types/Private/extension/IAgoraRtcEngineExtension.d.ts.map +0 -1
  239. package/types/Private/extension/IAgoraSpatialAudioExtension.d.ts.map +0 -1
  240. package/types/Private/extension/IAudioDeviceManagerExtension.d.ts.map +0 -1
  241. package/types/Private/impl/AgoraBaseImpl.d.ts.map +0 -1
  242. package/types/Private/impl/AgoraMediaBaseImpl.d.ts.map +0 -1
  243. package/types/Private/impl/IAgoraH265TranscoderImpl.d.ts.map +0 -1
  244. package/types/Private/impl/IAgoraMediaEngineImpl.d.ts.map +0 -1
  245. package/types/Private/impl/IAgoraMediaPlayerImpl.d.ts.map +0 -1
  246. package/types/Private/impl/IAgoraMediaPlayerSourceImpl.d.ts.map +0 -1
  247. package/types/Private/impl/IAgoraMediaRecorderImpl.d.ts.map +0 -1
  248. package/types/Private/impl/IAgoraMusicContentCenterImpl.d.ts.map +0 -1
  249. package/types/Private/impl/IAgoraRtcEngineExImpl.d.ts.map +0 -1
  250. package/types/Private/impl/IAgoraRtcEngineImpl.d.ts.map +0 -1
  251. package/types/Private/impl/IAgoraSpatialAudioImpl.d.ts.map +0 -1
  252. package/types/Private/impl/IAudioDeviceManagerImpl.d.ts.map +0 -1
  253. package/types/Private/internal/AgoraH265TranscoderInternal.d.ts.map +0 -1
  254. package/types/Private/internal/AgoraMediaBaseInternal.d.ts.map +0 -1
  255. package/types/Private/internal/AudioDeviceManagerInternal.d.ts.map +0 -1
  256. package/types/Private/internal/IrisApiEngine.d.ts.map +0 -1
  257. package/types/Private/internal/LocalSpatialAudioEngineInternal.d.ts.map +0 -1
  258. package/types/Private/internal/MediaEngineInternal.d.ts.map +0 -1
  259. package/types/Private/internal/MediaPlayerInternal.d.ts.map +0 -1
  260. package/types/Private/internal/MediaRecorderInternal.d.ts.map +0 -1
  261. package/types/Private/internal/MusicContentCenterInternal.d.ts.map +0 -1
  262. package/types/Private/internal/RtcEngineExInternal.d.ts.map +0 -1
  263. package/types/Private/ipc/renderer.d.ts.map +0 -1
  264. package/types/Private/ti/AgoraBase-ti.d.ts.map +0 -1
  265. package/types/Private/ti/AgoraMediaBase-ti.d.ts.map +0 -1
  266. package/types/Private/ti/AgoraMediaPlayerTypes-ti.d.ts.map +0 -1
  267. package/types/Private/ti/IAgoraH265Transcoder-ti.d.ts.map +0 -1
  268. package/types/Private/ti/IAgoraLog-ti.d.ts.map +0 -1
  269. package/types/Private/ti/IAgoraMediaEngine-ti.d.ts.map +0 -1
  270. package/types/Private/ti/IAgoraMediaPlayer-ti.d.ts.map +0 -1
  271. package/types/Private/ti/IAgoraMediaPlayerSource-ti.d.ts.map +0 -1
  272. package/types/Private/ti/IAgoraMediaRecorder-ti.d.ts.map +0 -1
  273. package/types/Private/ti/IAgoraMediaStreamingSource-ti.d.ts.map +0 -1
  274. package/types/Private/ti/IAgoraMusicContentCenter-ti.d.ts.map +0 -1
  275. package/types/Private/ti/IAgoraRhythmPlayer-ti.d.ts.map +0 -1
  276. package/types/Private/ti/IAgoraRtcEngine-ti.d.ts.map +0 -1
  277. package/types/Private/ti/IAgoraRtcEngineEx-ti.d.ts.map +0 -1
  278. package/types/Private/ti/IAgoraSpatialAudio-ti.d.ts.map +0 -1
  279. package/types/Private/ti/IAudioDeviceManager-ti.d.ts.map +0 -1
  280. package/types/Renderer/AgoraView.d.ts.map +0 -1
  281. package/types/Renderer/CapabilityManager.d.ts.map +0 -1
  282. package/types/Renderer/IRenderer.d.ts.map +0 -1
  283. package/types/Renderer/IRendererCache.d.ts.map +0 -1
  284. package/types/Renderer/RendererCache.d.ts.map +0 -1
  285. package/types/Renderer/RendererManager.d.ts.map +0 -1
  286. package/types/Renderer/WebCodecsRenderer/index.d.ts.map +0 -1
  287. package/types/Renderer/WebCodecsRendererCache.d.ts.map +0 -1
  288. package/types/Renderer/WebGLRenderer/index.d.ts.map +0 -1
  289. package/types/Renderer/WebGLRenderer/webgl-utils.d.ts.map +0 -1
  290. package/types/Renderer/YUVCanvasRenderer/index.d.ts +0 -9
  291. package/types/Renderer/YUVCanvasRenderer/index.d.ts.map +0 -1
  292. package/types/Renderer/index.d.ts.map +0 -1
  293. package/types/Types.d.ts.map +0 -1
  294. package/types/Utils.d.ts.map +0 -1
  295. /package/js/{Decoder → ts/Decoder}/gpu-utils.js +0 -0
  296. /package/js/{Private → ts/Private}/IAgoraH265Transcoder.js +0 -0
  297. /package/js/{Private → ts/Private}/IAgoraMediaPlayerSource.js +0 -0
  298. /package/js/{Private → ts/Private}/IAgoraMediaRecorder.js +0 -0
  299. /package/js/{Private → ts/Private}/IAgoraMediaStreamingSource.js +0 -0
  300. /package/js/{Private → ts/Private}/extension/AgoraBaseExtension.js +0 -0
  301. /package/js/{Private → ts/Private}/extension/AgoraMediaBaseExtension.js +0 -0
  302. /package/js/{Private → ts/Private}/extension/AgoraMediaPlayerTypesExtension.js +0 -0
  303. /package/js/{Private → ts/Private}/extension/IAgoraH265TranscoderExtension.js +0 -0
  304. /package/js/{Private → ts/Private}/extension/IAgoraLogExtension.js +0 -0
  305. /package/js/{Private → ts/Private}/extension/IAgoraMediaEngineExtension.js +0 -0
  306. /package/js/{Private → ts/Private}/extension/IAgoraMediaPlayerExtension.js +0 -0
  307. /package/js/{Private → ts/Private}/extension/IAgoraMediaPlayerSourceExtension.js +0 -0
  308. /package/js/{Private → ts/Private}/extension/IAgoraMediaRecorderExtension.js +0 -0
  309. /package/js/{Private → ts/Private}/extension/IAgoraMusicContentCenterExtension.js +0 -0
  310. /package/js/{Private → ts/Private}/extension/IAgoraRhythmPlayerExtension.js +0 -0
  311. /package/js/{Private → ts/Private}/extension/IAgoraRtcEngineExExtension.js +0 -0
  312. /package/js/{Private → ts/Private}/extension/IAgoraRtcEngineExtension.js +0 -0
  313. /package/js/{Private → ts/Private}/extension/IAgoraSpatialAudioExtension.js +0 -0
  314. /package/js/{Private → ts/Private}/extension/IAudioDeviceManagerExtension.js +0 -0
  315. /package/js/{Private → ts/Private}/impl/AgoraBaseImpl.js +0 -0
  316. /package/js/{Private → ts/Private}/impl/AgoraMediaBaseImpl.js +0 -0
  317. /package/js/{Private → ts/Private}/impl/IAgoraH265TranscoderImpl.js +0 -0
  318. /package/js/{Private → ts/Private}/impl/IAgoraMediaEngineImpl.js +0 -0
  319. /package/js/{Private → ts/Private}/impl/IAgoraMediaPlayerSourceImpl.js +0 -0
  320. /package/js/{Private → ts/Private}/impl/IAgoraMediaRecorderImpl.js +0 -0
  321. /package/js/{Private → ts/Private}/impl/IAgoraMusicContentCenterImpl.js +0 -0
  322. /package/js/{Private → ts/Private}/impl/IAgoraSpatialAudioImpl.js +0 -0
  323. /package/js/{Private → ts/Private}/impl/IAudioDeviceManagerImpl.js +0 -0
  324. /package/js/{Private → ts/Private}/internal/AgoraH265TranscoderInternal.js +0 -0
  325. /package/js/{Private → ts/Private}/internal/AgoraMediaBaseInternal.js +0 -0
  326. /package/js/{Private → ts/Private}/internal/AudioDeviceManagerInternal.js +0 -0
  327. /package/js/{Private → ts/Private}/internal/LocalSpatialAudioEngineInternal.js +0 -0
  328. /package/js/{Private → ts/Private}/internal/MediaEngineInternal.js +0 -0
  329. /package/js/{Private → ts/Private}/internal/MediaPlayerInternal.js +0 -0
  330. /package/js/{Private → ts/Private}/internal/MediaRecorderInternal.js +0 -0
  331. /package/js/{Private → ts/Private}/internal/MusicContentCenterInternal.js +0 -0
  332. /package/js/{Private → ts/Private}/ipc/main.js +0 -0
  333. /package/js/{Private → ts/Private}/ipc/renderer.js +0 -0
  334. /package/js/{Private → ts/Private}/ti/AgoraBase-ti.js +0 -0
  335. /package/js/{Private → ts/Private}/ti/AgoraMediaBase-ti.js +0 -0
  336. /package/js/{Private → ts/Private}/ti/AgoraMediaPlayerTypes-ti.js +0 -0
  337. /package/js/{Private → ts/Private}/ti/IAgoraH265Transcoder-ti.js +0 -0
  338. /package/js/{Private → ts/Private}/ti/IAgoraLog-ti.js +0 -0
  339. /package/js/{Private → ts/Private}/ti/IAgoraMediaEngine-ti.js +0 -0
  340. /package/js/{Private → ts/Private}/ti/IAgoraMediaPlayer-ti.js +0 -0
  341. /package/js/{Private → ts/Private}/ti/IAgoraMediaPlayerSource-ti.js +0 -0
  342. /package/js/{Private → ts/Private}/ti/IAgoraMediaRecorder-ti.js +0 -0
  343. /package/js/{Private → ts/Private}/ti/IAgoraMediaStreamingSource-ti.js +0 -0
  344. /package/js/{Private → ts/Private}/ti/IAgoraMusicContentCenter-ti.js +0 -0
  345. /package/js/{Private → ts/Private}/ti/IAgoraRhythmPlayer-ti.js +0 -0
  346. /package/js/{Private → ts/Private}/ti/IAgoraRtcEngineEx-ti.js +0 -0
  347. /package/js/{Private → ts/Private}/ti/IAgoraSpatialAudio-ti.js +0 -0
  348. /package/js/{Private → ts/Private}/ti/IAudioDeviceManager-ti.js +0 -0
  349. /package/js/{Renderer → ts/Renderer}/CapabilityManager.js +0 -0
  350. /package/js/{Renderer → ts/Renderer}/WebGLRenderer/webgl-utils.js +0 -0
  351. /package/js/{Renderer → ts/Renderer}/index.js +0 -0
  352. /package/js/{Types.js → ts/Types.js} +0 -0
  353. /package/types/{Decoder → ts/Decoder}/gpu-utils.d.ts +0 -0
  354. /package/types/{Decoder → ts/Decoder}/index.d.ts +0 -0
  355. /package/types/{Private → ts/Private}/IAgoraH265Transcoder.d.ts +0 -0
  356. /package/types/{Private → ts/Private}/IAgoraMediaRecorder.d.ts +0 -0
  357. /package/types/{Private → ts/Private}/IAgoraMediaStreamingSource.d.ts +0 -0
  358. /package/types/{Private → ts/Private}/extension/AgoraBaseExtension.d.ts +0 -0
  359. /package/types/{Private → ts/Private}/extension/AgoraMediaBaseExtension.d.ts +0 -0
  360. /package/types/{Private → ts/Private}/extension/AgoraMediaPlayerTypesExtension.d.ts +0 -0
  361. /package/types/{Private → ts/Private}/extension/IAgoraH265TranscoderExtension.d.ts +0 -0
  362. /package/types/{Private → ts/Private}/extension/IAgoraLogExtension.d.ts +0 -0
  363. /package/types/{Private → ts/Private}/extension/IAgoraMediaEngineExtension.d.ts +0 -0
  364. /package/types/{Private → ts/Private}/extension/IAgoraMediaPlayerExtension.d.ts +0 -0
  365. /package/types/{Private → ts/Private}/extension/IAgoraMediaPlayerSourceExtension.d.ts +0 -0
  366. /package/types/{Private → ts/Private}/extension/IAgoraMediaRecorderExtension.d.ts +0 -0
  367. /package/types/{Private → ts/Private}/extension/IAgoraMusicContentCenterExtension.d.ts +0 -0
  368. /package/types/{Private → ts/Private}/extension/IAgoraRhythmPlayerExtension.d.ts +0 -0
  369. /package/types/{Private → ts/Private}/extension/IAgoraRtcEngineExExtension.d.ts +0 -0
  370. /package/types/{Private → ts/Private}/extension/IAgoraRtcEngineExtension.d.ts +0 -0
  371. /package/types/{Private → ts/Private}/extension/IAgoraSpatialAudioExtension.d.ts +0 -0
  372. /package/types/{Private → ts/Private}/extension/IAudioDeviceManagerExtension.d.ts +0 -0
  373. /package/types/{Private → ts/Private}/impl/AgoraBaseImpl.d.ts +0 -0
  374. /package/types/{Private → ts/Private}/impl/AgoraMediaBaseImpl.d.ts +0 -0
  375. /package/types/{Private → ts/Private}/impl/IAgoraH265TranscoderImpl.d.ts +0 -0
  376. /package/types/{Private → ts/Private}/impl/IAgoraMediaEngineImpl.d.ts +0 -0
  377. /package/types/{Private → ts/Private}/impl/IAgoraMediaPlayerSourceImpl.d.ts +0 -0
  378. /package/types/{Private → ts/Private}/impl/IAgoraMediaRecorderImpl.d.ts +0 -0
  379. /package/types/{Private → ts/Private}/impl/IAgoraMusicContentCenterImpl.d.ts +0 -0
  380. /package/types/{Private → ts/Private}/impl/IAgoraSpatialAudioImpl.d.ts +0 -0
  381. /package/types/{Private → ts/Private}/impl/IAudioDeviceManagerImpl.d.ts +0 -0
  382. /package/types/{Private → ts/Private}/internal/AgoraH265TranscoderInternal.d.ts +0 -0
  383. /package/types/{Private → ts/Private}/internal/AgoraMediaBaseInternal.d.ts +0 -0
  384. /package/types/{Private → ts/Private}/internal/AudioDeviceManagerInternal.d.ts +0 -0
  385. /package/types/{Private → ts/Private}/internal/IrisApiEngine.d.ts +0 -0
  386. /package/types/{Private → ts/Private}/internal/LocalSpatialAudioEngineInternal.d.ts +0 -0
  387. /package/types/{Private → ts/Private}/internal/MediaEngineInternal.d.ts +0 -0
  388. /package/types/{Private → ts/Private}/internal/MediaPlayerInternal.d.ts +0 -0
  389. /package/types/{Private → ts/Private}/internal/MediaRecorderInternal.d.ts +0 -0
  390. /package/types/{Private → ts/Private}/internal/MusicContentCenterInternal.d.ts +0 -0
  391. /package/types/{Private → ts/Private}/ipc/main.d.ts +0 -0
  392. /package/types/{Private → ts/Private}/ipc/renderer.d.ts +0 -0
  393. /package/types/{Private → ts/Private}/ti/AgoraBase-ti.d.ts +0 -0
  394. /package/types/{Private → ts/Private}/ti/AgoraMediaBase-ti.d.ts +0 -0
  395. /package/types/{Private → ts/Private}/ti/AgoraMediaPlayerTypes-ti.d.ts +0 -0
  396. /package/types/{Private → ts/Private}/ti/IAgoraH265Transcoder-ti.d.ts +0 -0
  397. /package/types/{Private → ts/Private}/ti/IAgoraLog-ti.d.ts +0 -0
  398. /package/types/{Private → ts/Private}/ti/IAgoraMediaEngine-ti.d.ts +0 -0
  399. /package/types/{Private → ts/Private}/ti/IAgoraMediaPlayer-ti.d.ts +0 -0
  400. /package/types/{Private → ts/Private}/ti/IAgoraMediaPlayerSource-ti.d.ts +0 -0
  401. /package/types/{Private → ts/Private}/ti/IAgoraMediaRecorder-ti.d.ts +0 -0
  402. /package/types/{Private → ts/Private}/ti/IAgoraMediaStreamingSource-ti.d.ts +0 -0
  403. /package/types/{Private → ts/Private}/ti/IAgoraMusicContentCenter-ti.d.ts +0 -0
  404. /package/types/{Private → ts/Private}/ti/IAgoraRhythmPlayer-ti.d.ts +0 -0
  405. /package/types/{Private → ts/Private}/ti/IAgoraRtcEngine-ti.d.ts +0 -0
  406. /package/types/{Private → ts/Private}/ti/IAgoraRtcEngineEx-ti.d.ts +0 -0
  407. /package/types/{Private → ts/Private}/ti/IAgoraSpatialAudio-ti.d.ts +0 -0
  408. /package/types/{Private → ts/Private}/ti/IAudioDeviceManager-ti.d.ts +0 -0
  409. /package/types/{Renderer → ts/Renderer}/CapabilityManager.d.ts +0 -0
  410. /package/types/{Renderer → ts/Renderer}/WebGLRenderer/webgl-utils.d.ts +0 -0
  411. /package/types/{Renderer → ts/Renderer}/index.d.ts +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraRtcEngineEx.d.ts","sourceRoot":"","sources":["../../../ts/Private/IAgoraRtcEngineEx.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,194 @@
1
+ import './extension/IAgoraSpatialAudioExtension';
2
+ import { RtcConnection } from './IAgoraRtcEngineEx';
3
+ /**
4
+ * Spatial position information of a remote user or media player.
5
+ */
6
+ export declare class RemoteVoicePositionInfo {
7
+ /**
8
+ * Coordinates in the world coordinate system. This parameter is an array of length 3, representing the coordinates in the forward, right, and up directions respectively.
9
+ */
10
+ position?: number[];
11
+ /**
12
+ * Unit vector of the forward axis in the world coordinate system. This parameter is an array of length 3, representing the forward, right, and up directions respectively.
13
+ */
14
+ forward?: number[];
15
+ }
16
+ /**
17
+ * Sound isolation zone settings.
18
+ */
19
+ export declare class SpatialAudioZone {
20
+ /**
21
+ * ID of the sound isolation zone.
22
+ */
23
+ zoneSetId?: number;
24
+ /**
25
+ * Spatial center point of the sound isolation zone. This parameter is an array of length 3, representing the coordinates in the forward, right, and up directions.
26
+ */
27
+ position?: number[];
28
+ /**
29
+ * Unit vector in the forward direction from position. This parameter is an array of length 3 representing the coordinates in the forward, right, and up directions.
30
+ */
31
+ forward?: number[];
32
+ /**
33
+ * Unit vector in the right direction from position. This parameter is an array of length 3 representing the coordinates in the forward, right, and up directions.
34
+ */
35
+ right?: number[];
36
+ /**
37
+ * Unit vector in the upward direction from position. This parameter is an array of length 3 representing the coordinates in the forward, right, and up directions.
38
+ */
39
+ up?: number[];
40
+ /**
41
+ * Treating the sound isolation zone as a cube, this represents the length of the forward edge, in game engine units.
42
+ */
43
+ forwardLength?: number;
44
+ /**
45
+ * Treating the sound isolation zone as a cube, this represents the length of the right edge, in game engine units.
46
+ */
47
+ rightLength?: number;
48
+ /**
49
+ * Treating the sound isolation zone as a cube, this represents the length of the upward edge, in game engine units.
50
+ */
51
+ upLength?: number;
52
+ /**
53
+ * Sound attenuation coefficient when users inside and outside the sound isolation zone communicate. Value range: [0,1]:
54
+ * 0: Broadcast mode. Volume and timbre do not attenuate with distance.
55
+ * (0,0.5): Weak attenuation. Volume and timbre attenuate slightly, allowing sound to travel farther than in real environments.
56
+ * 0.5: Simulates real-world volume attenuation. Equivalent to not setting audioAttenuation.
57
+ * (0.5,1]: Strong attenuation (default is 1). Volume and timbre attenuate rapidly.
58
+ */
59
+ audioAttenuation?: number;
60
+ }
61
+ /**
62
+ * This class implements spatial audio by calculating user coordinates through the SDK.
63
+ *
64
+ * This class inherits from IBaseSpatialAudioEngine. Before calling other APIs in this class, you need to call the initialize method to initialize it.
65
+ */
66
+ export declare abstract class ILocalSpatialAudioEngine {
67
+ /**
68
+ * @ignore
69
+ */
70
+ abstract release(): void;
71
+ /**
72
+ * Initializes ILocalSpatialAudioEngine.
73
+ *
74
+ * You need to call this method to initialize ILocalSpatialAudioEngine before calling any other methods in the ILocalSpatialAudioEngine class.
75
+ * The SDK supports only one ILocalSpatialAudioEngine instance per app.
76
+ *
77
+ * @returns
78
+ * 0: Success.
79
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
80
+ */
81
+ abstract initialize(): number;
82
+ /**
83
+ * Updates the spatial position information of a remote user.
84
+ *
85
+ * After successfully calling this method, the SDK calculates the spatial audio parameters based on the relative position between the local and remote users. This method must be called after joinChannel.
86
+ *
87
+ * @param uid User ID. Must be the same as the user ID used when joining the channel.
88
+ * @param posInfo The spatial position information of the remote user. See RemoteVoicePositionInfo.
89
+ *
90
+ * @returns
91
+ * 0: Success.
92
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
93
+ */
94
+ abstract updateRemotePosition(uid: number, posInfo: RemoteVoicePositionInfo): number;
95
+ /**
96
+ * @ignore
97
+ */
98
+ abstract updateRemotePositionEx(uid: number, posInfo: RemoteVoicePositionInfo, connection: RtcConnection): number;
99
+ /**
100
+ * Deletes the spatial position information of the specified remote user.
101
+ *
102
+ * After this method is successfully called, the local user will no longer hear the specified remote user.
103
+ * To avoid wasting computing resources after leaving the channel, you need to call this method to delete the spatial position information of the specified remote user. Otherwise, the spatial position information of that user will be retained. When the number of remote users exceeds the maximum number of audio streams set in setMaxAudioRecvCount, the SDK will automatically unsubscribe from the audio streams of the farthest users based on relative distance.
104
+ *
105
+ * @param uid User ID. Must be the same as the user ID used when joining the channel.
106
+ *
107
+ * @returns
108
+ * 0: Success.
109
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
110
+ */
111
+ abstract removeRemotePosition(uid: number): number;
112
+ /**
113
+ * @ignore
114
+ */
115
+ abstract removeRemotePositionEx(uid: number, connection: RtcConnection): number;
116
+ /**
117
+ * @ignore
118
+ */
119
+ abstract clearRemotePositionsEx(connection: RtcConnection): number;
120
+ /**
121
+ * @ignore
122
+ */
123
+ abstract updateSelfPositionEx(position: number[], axisForward: number[], axisRight: number[], axisUp: number[], connection: RtcConnection): number;
124
+ /**
125
+ * @ignore
126
+ */
127
+ abstract setMaxAudioRecvCount(maxCount: number): number;
128
+ /**
129
+ * @ignore
130
+ */
131
+ abstract setAudioRecvRange(range: number): number;
132
+ /**
133
+ * @ignore
134
+ */
135
+ abstract setDistanceUnit(unit: number): number;
136
+ /**
137
+ * @ignore
138
+ */
139
+ abstract updateSelfPosition(position: number[], axisForward: number[], axisRight: number[], axisUp: number[]): number;
140
+ /**
141
+ * @ignore
142
+ */
143
+ abstract updatePlayerPositionInfo(playerId: number, positionInfo: RemoteVoicePositionInfo): number;
144
+ /**
145
+ * @ignore
146
+ */
147
+ abstract setParameters(params: string): number;
148
+ /**
149
+ * @ignore
150
+ */
151
+ abstract muteLocalAudioStream(mute: boolean): number;
152
+ /**
153
+ * @ignore
154
+ */
155
+ abstract muteAllRemoteAudioStreams(mute: boolean): number;
156
+ /**
157
+ * @ignore
158
+ */
159
+ abstract muteRemoteAudioStream(uid: number, mute: boolean): number;
160
+ /**
161
+ * Sets the audio attenuation effect for the specified user.
162
+ *
163
+ * @param uid User ID. Must be the same as the user ID used when joining the channel.
164
+ * @param attenuation The audio attenuation coefficient for the user, ranging from [0,1].
165
+ * @param forceSet Whether to force the audio attenuation effect for the user: true : Forces the use of attenuation to set the user's audio attenuation effect. In this case, the audioAttenuation set in SpatialAudioZone does not apply to the user. false : Does not force the use of attenuation to set the user's audio attenuation effect. There are two cases:
166
+ * If the sound source and listener are inside and outside the sound insulation zone respectively, the attenuation effect is determined by audioAttenuation in SpatialAudioZone.
167
+ * If the sound source and listener are both inside the same sound insulation zone or both outside, the attenuation effect is determined by attenuation in this method.
168
+ *
169
+ * @returns
170
+ * 0: Success.
171
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
172
+ */
173
+ abstract setRemoteAudioAttenuation(uid: number, attenuation: number, forceSet: boolean): number;
174
+ /**
175
+ * @ignore
176
+ */
177
+ abstract setZones(zones: SpatialAudioZone[], zoneCount: number): number;
178
+ /**
179
+ * @ignore
180
+ */
181
+ abstract setPlayerAttenuation(playerId: number, attenuation: number, forceSet: boolean): number;
182
+ /**
183
+ * Deletes the spatial position information of all remote users.
184
+ *
185
+ * After successfully calling this method, the local user will not hear any remote users.
186
+ * After leaving the channel, you can also call this method to delete all remote users' spatial position information to avoid wasting computing resources.
187
+ *
188
+ * @returns
189
+ * 0: Success.
190
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
191
+ */
192
+ abstract clearRemotePositions(): number;
193
+ }
194
+ //# sourceMappingURL=IAgoraSpatialAudio.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraSpatialAudio.d.ts","sourceRoot":"","sources":["../../../ts/Private/IAgoraSpatialAudio.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,321 @@
1
+ import './extension/IAudioDeviceManagerExtension';
2
+ import { AudioDeviceInfo } from './IAgoraRtcEngine';
3
+ /**
4
+ * Maximum length of the device ID.
5
+ */
6
+ export declare enum MaxDeviceIdLengthType {
7
+ /**
8
+ * The maximum length of the device ID is 512 characters.
9
+ */
10
+ MaxDeviceIdLength = 512
11
+ }
12
+ /**
13
+ * Audio device management methods.
14
+ */
15
+ export declare abstract class IAudioDeviceManager {
16
+ /**
17
+ * Gets the list of all playback devices in the system.
18
+ *
19
+ * @returns
20
+ * If the method call succeeds, returns an array of AudioDeviceInfo, containing the device ID and device name of all audio playback devices.
21
+ * If the method call fails: returns an empty list.
22
+ */
23
+ abstract enumeratePlaybackDevices(): AudioDeviceInfo[];
24
+ /**
25
+ * Gets the list of all audio recording devices in the system.
26
+ *
27
+ * @returns
28
+ * If the method call succeeds, returns an array of AudioDeviceInfo, containing the device ID and device name of all audio recording devices.
29
+ * If the method call fails: returns an empty list.
30
+ */
31
+ abstract enumerateRecordingDevices(): AudioDeviceInfo[];
32
+ /**
33
+ * Specifies the playback device.
34
+ *
35
+ * This method changes the current audio route but does not change the system default audio route. For example, if the system default audio route is Speaker 1, and you call this method before joining a channel to set the current audio route to Speaker 2, the SDK will test Speaker 2 during device testing. After testing, when you join the channel, the SDK will still use the system default audio route, i.e., Speaker 1.
36
+ *
37
+ * @param deviceId Specifies the playback device. Obtained via enumeratePlaybackDevices. Plugging/unplugging devices does not affect deviceId.
38
+ * Maximum length: MaxDeviceIdLengthType.
39
+ *
40
+ * @returns
41
+ * 0: Success.
42
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
43
+ */
44
+ abstract setPlaybackDevice(deviceId: string): number;
45
+ /**
46
+ * Gets the current playback device.
47
+ *
48
+ * @returns
49
+ * The current playback device.
50
+ */
51
+ abstract getPlaybackDevice(): string;
52
+ /**
53
+ * Gets playback device information.
54
+ *
55
+ * @returns
56
+ * The AudioDeviceInfo object containing the device ID and name of the playback device.
57
+ */
58
+ abstract getPlaybackDeviceInfo(): AudioDeviceInfo;
59
+ /**
60
+ * Sets the playback device volume.
61
+ *
62
+ * (Windows only)
63
+ *
64
+ * @param volume Volume of the playback device. The value range is [0,255].
65
+ *
66
+ * @returns
67
+ * 0: Success.
68
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
69
+ */
70
+ abstract setPlaybackDeviceVolume(volume: number): number;
71
+ /**
72
+ * Gets the playback device volume.
73
+ *
74
+ * @returns
75
+ * Playback device volume. Value range: [0,255].
76
+ */
77
+ abstract getPlaybackDeviceVolume(): number;
78
+ /**
79
+ * Specifies the audio recording device.
80
+ *
81
+ * This method changes the current audio recording device without changing the system default audio recording device. Suppose the system default audio recording device is Microphone 1. If you call this method before joining a channel and set the current audio route to Bluetooth Headset 1, the SDK will test Bluetooth Headset 1 during device testing. After testing, when you join a channel, the SDK still uses the system default audio recording device, i.e., Microphone 1.
82
+ *
83
+ * @param deviceId The Device ID of the audio recording device. You can get it through enumerateRecordingDevices. Plugging or unplugging the device does not affect the deviceId.
84
+ * Maximum length is MaxDeviceIdLengthType.
85
+ *
86
+ * @returns
87
+ * 0: Success.
88
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
89
+ */
90
+ abstract setRecordingDevice(deviceId: string): number;
91
+ /**
92
+ * Gets the current audio recording device.
93
+ *
94
+ * @returns
95
+ * Current audio recording device.
96
+ */
97
+ abstract getRecordingDevice(): string;
98
+ /**
99
+ * Gets audio recording device information.
100
+ *
101
+ * @returns
102
+ * AudioDeviceInfo object containing the device ID and device name of the recording device.
103
+ */
104
+ abstract getRecordingDeviceInfo(): AudioDeviceInfo;
105
+ /**
106
+ * Sets the volume of the audio recording device.
107
+ *
108
+ * (Windows and macOS only)
109
+ *
110
+ * @param volume Volume of the audio recording device. Range: [0,255]. 0 means mute, 255 means maximum volume.
111
+ *
112
+ * @returns
113
+ * 0: Success.
114
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
115
+ */
116
+ abstract setRecordingDeviceVolume(volume: number): number;
117
+ /**
118
+ * Gets the volume of the recording device.
119
+ *
120
+ * (Windows only)
121
+ *
122
+ * @returns
123
+ * Recording device volume. Value range: [0,255].
124
+ */
125
+ abstract getRecordingDeviceVolume(): number;
126
+ /**
127
+ * Specifies the loopback capture device.
128
+ *
129
+ * By default, the SDK uses the current playback device as the loopback capture device. To specify another audio device as the loopback capture device, call this method and set deviceId to the desired device.
130
+ * This method changes the current recording device but does not change the system default recording device. For example, if the system default recording device is Microphone 1, and you call this method before joining a channel to set the current audio route to Sound Card 1, the SDK will test Sound Card 1 during device testing. After testing, when you join the channel, the SDK will still use the system default recording device, i.e., Microphone 1. (Windows and macOS only)
131
+ * Applicable scenarios:
132
+ * App A plays music through a Bluetooth headset; App B conducts a video conference through a speaker.
133
+ * If the loopback capture device is set to the Bluetooth headset, the SDK will publish the music from App A to the remote end.
134
+ * If the loopback capture device is set to the speaker, the SDK will not publish the music from App A to the remote end.
135
+ * If you switch from Bluetooth headset to wired headset for App A after setting the loopback device to Bluetooth headset, you need to call this method again to set the loopback device to the wired headset. The SDK will then continue to publish the music from App A to the remote end.
136
+ *
137
+ * @param deviceId Specifies the loopback capture device for the SDK. Obtained via enumeratePlaybackDevices. Plugging/unplugging devices does not affect deviceId.
138
+ * Maximum length: MaxDeviceIdLengthType.
139
+ *
140
+ * @returns
141
+ * 0: Success.
142
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
143
+ */
144
+ abstract setLoopbackDevice(deviceId: string): number;
145
+ /**
146
+ * Gets the current loopback device.
147
+ *
148
+ * This method is applicable only to Windows and macOS.
149
+ *
150
+ * @returns
151
+ * The ID of the current loopback device.
152
+ */
153
+ abstract getLoopbackDevice(): string;
154
+ /**
155
+ * Sets the playback device to mute.
156
+ *
157
+ * @param mute Whether to mute the playback device: true : Mute the playback device. false : Do not mute the playback device.
158
+ *
159
+ * @returns
160
+ * 0: Success.
161
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
162
+ */
163
+ abstract setPlaybackDeviceMute(mute: boolean): number;
164
+ /**
165
+ * Gets the mute status of the current playback device.
166
+ *
167
+ * @returns
168
+ * true : The playback device is muted. false : The playback device is not muted.
169
+ */
170
+ abstract getPlaybackDeviceMute(): boolean;
171
+ /**
172
+ * Mutes the current audio recording device.
173
+ *
174
+ * @param mute Whether to mute the audio recording device: true : The device is muted. false : The device is not muted.
175
+ *
176
+ * @returns
177
+ * 0: Success.
178
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
179
+ */
180
+ abstract setRecordingDeviceMute(mute: boolean): number;
181
+ /**
182
+ * Gets the mute status of the current recording device.
183
+ *
184
+ * @returns
185
+ * true : The recording device is muted. false : The recording device is not muted.
186
+ */
187
+ abstract getRecordingDeviceMute(): boolean;
188
+ /**
189
+ * Starts the audio playback device test.
190
+ *
191
+ * This method tests whether the local audio playback device is working properly. After the test starts, the SDK plays the specified audio file. If the tester can hear the sound, it indicates that the playback device is functioning correctly.
192
+ * After calling this method, the SDK triggers the onAudioVolumeIndication callback every 100 ms to report the volume information of uid = 1 and the playback device.
193
+ * The difference between this method and startEchoTest is that this method tests whether the local audio playback device is working properly, while the latter tests whether the audio/video devices and network are functioning correctly. You must call this method before joining a channel. After testing is complete, if you need to join a channel, make sure to call stopPlaybackDeviceTest to stop the device test first.
194
+ *
195
+ * @param testAudioFilePath The absolute path of the audio file. The path string must be encoded in UTF-8.
196
+ * Supported file formats: wav, mp3, m4a, aac.
197
+ * Supported sampling rates: 8000, 16000, 32000, 44100, 48000.
198
+ *
199
+ * @returns
200
+ * 0: Success.
201
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
202
+ */
203
+ abstract startPlaybackDeviceTest(testAudioFilePath: string): number;
204
+ /**
205
+ * Stops the audio playback device test.
206
+ *
207
+ * This method stops the audio playback device test. After calling startPlaybackDeviceTest, you must call this method to stop the test. You must call this method before joining a channel.
208
+ *
209
+ * @returns
210
+ * 0: Success.
211
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
212
+ */
213
+ abstract stopPlaybackDeviceTest(): number;
214
+ /**
215
+ * Starts the audio recording device test.
216
+ *
217
+ * This method tests whether the local audio recording device is working properly. After calling this method, the SDK triggers the onAudioVolumeIndication callback at the specified interval to report the volume information of uid = 0 and the recording device.
218
+ * The difference between this method and startEchoTest is that this method tests whether the local audio recording device is working properly, while the latter tests whether the audio/video devices and network are functioning correctly. You must call this method before joining a channel. After testing is complete, if you need to join a channel, make sure to call stopRecordingDeviceTest to stop the device test first.
219
+ *
220
+ * @param indicationInterval The interval at which the SDK triggers the onAudioVolumeIndication callback, in milliseconds. The minimum value is 10; otherwise, the onAudioVolumeIndication callback will not be received and the SDK will return error code -2. Agora recommends setting this value to 100.
221
+ *
222
+ * @returns
223
+ * 0: Success.
224
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
225
+ * -2: Invalid parameter settings. Please reset the parameters.
226
+ */
227
+ abstract startRecordingDeviceTest(indicationInterval: number): number;
228
+ /**
229
+ * Stops the audio recording device test.
230
+ *
231
+ * This method stops the audio recording device test. After calling startRecordingDeviceTest, you must call this method to stop the test. You must call this method before joining a channel.
232
+ *
233
+ * @returns
234
+ * 0: Success.
235
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
236
+ */
237
+ abstract stopRecordingDeviceTest(): number;
238
+ /**
239
+ * Starts the audio device loopback test.
240
+ *
241
+ * This method tests whether the audio recording and playback devices are working properly. Once the test starts, the recording device captures local audio and the playback device plays it back. The SDK triggers two onAudioVolumeIndication callbacks at the specified interval to report the volume levels of the recording device (uid = 0) and the playback device (uid = 1).
242
+ * This method can be called before or after joining a channel.
243
+ * This method is only available to hosts.
244
+ * This method only performs local audio device testing and does not involve network connections.
245
+ * After the test is complete, you must call stopAudioDeviceLoopbackTest to stop the loopback test.
246
+ *
247
+ * @param indicationInterval The interval at which the SDK triggers the onAudioVolumeIndication callback, in milliseconds. It is recommended to set it to greater than 200 ms. Must not be less than 10 ms, otherwise the onAudioVolumeIndication callback will not be received.
248
+ *
249
+ * @returns
250
+ * 0: Success.
251
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
252
+ */
253
+ abstract startAudioDeviceLoopbackTest(indicationInterval: number): number;
254
+ /**
255
+ * Stops the audio device loopback test.
256
+ *
257
+ * This method can be called before or after joining a channel.
258
+ * This method is only available to hosts.
259
+ * After calling startAudioDeviceLoopbackTest, you must call this method to stop the audio device loopback test.
260
+ *
261
+ * @returns
262
+ * 0: Success.
263
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
264
+ */
265
+ abstract stopAudioDeviceLoopbackTest(): number;
266
+ /**
267
+ * Sets whether the SDK's playback device follows the system default playback device.
268
+ *
269
+ * @param enable Whether to follow the system default playback device: true : Follow. When the system default playback device changes, the SDK immediately switches the playback device. false : Do not follow. The SDK switches to the system default playback device only when the current playback device is removed.
270
+ *
271
+ * @returns
272
+ * 0: Success.
273
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
274
+ */
275
+ abstract followSystemPlaybackDevice(enable: boolean): number;
276
+ /**
277
+ * Sets whether the SDK's recording device follows the system default recording device.
278
+ *
279
+ * @param enable Whether to follow the system default recording device: true : Follow. When the system default recording device changes, the SDK immediately switches the recording device. false : Do not follow. The SDK switches to the system default recording device only when the current recording device is removed.
280
+ *
281
+ * @returns
282
+ * 0: Success.
283
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
284
+ */
285
+ abstract followSystemRecordingDevice(enable: boolean): number;
286
+ /**
287
+ * Sets whether the loopback device follows the system default playback device.
288
+ *
289
+ * This method is applicable only to Windows and macOS.
290
+ *
291
+ * @param enable Whether to follow the system default playback device: true : Follow. When the system default playback device changes, the SDK immediately switches the loopback device. false : Do not follow. The SDK switches to the system default playback device only when the current loopback device is removed.
292
+ *
293
+ * @returns
294
+ * 0: Success.
295
+ * < 0: Failure. See [Error Codes](https://docs.agora.io/en/video-calling/troubleshooting/error-codes) for details and resolution suggestions.
296
+ */
297
+ abstract followSystemLoopbackDevice(enable: boolean): number;
298
+ /**
299
+ * Releases all resources occupied by the IAudioDeviceManager object.
300
+ */
301
+ abstract release(): void;
302
+ /**
303
+ * Gets the system default playback device.
304
+ *
305
+ * This method is applicable only to Windows and macOS.
306
+ *
307
+ * @returns
308
+ * Information of the default playback device. See AudioDeviceInfo.
309
+ */
310
+ abstract getPlaybackDefaultDevice(): AudioDeviceInfo;
311
+ /**
312
+ * Gets the system default audio recording device.
313
+ *
314
+ * (Windows and macOS only)
315
+ *
316
+ * @returns
317
+ * Information about the default recording device. See AudioDeviceInfo.
318
+ */
319
+ abstract getRecordingDefaultDevice(): AudioDeviceInfo;
320
+ }
321
+ //# sourceMappingURL=IAudioDeviceManager.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAudioDeviceManager.d.ts","sourceRoot":"","sources":["../../../ts/Private/IAudioDeviceManager.ts"],"names":[],"mappings":"AAAA,OAAO,0CAA0C,CAAC;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEpD;;GAEG;AACH,oBAAY,qBAAqB;IAC/B;;OAEG;IACH,iBAAiB,MAAM;CACxB;AAED;;GAEG;AACH,8BAAsB,mBAAmB;IACvC;;;;;;OAMG;IACH,QAAQ,CAAC,wBAAwB,IAAI,eAAe,EAAE;IAEtD;;;;;;OAMG;IACH,QAAQ,CAAC,yBAAyB,IAAI,eAAe,EAAE;IAEvD;;;;;;;;;;;OAWG;IACH,QAAQ,CAAC,iBAAiB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM;IAEpD;;;;;OAKG;IACH,QAAQ,CAAC,iBAAiB,IAAI,MAAM;IAEpC;;;;;OAKG;IACH,QAAQ,CAAC,qBAAqB,IAAI,eAAe;IAEjD;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,uBAAuB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM;IAExD;;;;;OAKG;IACH,QAAQ,CAAC,uBAAuB,IAAI,MAAM;IAE1C;;;;;;;;;;;OAWG;IACH,QAAQ,CAAC,kBAAkB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM;IAErD;;;;;OAKG;IACH,QAAQ,CAAC,kBAAkB,IAAI,MAAM;IAErC;;;;;OAKG;IACH,QAAQ,CAAC,sBAAsB,IAAI,eAAe;IAElD;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,wBAAwB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM;IAEzD;;;;;;;OAOG;IACH,QAAQ,CAAC,wBAAwB,IAAI,MAAM;IAE3C;;;;;;;;;;;;;;;;;OAiBG;IACH,QAAQ,CAAC,iBAAiB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM;IAEpD;;;;;;;OAOG;IACH,QAAQ,CAAC,iBAAiB,IAAI,MAAM;IAEpC;;;;;;;;OAQG;IACH,QAAQ,CAAC,qBAAqB,CAAC,IAAI,EAAE,OAAO,GAAG,MAAM;IAErD;;;;;OAKG;IACH,QAAQ,CAAC,qBAAqB,IAAI,OAAO;IAEzC;;;;;;;;OAQG;IACH,QAAQ,CAAC,sBAAsB,CAAC,IAAI,EAAE,OAAO,GAAG,MAAM;IAEtD;;;;;OAKG;IACH,QAAQ,CAAC,sBAAsB,IAAI,OAAO;IAE1C;;;;;;;;;;;;;;OAcG;IACH,QAAQ,CAAC,uBAAuB,CAAC,iBAAiB,EAAE,MAAM,GAAG,MAAM;IAEnE;;;;;;;;OAQG;IACH,QAAQ,CAAC,sBAAsB,IAAI,MAAM;IAEzC;;;;;;;;;;;;OAYG;IACH,QAAQ,CAAC,wBAAwB,CAAC,kBAAkB,EAAE,MAAM,GAAG,MAAM;IAErE;;;;;;;;OAQG;IACH,QAAQ,CAAC,uBAAuB,IAAI,MAAM;IAE1C;;;;;;;;;;;;;;OAcG;IACH,QAAQ,CAAC,4BAA4B,CAAC,kBAAkB,EAAE,MAAM,GAAG,MAAM;IAEzE;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,2BAA2B,IAAI,MAAM;IAE9C;;;;;;;;OAQG;IACH,QAAQ,CAAC,0BAA0B,CAAC,MAAM,EAAE,OAAO,GAAG,MAAM;IAE5D;;;;;;;;OAQG;IACH,QAAQ,CAAC,2BAA2B,CAAC,MAAM,EAAE,OAAO,GAAG,MAAM;IAE7D;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,0BAA0B,CAAC,MAAM,EAAE,OAAO,GAAG,MAAM;IAE5D;;OAEG;IACH,QAAQ,CAAC,OAAO,IAAI,IAAI;IAExB;;;;;;;OAOG;IACH,QAAQ,CAAC,wBAAwB,IAAI,eAAe;IAEpD;;;;;;;OAOG;IACH,QAAQ,CAAC,yBAAyB,IAAI,eAAe;CACtD"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AgoraBaseExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/AgoraBaseExtension.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,CAAC;AAEtB,OAAO,QAAQ,cAAc,CAAC;IAC5B,UAAU,WAAW;QACnB;;WAEG;QACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;QAC9B;;WAEG;QACH,SAAS,CAAC,EAAE,OAAO,CAAC;KACrB;CACF"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AgoraMediaBaseExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/AgoraMediaBaseExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AgoraMediaPlayerTypesExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/AgoraMediaPlayerTypesExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraH265TranscoderExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/IAgoraH265TranscoderExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,yBAAyB,CAAC;AAElE,MAAM,MAAM,oBAAoB,GAAG,uBAAuB,CAAC;AAE3D,OAAO,QAAQ,yBAAyB,CAAC;IACvC,UAAU,eAAe;QACvB,oBAAoB,CAAC,SAAS,SAAS,MAAM,oBAAoB,EAC/D,SAAS,EAAE,SAAS,GACnB,OAAO,CAAC;QAEX;;WAEG;QACH,WAAW,CAAC,SAAS,SAAS,MAAM,oBAAoB,EACtD,SAAS,EAAE,SAAS,EACpB,QAAQ,EAAE,oBAAoB,CAAC,SAAS,CAAC,GACxC,IAAI,CAAC;QAER;;WAEG;QACH,cAAc,CAAC,SAAS,SAAS,MAAM,oBAAoB,EACzD,SAAS,EAAE,SAAS,EACpB,QAAQ,CAAC,EAAE,oBAAoB,CAAC,SAAS,CAAC,GACzC,IAAI,CAAC;QAER;;WAEG;QACH,kBAAkB,CAAC,SAAS,SAAS,MAAM,oBAAoB,EAC7D,SAAS,CAAC,EAAE,SAAS,GACpB,IAAI,CAAC;QAER;;WAEG;QACH,OAAO,IAAI,IAAI,CAAC;KACjB;CACF"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraLogExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/IAgoraLogExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraMediaEngineExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/IAgoraMediaEngineExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EACnB,iBAAiB,EACjB,0BAA0B,EAC1B,mBAAmB,EACpB,MAAM,mBAAmB,CAAC;AAE3B,MAAM,MAAM,iBAAiB,GAAG,mBAAmB,GACjD,mBAAmB,GACnB,0BAA0B,GAC1B,iBAAiB,CAAC;AAEpB,OAAO,QAAQ,sBAAsB,CAAC;IACpC,UAAU,YAAY;QACpB,oBAAoB,CAAC,SAAS,SAAS,MAAM,iBAAiB,EAC5D,SAAS,EAAE,SAAS,GACnB,OAAO,CAAC;QAEX;;;;;;;;;;WAUG;QACH,WAAW,CAAC,SAAS,SAAS,MAAM,iBAAiB,EACnD,SAAS,EAAE,SAAS,EACpB,QAAQ,EAAE,iBAAiB,CAAC,SAAS,CAAC,GACrC,IAAI,CAAC;QAER;;;;;;;;;;;;WAYG;QACH,cAAc,CAAC,SAAS,SAAS,MAAM,iBAAiB,EACtD,SAAS,EAAE,SAAS,EACpB,QAAQ,CAAC,EAAE,iBAAiB,CAAC,SAAS,CAAC,GACtC,IAAI,CAAC;QAER;;;;WAIG;QACH,kBAAkB,CAAC,SAAS,SAAS,MAAM,iBAAiB,EAC1D,SAAS,CAAC,EAAE,SAAS,GACpB,IAAI,CAAC;KACT;CACF"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraMediaPlayerExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/IAgoraMediaPlayerExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC;AAC/E,OAAO,EAAE,8BAA8B,EAAE,MAAM,sBAAsB,CAAC;AACtE,OAAO,EAAE,0BAA0B,EAAE,MAAM,4BAA4B,CAAC;AAExE,MAAM,MAAM,iBAAiB,GAAG,0BAA0B,GACxD,kBAAkB,GAClB,8BAA8B,GAC9B,sBAAsB,CAAC;AAEzB,OAAO,QAAQ,sBAAsB,CAAC;IACpC,UAAU,YAAY;QACpB,oBAAoB,CAAC,SAAS,SAAS,MAAM,iBAAiB,EAC5D,SAAS,EAAE,SAAS,GACnB,OAAO,CAAC;QAEX;;;;;;;;;;WAUG;QACH,WAAW,CAAC,SAAS,SAAS,MAAM,iBAAiB,EACnD,SAAS,EAAE,SAAS,EACpB,QAAQ,EAAE,iBAAiB,CAAC,SAAS,CAAC,GACrC,IAAI,CAAC;QAER;;;;;;;;;;;;WAYG;QACH,cAAc,CAAC,SAAS,SAAS,MAAM,iBAAiB,EACtD,SAAS,EAAE,SAAS,EACpB,QAAQ,CAAC,EAAE,iBAAiB,CAAC,SAAS,CAAC,GACtC,IAAI,CAAC;QAER;;;;WAIG;QACH,kBAAkB,CAAC,SAAS,SAAS,MAAM,iBAAiB,EAC1D,SAAS,CAAC,EAAE,SAAS,GACpB,IAAI,CAAC;QAER;;WAEG;QACH,OAAO,IAAI,IAAI,CAAC;KACjB;CACF"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraMediaPlayerSourceExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/IAgoraMediaPlayerSourceExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraMediaRecorderExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/IAgoraMediaRecorderExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC;AAE3D,MAAM,MAAM,mBAAmB,GAAG,sBAAsB,CAAC;AAEzD,OAAO,QAAQ,wBAAwB,CAAC;IACtC,UAAU,cAAc;QACtB,oBAAoB,CAAC,SAAS,SAAS,MAAM,mBAAmB,EAC9D,SAAS,EAAE,SAAS,GACnB,OAAO,CAAC;QAEX;;;;;;;;;;WAUG;QACH,WAAW,CAAC,SAAS,SAAS,MAAM,mBAAmB,EACrD,SAAS,EAAE,SAAS,EACpB,QAAQ,EAAE,mBAAmB,CAAC,SAAS,CAAC,GACvC,IAAI,CAAC;QAER;;;;;;;;;;;;WAYG;QACH,cAAc,CAAC,SAAS,SAAS,MAAM,mBAAmB,EACxD,SAAS,EAAE,SAAS,EACpB,QAAQ,CAAC,EAAE,mBAAmB,CAAC,SAAS,CAAC,GACxC,IAAI,CAAC;QAER;;;;WAIG;QACH,kBAAkB,CAAC,SAAS,SAAS,MAAM,mBAAmB,EAC5D,SAAS,CAAC,EAAE,SAAS,GACpB,IAAI,CAAC;QAER;;WAEG;QACH,OAAO,IAAI,IAAI,CAAC;KACjB;CACF"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraMusicContentCenterExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/IAgoraMusicContentCenterExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,+BAA+B,EAAE,MAAM,6BAA6B,CAAC;AAE9E,MAAM,MAAM,wBAAwB,GAAG,+BAA+B,CAAC;AAEvE,OAAO,QAAQ,6BAA6B,CAAC;IAC3C,UAAU,mBAAmB;QAC3B,oBAAoB,CAAC,SAAS,SAAS,MAAM,wBAAwB,EACnE,SAAS,EAAE,SAAS,GACnB,OAAO,CAAC;QAEX;;WAEG;QACH,WAAW,CAAC,SAAS,SAAS,MAAM,wBAAwB,EAC1D,SAAS,EAAE,SAAS,EACpB,QAAQ,EAAE,wBAAwB,CAAC,SAAS,CAAC,GAC5C,IAAI,CAAC;QAER;;WAEG;QACH,cAAc,CAAC,SAAS,SAAS,MAAM,wBAAwB,EAC7D,SAAS,EAAE,SAAS,EACpB,QAAQ,CAAC,EAAE,wBAAwB,CAAC,SAAS,CAAC,GAC7C,IAAI,CAAC;QAER;;WAEG;QACH,kBAAkB,CAAC,SAAS,SAAS,MAAM,wBAAwB,EACjE,SAAS,CAAC,EAAE,SAAS,GACpB,IAAI,CAAC;KACT;CACF"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraRhythmPlayerExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/IAgoraRhythmPlayerExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraRtcEngineExExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/IAgoraRtcEngineExExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraRtcEngineExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/IAgoraRtcEngineExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,cAAc,CAAC;AAC1D,OAAO,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC;AAC3D,OAAO,EACL,+BAA+B,EAC/B,iBAAiB,EACjB,sBAAsB,EACvB,MAAM,oBAAoB,CAAC;AAE5B,MAAM,MAAM,eAAe,GAAG,sBAAsB,GAClD,+BAA+B,GAC/B,iBAAiB,GACjB,0BAA0B,GAC1B,sBAAsB,CAAC;AAEzB,OAAO,QAAQ,oBAAoB,CAAC;IAClC,UAAU,UAAU;QAClB,oBAAoB,CAAC,SAAS,SAAS,MAAM,eAAe,EAC1D,SAAS,EAAE,SAAS,GACnB,OAAO,CAAC;QAEX;;;;;;;;;;WAUG;QACH,WAAW,CAAC,SAAS,SAAS,MAAM,eAAe,EACjD,SAAS,EAAE,SAAS,EACpB,QAAQ,EAAE,eAAe,CAAC,SAAS,CAAC,GACnC,IAAI,CAAC;QAER;;;;;;;;;;;;WAYG;QACH,cAAc,CAAC,SAAS,SAAS,MAAM,eAAe,EACpD,SAAS,EAAE,SAAS,EACpB,QAAQ,CAAC,EAAE,eAAe,CAAC,SAAS,CAAC,GACpC,IAAI,CAAC;QAER;;;;WAIG;QACH,kBAAkB,CAAC,SAAS,SAAS,MAAM,eAAe,EACxD,SAAS,CAAC,EAAE,SAAS,GACpB,IAAI,CAAC;KACT;CACF"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraSpatialAudioExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/IAgoraSpatialAudioExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAudioDeviceManagerExtension.d.ts","sourceRoot":"","sources":["../../../../ts/Private/extension/IAudioDeviceManagerExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AgoraBaseImpl.d.ts","sourceRoot":"","sources":["../../../../ts/Private/impl/AgoraBaseImpl.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,cAAc,CAAC;AAE1D,wBAAgB,iCAAiC,CAC/C,OAAO,EAAE,0BAA0B,EACnC,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,GAAG,QAiChB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AgoraMediaBaseImpl.d.ts","sourceRoot":"","sources":["../../../../ts/Private/impl/AgoraMediaBaseImpl.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EACnB,uBAAuB,EACvB,kBAAkB,EAClB,sBAAsB,EACtB,iBAAiB,EACjB,sBAAsB,EACtB,0BAA0B,EAC1B,mBAAmB,EACnB,mBAAmB,EACnB,WAAW,EACZ,MAAM,mBAAmB,CAAC;AAE3B,qBAAa,uBAAwB,YAAW,mBAAmB;IACjE,cAAc,CAAC,GAAG,EAAE,WAAW,GAAG,MAAM;IAcxC,SAAS,CAAC,4BAA4B,CAAC,GAAG,EAAE,WAAW,GAAG,MAAM;CAGjE;AAED,wBAAgB,yBAAyB,CACvC,OAAO,EAAE,kBAAkB,EAC3B,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,GAAG,QAShB;AAED,wBAAgB,8BAA8B,CAC5C,OAAO,EAAE,uBAAuB,EAChC,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,GAAG,QA8BhB;AAED,wBAAgB,0BAA0B,CACxC,OAAO,EAAE,mBAAmB,EAC5B,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,GAAG,QAahB;AAED,wBAAgB,6BAA6B,CAC3C,OAAO,EAAE,sBAAsB,EAC/B,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,GAAG,QAkBhB;AAED,wBAAgB,iCAAiC,CAC/C,OAAO,EAAE,0BAA0B,EACnC,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,GAAG,QAchB;AAED,wBAAgB,0BAA0B,CACxC,OAAO,EAAE,mBAAmB,EAC5B,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,GAAG,QA8ChB;AAED,wBAAgB,wBAAwB,CACtC,OAAO,EAAE,iBAAiB,EAC1B,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,GAAG,QAShB;AAED,wBAAgB,6BAA6B,CAC3C,OAAO,EAAE,sBAAsB,EAC/B,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,GAAG,QAwBhB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraH265TranscoderImpl.d.ts","sourceRoot":"","sources":["../../../../ts/Private/impl/IAgoraH265TranscoderImpl.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EACf,uBAAuB,EACxB,MAAM,yBAAyB,CAAC;AACjC,wBAAgB,8BAA8B,CAC5C,OAAO,EAAE,uBAAuB,EAChC,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,GAAG,QAyBhB;AAGD,qBAAa,mBAAoB,YAAW,eAAe;IACzD,eAAe,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM;IAkBpE,SAAS,CAAC,6BAA6B,CACrC,KAAK,EAAE,MAAM,EACb,OAAO,EAAE,MAAM,EACf,GAAG,EAAE,MAAM,GACV,MAAM;IAIT,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM;IAkBjE,SAAS,CAAC,0BAA0B,CAClC,KAAK,EAAE,MAAM,EACb,OAAO,EAAE,MAAM,EACf,GAAG,EAAE,MAAM,GACV,MAAM;IAIT,gBAAgB,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM;IAkBrE,SAAS,CAAC,8BAA8B,CACtC,KAAK,EAAE,MAAM,EACb,OAAO,EAAE,MAAM,EACf,GAAG,EAAE,MAAM,GACV,MAAM;IAIT,0BAA0B,CAAC,QAAQ,EAAE,uBAAuB,GAAG,MAAM;IAYrE,SAAS,CAAC,wCAAwC,CAChD,QAAQ,EAAE,uBAAuB,GAChC,MAAM;IAIT,4BAA4B,CAAC,QAAQ,EAAE,uBAAuB,GAAG,MAAM;IAYvE,SAAS,CAAC,0CAA0C,CAClD,QAAQ,EAAE,uBAAuB,GAChC,MAAM;CAGV"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraMediaEngineImpl.d.ts","sourceRoot":"","sources":["../../../../ts/Private/impl/IAgoraMediaEngineImpl.ts"],"names":[],"mappings":"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"}