@vkontakte/videoplayer-core 2.0.116-dev.68a2c5fb.0 → 2.0.116-dev.79c1d5bd.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.116-dev.68a2c5fb.0",
3
+ "version": "2.0.116-dev.79c1d5bd.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.48-dev.282f4648.0",
52
+ "@vkontakte/videoplayer-shared": "1.0.48-dev.dd1bad01.0",
53
53
  "hls.js": "~1.4.7"
54
54
  }
55
55
  }
@@ -16,8 +16,6 @@ export default class Player implements IPlayer {
16
16
  private initedAt;
17
17
  private hasLiveOffsetByPaused;
18
18
  private hasLiveOffsetByPausedTimer;
19
- private explicitInitialQuality;
20
- private wasSetStartedQuality;
21
19
  private desiredState;
22
20
  info: {
23
21
  playbackState$: ValueSubject<PlaybackState>;
@@ -180,7 +180,6 @@ export type ITuningConfig = {
180
180
  useVolumeMultiplier: boolean;
181
181
  ignoreAudioRendererError: boolean;
182
182
  useEnableSubtitlesParam: boolean;
183
- initialPlaybackRate?: number;
184
183
  };
185
184
  export type IOptionalTuningConfig = RecursivePartial<ITuningConfig> & {
186
185
  configName: ITuningConfig['configName'];