@100mslive/hms-video-store 0.12.19-alpha.21 → 0.12.19-alpha.22

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.
@@ -12,8 +12,6 @@ export declare class AudioSinkManager {
12
12
  private volume;
13
13
  private state;
14
14
  private listener?;
15
- private timer;
16
- private earpieceSelected;
17
15
  constructor(store: Store, deviceManager: DeviceManager, eventBus: EventBus);
18
16
  setListener(listener?: HMSUpdateListener): void;
19
17
  private get outputDevice();
@@ -40,9 +38,4 @@ export declare class AudioSinkManager {
40
38
  private handleTrackRemove;
41
39
  private unpauseAudioTracks;
42
40
  private removeAudioElement;
43
- private startPollingForDevices;
44
- /**
45
- * Mweb is not able to play via call channel by default, this is to switch from media channel to call channel
46
- */
47
- private autoSelectAudioOutput;
48
41
  }
@@ -19,6 +19,8 @@ export declare class DeviceManager implements HMSDeviceManager {
19
19
  private initialized;
20
20
  private videoInputChanged;
21
21
  private audioInputChanged;
22
+ private earpieceSelected;
23
+ private timer;
22
24
  constructor(store: Store, eventBus: EventBus);
23
25
  updateOutputDevice: (deviceId?: string, isUserSelection?: boolean) => Promise<MediaDeviceInfo | undefined>;
24
26
  init(force?: boolean, logAnalytics?: boolean): Promise<void>;
@@ -64,6 +66,11 @@ export declare class DeviceManager implements HMSDeviceManager {
64
66
  wired: InputDeviceInfo | null;
65
67
  earpiece: InputDeviceInfo | null;
66
68
  };
69
+ private startPollingForDevices;
70
+ /**
71
+ * Mweb is not able to play via call channel by default, this is to switch from media channel to call channel
72
+ */
73
+ private autoSelectAudioOutput;
67
74
  private getAudioOutputDeviceMatchingInput;
68
75
  private logDevices;
69
76
  }