@vkontakte/videoplayer-core 2.0.166-dev.02230ed18.0 → 2.0.166-dev.0bf203cc7.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.166-dev.02230ed18.0",
3
+ "version": "2.0.166-dev.0bf203cc7.0",
4
4
  "author": "vk.com",
5
5
  "description": "Videoplayer core library based on the vk.com platform",
6
6
  "homepage": "https://vk.com",
@@ -42,6 +42,6 @@
42
42
  "**/*.d.ts"
43
43
  ],
44
44
  "dependencies": {
45
- "@vkontakte/videoplayer-shared": "1.0.95-dev.02230ed18.0"
45
+ "@vkontakte/videoplayer-shared": "1.0.95-dev.0bf203cc7.0"
46
46
  }
47
47
  }
@@ -90,7 +90,7 @@ export declare abstract class BaseVirtualBufferManager<T extends Segment> implem
90
90
  protected maintainPlaybackBuffer(position: Milliseconds): Promise<void>;
91
91
  protected actualizeLastSegmentInfo(currentPosition: Milliseconds): void;
92
92
  protected selectDownloadingItems(position: Milliseconds, segments: T[]): IBufferPlaybackQueueItem<T>[];
93
- protected processCachedItems(): void;
93
+ protected processCachedItems(): Promise<void>;
94
94
  protected withinInterval(currentPosition: Milliseconds | undefined, { from, to }: IRange<Milliseconds>, leftTolerance?: Milliseconds, rightTolerance?: Milliseconds): boolean;
95
95
  protected withinAppendInterval(currentPosition: Milliseconds | undefined, { from, to }: IRange<Milliseconds>): boolean;
96
96
  protected withinRemoveInterval(currentPosition: Milliseconds | undefined, { to }: IRange<Milliseconds>): boolean;
@@ -181,7 +181,6 @@ export type ITuningConfig = {
181
181
  minNativeBufferSize: Milliseconds;
182
182
  removeTimeShiftFromSegment: Milliseconds;
183
183
  tickMaintainInterval: Milliseconds;
184
- tickMaintainThrottle: Milliseconds;
185
184
  minSafeBufferToPlay: Milliseconds;
186
185
  useBufferHoldingOnlyOnStall: boolean;
187
186
  useNewAbr: boolean;