@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/es2015.cjs +5 -5
- package/es2015.esm.js +15 -15
- package/esnext.cjs +5 -5
- package/esnext.esm.js +34 -34
- package/evergreen.esm.js +8 -8
- package/package.json +2 -2
- package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/baseVirtualBufferManager.d.ts +1 -1
- package/types/utils/tuningConfig.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vkontakte/videoplayer-core",
|
|
3
|
-
"version": "2.0.166-dev.
|
|
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.
|
|
45
|
+
"@vkontakte/videoplayer-shared": "1.0.95-dev.0bf203cc7.0"
|
|
46
46
|
}
|
|
47
47
|
}
|
package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/baseVirtualBufferManager.d.ts
CHANGED
|
@@ -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;
|