@vkontakte/videoplayer-core 2.0.113-dev.cde1b449.0 → 2.0.114-dev.5126d73d.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vkontakte/videoplayer-core",
3
- "version": "2.0.113-dev.cde1b449.0",
3
+ "version": "2.0.114-dev.5126d73d.0",
4
4
  "author": "vk.com",
5
5
  "description": "Videoplayer core library based on the vk.com platform",
6
6
  "homepage": "https://vk.com",
@@ -49,7 +49,7 @@
49
49
  "**/*.d.ts"
50
50
  ],
51
51
  "dependencies": {
52
- "@vkontakte/videoplayer-shared": "^1.0.44",
52
+ "@vkontakte/videoplayer-shared": "1.0.46-dev.c232aead.0",
53
53
  "hls.js": "~1.4.7"
54
54
  }
55
55
  }
@@ -31,6 +31,7 @@ export type ITuningConfig = {
31
31
  minAvailableThroughputAudioRatio: number;
32
32
  limitByContainer: boolean;
33
33
  usePixelRatio: boolean;
34
+ pixelRatioMultiplier: number;
34
35
  containerSizeFactor: number;
35
36
  lazyQualitySwitch: boolean;
36
37
  minBufferToSwitchUp: number;
@@ -173,6 +174,7 @@ export type ITuningConfig = {
173
174
  speedFadeThreshold: Milliseconds;
174
175
  };
175
176
  useVolumeMultiplier: boolean;
177
+ ignoreAudioRendererError: boolean;
176
178
  };
177
179
  export type IOptionalTuningConfig = RecursivePartial<ITuningConfig> & {
178
180
  configName: ITuningConfig['configName'];