@vkontakte/videoplayer-core 2.0.149-dev.e6e86083.0 → 2.0.150-dev.31e6196f.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 +32 -32
- package/es2015.esm.js +27 -27
- package/es2018.cjs +23 -23
- package/es2018.esm.js +18 -18
- package/es2024.cjs +25 -25
- package/es2024.esm.js +23 -23
- package/esnext.cjs +25 -25
- package/esnext.esm.js +23 -23
- package/evergreen.esm.js +16 -16
- package/package.json +2 -2
- package/types/providers/DashProviderVirtual/lib/buffer/nativeBufferManager.d.ts +1 -1
- package/types/providers/DashProviderVirtual/lib/buffer/sourceBufferTaskQueue.d.ts +2 -1
- package/types/utils/ClientChecker/services/DeviceChecker.d.ts +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vkontakte/videoplayer-core",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.150-dev.31e6196f.0",
|
|
4
4
|
"author": "vk.com",
|
|
5
5
|
"description": "Videoplayer core library based on the vk.com platform",
|
|
6
6
|
"homepage": "https://vk.com",
|
|
@@ -54,6 +54,6 @@
|
|
|
54
54
|
"**/*.d.ts"
|
|
55
55
|
],
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@vkontakte/videoplayer-shared": "1.0.
|
|
57
|
+
"@vkontakte/videoplayer-shared": "1.0.79-dev.31e6196f.0"
|
|
58
58
|
}
|
|
59
59
|
}
|
|
@@ -6,7 +6,7 @@ export declare class NativeBufferManager {
|
|
|
6
6
|
private sourceBufferTaskQueue;
|
|
7
7
|
private subscription;
|
|
8
8
|
constructor(mediaSource: MediaSource);
|
|
9
|
-
init(mime: string, codecs: string): void;
|
|
9
|
+
init(mime: string, codecs: string, useAbortMSEFix?: boolean): void;
|
|
10
10
|
addInitSegment(initView: BufferSource, signal?: AbortSignal): Promise<boolean>;
|
|
11
11
|
append(segmentView: BufferSource, signal?: AbortSignal): Promise<boolean>;
|
|
12
12
|
remove(from: Milliseconds, to: Milliseconds, signal?: AbortSignal): Promise<boolean>;
|
|
@@ -7,7 +7,8 @@ declare class SourceBufferTaskQueue {
|
|
|
7
7
|
private currentTask;
|
|
8
8
|
private destroyed;
|
|
9
9
|
private abortRequested;
|
|
10
|
-
|
|
10
|
+
private isAbortFixEnabled;
|
|
11
|
+
constructor(buffer: SourceBuffer, isAbortFixEnabled?: boolean);
|
|
11
12
|
append(data: BufferSource, signal?: AbortSignal): Promise<boolean>;
|
|
12
13
|
remove(from: Milliseconds, to: Milliseconds, signal?: AbortSignal): Promise<boolean>;
|
|
13
14
|
abort(init?: BufferSource): Promise<boolean>;
|
|
@@ -35,8 +35,10 @@ export declare class DeviceChecker implements Checker {
|
|
|
35
35
|
private detectHighEntropyValues;
|
|
36
36
|
private detectDevice;
|
|
37
37
|
private detectOS;
|
|
38
|
-
private detectDeviceDetails;
|
|
39
|
-
private detectIOSVersion;
|
|
40
38
|
private normalizeOSName;
|
|
41
39
|
private normalizeOSVersion;
|
|
40
|
+
private detectDeviceDetails;
|
|
41
|
+
private normalizeVendorName;
|
|
42
|
+
private normalizeModelName;
|
|
43
|
+
private detectIOSVersion;
|
|
42
44
|
}
|