@vkontakte/videoplayer-core 2.0.113 → 2.0.114-dev.2690a809.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.js +19 -19
- package/es2015.esm.js +18 -18
- package/es2018.cjs.js +19 -19
- package/es2018.esm.js +19 -19
- package/esnext.cjs.js +19 -19
- package/esnext.esm.js +18 -18
- package/evergreen.esm.js +18 -18
- package/package.json +2 -2
- package/types/utils/VolumeMultiplierManager/VolumeMultiplierManager.d.ts +4 -2
- package/types/utils/tuningConfig.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vkontakte/videoplayer-core",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.114-dev.2690a809.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": "
|
|
52
|
+
"@vkontakte/videoplayer-shared": "1.0.46-dev.4d1e356b.0",
|
|
53
53
|
"hls.js": "~1.4.7"
|
|
54
54
|
}
|
|
55
55
|
}
|
|
@@ -6,12 +6,14 @@ export declare class VolumeMultiplierManager {
|
|
|
6
6
|
private provider$;
|
|
7
7
|
private volumeMultiplierError$;
|
|
8
8
|
private volumeMultiplier;
|
|
9
|
+
/** флаг, подтверждающий, что мы смогли активировать аудио контекс */
|
|
10
|
+
private audioContextInit;
|
|
9
11
|
private static errorId;
|
|
10
12
|
private subscriptions;
|
|
11
13
|
private lastAudioContextResumeId;
|
|
12
|
-
constructor(providerOutput: IProviderOutput, provider$: IValueSubject<IProviderEntry>, volumeMultiplierError$: ISubject<IError>, volumeMultiplier: number
|
|
14
|
+
constructor(providerOutput: IProviderOutput, provider$: IValueSubject<IProviderEntry>, volumeMultiplierError$: ISubject<IError>, volumeMultiplier: number);
|
|
13
15
|
private subscribe;
|
|
14
|
-
|
|
16
|
+
static isSupported(): boolean;
|
|
15
17
|
private initAudioContextOnce;
|
|
16
18
|
destroy(): void;
|
|
17
19
|
}
|