@100mslive/hms-video-store 0.11.7 → 0.11.8-alpha.0
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/dist/audio-sink-manager/AudioSinkManager.d.ts +2 -0
- package/dist/index.cjs.js +8 -8
- package/dist/index.cjs.js.map +3 -3
- package/dist/index.js +8 -8
- package/dist/index.js.map +3 -3
- package/dist/media/tracks/HMSLocalVideoTrack.d.ts +2 -0
- package/dist/plugins/video/HMSVideoPluginsManager.d.ts +1 -0
- package/dist/utils/timer-utils.d.ts +4 -1
- package/package.json +2 -2
- package/src/audio-sink-manager/AudioSinkManager.ts +25 -1
- package/src/media/tracks/HMSLocalVideoTrack.ts +20 -0
- package/src/plugins/video/HMSVideoPluginsManager.ts +4 -3
- package/src/reactive-store/HMSSDKActions.ts +3 -1
- package/src/utils/timer-utils.ts +22 -1
|
@@ -12,6 +12,7 @@ export declare class AudioSinkManager {
|
|
|
12
12
|
private volume;
|
|
13
13
|
private state;
|
|
14
14
|
private listener?;
|
|
15
|
+
private timer;
|
|
15
16
|
constructor(store: Store, deviceManager: DeviceManager, eventBus: EventBus);
|
|
16
17
|
setListener(listener?: HMSUpdateListener): void;
|
|
17
18
|
private get outputDevice();
|
|
@@ -38,6 +39,7 @@ export declare class AudioSinkManager {
|
|
|
38
39
|
private handleTrackRemove;
|
|
39
40
|
private unpauseAudioTracks;
|
|
40
41
|
private removeAudioElement;
|
|
42
|
+
private startPollingForDevices;
|
|
41
43
|
/**
|
|
42
44
|
* Mweb is not able to play via call channel by default, this is to switch from media channel to call channel
|
|
43
45
|
*/
|