@100mslive/hms-video-store 0.11.2-alpha.3 → 0.11.2-alpha.5

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.11.2-alpha.3",
2
+ "version": "0.11.2-alpha.5",
3
3
  "license": "MIT",
4
4
  "repository": {
5
5
  "type": "git",
@@ -71,5 +71,5 @@
71
71
  "conferencing",
72
72
  "100ms"
73
73
  ],
74
- "gitHead": "a8ba9a5b8f03574b1b398575dced298fd1a9fab5"
74
+ "gitHead": "f92ee12444119121ba670c4127c808a992a8b2c1"
75
75
  }
@@ -184,7 +184,6 @@ export class HMSLocalVideoTrack extends HMSVideoTrack {
184
184
  return;
185
185
  } else {
186
186
  await this.pluginsManager.waitForRestart();
187
- await this.processPlugins();
188
187
  }
189
188
  await this.handleSettingsChange(newSettings);
190
189
  this.settings = newSettings;
@@ -318,6 +317,7 @@ export class HMSLocalVideoTrack extends HMSVideoTrack {
318
317
  const track = await this.replaceTrackWith(this.buildNewSettings({ facingMode: facingMode, deviceId: undefined }));
319
318
  await this.replaceSender(track, this.enabled);
320
319
  this.nativeTrack = track;
320
+ await this.processPlugins();
321
321
  this.videoHandler.updateSinks();
322
322
  this.settings = this.buildNewSettings({ deviceId: this.nativeTrack.getSettings().deviceId, facingMode });
323
323
  DeviceStorageManager.updateSelection('videoInput', {
@@ -420,6 +420,7 @@ export class HMSLocalVideoTrack extends HMSVideoTrack {
420
420
  const track = await this.replaceTrackWith(settings);
421
421
  await this.replaceSender(track, this.enabled);
422
422
  this.nativeTrack = track;
423
+ await this.processPlugins();
423
424
  this.videoHandler.updateSinks();
424
425
  } else {
425
426
  await this.nativeTrack.applyConstraints(settings.toConstraints());
@@ -441,6 +442,7 @@ export class HMSLocalVideoTrack extends HMSVideoTrack {
441
442
  const track = await this.replaceTrackWith(settings);
442
443
  await this.replaceSender(track, this.enabled);
443
444
  this.nativeTrack = track;
445
+ await this.processPlugins();
444
446
  this.videoHandler.updateSinks();
445
447
  }
446
448
  if (!internal) {