@pexip/media-processor 22.1.0 → 22.3.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/CHANGELOG.md +51 -0
- package/README.md +34 -0
- package/api-docs/README.mdx +38 -0
- package/api-docs/functions/createBenchmark.mdx +7 -6
- package/api-docs/interfaces/Benchmark.mdx +3 -5
- package/api-docs/interfaces/ProcessorEvent.mdx +1 -0
- package/api-docs/interfaces/ProcessorOptions.mdx +10 -9
- package/api-docs/interfaces/ProcessorUpdateOptions.mdx +10 -9
- package/api-docs/interfaces/RendererOptions.mdx +1 -1
- package/api-docs/interfaces/SegmenterOptions.mdx +7 -6
- package/api-docs/interfaces/TensorMetadata.mdx +11 -0
- package/api-docs/type-aliases/TensorLayout.mdx +3 -0
- package/api-docs/variables/RENDER_BACKEND.mdx +1 -0
- package/api-docs/variables/getCanUseWebGL.mdx +7 -0
- package/api-docs/variables/getTensorMetadata.mdx +14 -0
- package/dist/common/backends/canvas2d/postprocessor.d.ts +30 -0
- package/dist/common/backends/canvas2d/postprocessor.js +88 -0
- package/dist/common/backends/canvas2d/preprocessor.d.ts +56 -0
- package/dist/common/backends/canvas2d/preprocessor.js +139 -0
- package/dist/common/backends/canvas2d/renderer.d.ts +2 -0
- package/dist/common/backends/canvas2d/renderer.js +36 -0
- package/dist/common/backends/webgl/blur.d.ts +1 -1
- package/dist/common/backends/webgl/blur.js +11 -25
- package/dist/common/backends/webgl/renderer.js +4 -4
- package/dist/common/backends/webgpu/dualFilterBlur.js +93 -114
- package/dist/common/backends/webgpu/renderer.js +1 -0
- package/dist/common/backends/webgpu/webgpuUtils.d.ts +35 -0
- package/dist/common/backends/webgpu/webgpuUtils.js +84 -2
- package/dist/common/canvasRenderUtils.d.ts +23 -4
- package/dist/common/canvasRenderUtils.js +48 -11
- package/dist/common/constants.d.ts +1 -0
- package/dist/common/constants.js +1 -0
- package/dist/common/inferencer.d.ts +27 -0
- package/dist/common/inferencer.js +106 -0
- package/dist/common/tsconfig.tsbuildinfo +1 -1
- package/dist/common/types/processor.d.ts +1 -0
- package/dist/common/types/segmentation.d.ts +8 -0
- package/dist/common/utils.d.ts +13 -0
- package/dist/common/utils.js +56 -0
- package/dist/main/audio.js +20 -2
- package/dist/main/benchUtils.d.ts +28 -18
- package/dist/main/benchUtils.js +66 -56
- package/dist/main/tsconfig.tsbuildinfo +1 -1
- package/dist/main/utils.d.ts +9 -0
- package/dist/main/utils.js +12 -0
- package/dist/main/video/segmenter.d.ts +4 -2
- package/dist/main/video/segmenter.js +36 -11
- package/dist/main/video/video.js +13 -1
- package/dist/workers/mediaWorker.js +23 -23
- package/dist/workers/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -10
|
@@ -2,37 +2,47 @@ import type { Clock } from './types';
|
|
|
2
2
|
type FPS = number;
|
|
3
3
|
type Timestamp = number;
|
|
4
4
|
export interface Benchmark {
|
|
5
|
-
begin(timestamp?:
|
|
6
|
-
end(timestamp?:
|
|
5
|
+
begin(timestamp?: Timestamp): void;
|
|
6
|
+
end(timestamp?: Timestamp): void;
|
|
7
7
|
reset(): void;
|
|
8
|
-
|
|
8
|
+
fps(): FPS;
|
|
9
9
|
}
|
|
10
10
|
interface BenchmarkOptions {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
/**
|
|
12
|
+
* Time window in milliseconds. Only frame events within this window
|
|
13
|
+
* contribute to the FPS calculation. Defaults to 1000.
|
|
14
|
+
*/
|
|
15
|
+
windowMs?: number;
|
|
16
|
+
/**
|
|
17
|
+
* Maximum number of frame events to buffer (power-of-two). Defaults to 1024.
|
|
18
|
+
*/
|
|
19
|
+
bufferCapacity?: number;
|
|
20
|
+
/**
|
|
21
|
+
* Minimum number of frame events in the window before reporting a non-zero
|
|
22
|
+
* FPS value. Defaults to 1.
|
|
23
|
+
*/
|
|
24
|
+
minSamples?: number;
|
|
15
25
|
}
|
|
16
26
|
/**
|
|
17
27
|
* Creates a benchmarking utility for measuring frame durations and calculating frames per second (FPS).
|
|
18
28
|
*
|
|
19
29
|
* @remarks
|
|
20
|
-
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
30
|
+
* Uses a time-windowed sliding approach: each frame event stores both its timestamp and
|
|
31
|
+
* processing duration. Only events within the configured time window contribute to FPS.
|
|
32
|
+
* FPS is derived as `windowMs / averageProcessingTime` for events in the window.
|
|
33
|
+
*
|
|
34
|
+
* The `begin()`/`end()` API measures processing time per frame explicitly.
|
|
35
|
+
* Call `fps()` at any time to get the current FPS — no priming or two-call pattern needed.
|
|
25
36
|
*
|
|
26
37
|
* @param clock - An object with a `now()` method returning the current timestamp (in milliseconds). Defaults to `window.performance`.
|
|
27
38
|
* @param options - Optional configuration options for the benchmark utility.
|
|
28
|
-
* @param options.
|
|
29
|
-
* @param options.
|
|
30
|
-
* @param options.
|
|
31
|
-
* @param options.averageThreshold - Minimum number of samples in the buffer required before calculating FPS. Defaults to 100.
|
|
39
|
+
* @param options.windowMs - Time window in ms. Only frames within this window are considered. Defaults to 1000.
|
|
40
|
+
* @param options.bufferCapacity - Max frame events to buffer (power-of-two). Defaults to 1024.
|
|
41
|
+
* @param options.minSamples - Min frames in window before reporting FPS. Defaults to 1.
|
|
32
42
|
*
|
|
33
|
-
* @returns An object with methods to start/end frame measurements, reset the benchmark, and
|
|
43
|
+
* @returns An object with methods to start/end frame measurements, reset the benchmark, and get current FPS.
|
|
34
44
|
*/
|
|
35
|
-
export declare const createBenchmark: (clock?: Clock, {
|
|
45
|
+
export declare const createBenchmark: (clock?: Clock, { windowMs, bufferCapacity, minSamples, }?: BenchmarkOptions) => Benchmark;
|
|
36
46
|
export declare const createWindowedStats: (windowSize?: number) => {
|
|
37
47
|
add(value: number): void;
|
|
38
48
|
readonly mean: number;
|
package/dist/main/benchUtils.js
CHANGED
|
@@ -3,75 +3,85 @@ import { createCircularBuffer } from '@pexip/utils';
|
|
|
3
3
|
* Creates a benchmarking utility for measuring frame durations and calculating frames per second (FPS).
|
|
4
4
|
*
|
|
5
5
|
* @remarks
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
6
|
+
* Uses a time-windowed sliding approach: each frame event stores both its timestamp and
|
|
7
|
+
* processing duration. Only events within the configured time window contribute to FPS.
|
|
8
|
+
* FPS is derived as `windowMs / averageProcessingTime` for events in the window.
|
|
9
|
+
*
|
|
10
|
+
* The `begin()`/`end()` API measures processing time per frame explicitly.
|
|
11
|
+
* Call `fps()` at any time to get the current FPS — no priming or two-call pattern needed.
|
|
11
12
|
*
|
|
12
13
|
* @param clock - An object with a `now()` method returning the current timestamp (in milliseconds). Defaults to `window.performance`.
|
|
13
14
|
* @param options - Optional configuration options for the benchmark utility.
|
|
14
|
-
* @param options.
|
|
15
|
-
* @param options.
|
|
16
|
-
* @param options.
|
|
17
|
-
* @param options.averageThreshold - Minimum number of samples in the buffer required before calculating FPS. Defaults to 100.
|
|
15
|
+
* @param options.windowMs - Time window in ms. Only frames within this window are considered. Defaults to 1000.
|
|
16
|
+
* @param options.bufferCapacity - Max frame events to buffer (power-of-two). Defaults to 1024.
|
|
17
|
+
* @param options.minSamples - Min frames in window before reporting FPS. Defaults to 1.
|
|
18
18
|
*
|
|
19
|
-
* @returns An object with methods to start/end frame measurements, reset the benchmark, and
|
|
19
|
+
* @returns An object with methods to start/end frame measurements, reset the benchmark, and get current FPS.
|
|
20
20
|
*/
|
|
21
|
-
export const createBenchmark = (clock = performance, {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
21
|
+
export const createBenchmark = (clock = performance, { windowMs = 1000, bufferCapacity = 2 ** 10, minSamples = 1, } = {}) => {
|
|
22
|
+
// Parallel circular buffers for timestamps and processing times (struct-of-arrays).
|
|
23
|
+
const timestamps = createCircularBuffer(bufferCapacity, Float64Array);
|
|
24
|
+
const durations = createCircularBuffer(bufferCapacity, Float64Array);
|
|
25
|
+
let beginTime = 0;
|
|
26
|
+
let sum = 0;
|
|
27
|
+
/**
|
|
28
|
+
* Evict frame events whose timestamp is outside the time window relative to `now`.
|
|
29
|
+
*/
|
|
30
|
+
function evict() {
|
|
31
|
+
const latest = timestamps.peekLast();
|
|
32
|
+
if (latest === undefined) {
|
|
33
|
+
return;
|
|
34
|
+
}
|
|
35
|
+
const cutoff = latest - windowMs;
|
|
36
|
+
while (!timestamps.isEmpty()) {
|
|
37
|
+
const oldest = timestamps.peek();
|
|
38
|
+
if (oldest === undefined || oldest >= cutoff) {
|
|
39
|
+
break;
|
|
40
|
+
}
|
|
41
|
+
timestamps.pop();
|
|
42
|
+
const oldDuration = durations.pop() ?? 0;
|
|
43
|
+
sum -= oldDuration;
|
|
44
|
+
}
|
|
45
|
+
// Clamp to zero to prevent floating-point drift from making sum negative.
|
|
46
|
+
if (sum < 0) {
|
|
47
|
+
sum = 0;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
function computeFps() {
|
|
51
|
+
evict();
|
|
52
|
+
const count = timestamps.size();
|
|
53
|
+
if (count < minSamples || sum <= 0) {
|
|
54
|
+
return 0;
|
|
55
|
+
}
|
|
56
|
+
return (windowMs * count) / sum;
|
|
57
|
+
}
|
|
31
58
|
return {
|
|
32
59
|
begin: (timestamp = clock.now()) => {
|
|
33
|
-
|
|
34
|
-
return;
|
|
35
|
-
}
|
|
36
|
-
props.beginTime = timestamp;
|
|
60
|
+
beginTime = timestamp;
|
|
37
61
|
},
|
|
38
62
|
end: (timestamp = clock.now()) => {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
63
|
+
const processingTime = timestamp - beginTime;
|
|
64
|
+
// If buffer is full, evict the oldest entry from the running sum.
|
|
65
|
+
if (timestamps.isFull()) {
|
|
66
|
+
const oldDuration = durations.peek() ?? 0;
|
|
67
|
+
sum -= oldDuration;
|
|
68
|
+
// Clamp to zero to prevent floating-point drift from making sum negative.
|
|
69
|
+
if (sum < 0) {
|
|
70
|
+
sum = 0;
|
|
71
|
+
}
|
|
42
72
|
}
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
props.sum -= oldest;
|
|
47
|
-
}
|
|
48
|
-
const elapsed = props.endTime - props.beginTime;
|
|
49
|
-
props.buffer.push(elapsed);
|
|
50
|
-
props.sum += elapsed;
|
|
73
|
+
timestamps.push(timestamp);
|
|
74
|
+
durations.push(processingTime);
|
|
75
|
+
sum += processingTime;
|
|
51
76
|
},
|
|
52
77
|
reset: () => {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
props.lastCalculateTime = 0;
|
|
78
|
+
timestamps.clear();
|
|
79
|
+
durations.clear();
|
|
80
|
+
beginTime = 0;
|
|
81
|
+
sum = 0;
|
|
58
82
|
},
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
return [props.lastCalculateTime, props.lastResult];
|
|
62
|
-
}
|
|
63
|
-
const calculateTime = clock.now();
|
|
64
|
-
const lastDuration = calculateTime - props.lastCalculateTime;
|
|
65
|
-
if (props.lastCalculateTime &&
|
|
66
|
-
lastDuration >= calculationThresholdMS &&
|
|
67
|
-
props.buffer.size() > averageThreshold) {
|
|
68
|
-
const result = (lastDuration * props.buffer.size()) / props.sum;
|
|
69
|
-
props.lastCalculateTime = calculateTime;
|
|
70
|
-
props.lastResult = result;
|
|
71
|
-
return [calculateTime, result];
|
|
72
|
-
}
|
|
73
|
-
props.lastCalculateTime = calculateTime;
|
|
74
|
-
return [props.lastCalculateTime, props.lastResult];
|
|
83
|
+
fps: () => {
|
|
84
|
+
return computeFps();
|
|
75
85
|
},
|
|
76
86
|
};
|
|
77
87
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es5.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2016.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2023.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.dom.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.date.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.error.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.temporal.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.typedarrays.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.decorators.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../src/main/types.ts","../../../utils/dist/asyncQueue.d.ts","../../../utils/dist/cancellablePromise.d.ts","../../../utils/dist/circularBuffer.d.ts","../../../utils/dist/diff.d.ts","../../../utils/dist/diffSet.d.ts","../../../utils/dist/endsWithAnyOf.d.ts","../../../utils/dist/getBaseURI.d.ts","../../../utils/dist/getTimeLeft.d.ts","../../../utils/dist/hasOwn.d.ts","../../../utils/dist/memoize.d.ts","../../../utils/dist/patterns.d.ts","../../../utils/dist/prig.d.ts","../../../utils/dist/proxyLog.d.ts","../../../utils/dist/queue.d.ts","../../../utils/dist/types.d.ts","../../../utils/dist/scheduler.d.ts","../../../utils/dist/subscribeEvent.d.ts","../../../utils/dist/Backoff.d.ts","../../../utils/dist/assert.d.ts","../../../utils/dist/debounce.d.ts","../../../utils/dist/identity.d.ts","../../../utils/dist/isDefined.d.ts","../../../utils/dist/isEmpty.d.ts","../../../utils/dist/noop.d.ts","../../../utils/dist/nth.d.ts","../../../utils/dist/pipe.d.ts","../../../utils/dist/throttle.d.ts","../../../utils/dist/index.d.ts","../../src/main/math.ts","../../src/main/utils.ts","../../src/main/process.ts","../worklets/types.d.ts","../../src/main/workletNodes.ts","../../src/main/typeGuards.ts","../../src/main/audio.ts","../../src/main/benchUtils.ts","../../src/main/generator.ts","../../src/main/video/load.ts","../common/types/segmentation.d.ts","../common/types/media.d.ts","../common/types/utils.d.ts","../common/types/messageEvents.d.ts","../common/constants.d.ts","../common/types/render.d.ts","../common/types/processor.d.ts","../common/utils.d.ts","../common/typeGuards.d.ts","../common/canvasRenderUtils.d.ts","../common/index.d.ts","../../src/main/video/types.ts","../../src/main/video/typeGuards.ts","../../src/main/video/video.ts","../../src/main/video/constants.ts","../../src/main/video/utils.ts","../../src/main/processor.ts","../../src/main/video/inputProcessAdaptor.ts","../../src/main/video/segmenter.ts","../../src/main/video/index.ts","../../src/main/path.ts","../../src/main/visual.ts","../../src/main/index.ts","../../../../.yarn/cache/@types-trusted-types-npm-2.0.6-c4c3cd363b-04250c7175.zip/node_modules/@types/trusted-types/lib/index.d.ts","../../@types/global.d.ts","../../@types/mediaTransform.d.ts","../../@types/common.d.ts","../../../../.yarn/cache/@types-dom-webcodecs-npm-0.1.10-02a2fa8a5c-dd7b1410da.zip/node_modules/@types/dom-webcodecs/webcodecs.generated.d.ts","../../../../.yarn/cache/@types-dom-webcodecs-npm-0.1.10-02a2fa8a5c-dd7b1410da.zip/node_modules/@types/dom-webcodecs/index.d.ts"],"fileIdsList":[[155],[151],[129],[128,129,130,131,132,133,134,135,136,137],[132,133],[128,129,131,132,133],[132],[128,129,130,132,133],[89,119,120,122,123],[89,117],[89,118,119,120,123,124,125,138,147,149],[89],[89,117,118,119],[127,139,140,141,142,143,145,146],[117,119,126,139,142,143,144],[117,128,129,130,131,132,133,134,135,139],[128,129,132,133,134],[89,119,129,139,142],[117,132,135,138,139,140],[89,148],[121],[104],[90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"17f13ecb98cbc39243f2eee1f16d45cd8ec4706b03ee314f1915f1a8b42f6984","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"5fcab789c73a97cd43828ee3cc94a61264cf24d4c44472ce64ced0e0f148bdb2","affectsGlobalScope":true,"impliedFormat":1},{"version":"db59a81f070c1880ad645b2c0275022baa6a0c4f0acdc58d29d349c6efcf0903","affectsGlobalScope":true,"impliedFormat":1},{"version":"673294292640f5722b700e7d814e17aaf7d93f83a48a2c9b38f33cbc940ad8b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d786b48f934cbca483b3c6d0a798cb43bbb4ada283e76fb22c28e53ae05b9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"142efd4ce210576f777dc34df121777be89eda476942d6d6663b03dcb53be3ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"379bc41580c2d774f82e828c70308f24a005b490c25ba34d679d84bcf05c3d9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"ed484fb2aa8a1a23d0277056ec3336e0a0b52f9b8d6a961f338a642faf43235d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ffedae1d1c2d53fdbca1c96d3c7dda544281f7d262f99b6880634f8fd8d9820","affectsGlobalScope":true,"impliedFormat":1},{"version":"83a730b125d477dd264df8ba479afab27a3dae7152b005c214ab94dc7ee44fd3","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b01d1a6e0169559855673b0d2f0d6931ea24a4877ee1c94f4e053d1ee4e084d","signature":"18d93abe18eb874864853f9c9237d1e1a8d7e9b4be1c7d6b8f2db282e95f4d2c"},"e3f077ed66cc7832adc6c17146cfb730729e8257e78d7bdc7ae34c4276a7de09","1482c77b2d28fa9254f48e76f2ff40f1cfb6bab261fb2d2b98035bb809042939","75931af168d19b13afc5e17e72dc3679f617bb307db6cacc50f9b20b603695aa","2714149cbd3de415c0abcde565063514950a60ff4aef48a8b31e67bccc64ed05","53bcf7a22d47bd524c0bf6869165d59364e472c94066af1e1b0d80cb1826306f","880e53e2d42225d6b22e2e2b4e51cc8b845094a5045b170eb79df031bfaceaac","1e56ad04bd9214bf4583941a499386488cb76389eee3bd65ec882f5e5613cbc8","6fa26b05e6b041a321db7a70f534a93b4eb616916015dddcdeaaf658a340209d","2c437f035a6f3bfe59a7d9ec427f81e1f2495746db06f841c3e2f4c2813cfaac","1f2e2f423c7ec93f80f4543278488d9de8f4d0d5b1385c691e313f42d17a3fca","f06d0f7bb803f3f00b4d0cd16b2d950fb826cf7efec3f68546f3e67746fb969e","d23e3a3000ecd6477941f5eaaa9ba5d72d29928a347ef9821a02a763997d95c4","28fed8cf4724cb06d49f9c2b39f573aa6eb91a1386de4323b717623e9002dbda","3a0d9bd15a78cdc0f4454eb2ac681db16053538de2e1ef65021b12eda3d33323","edfe10afb5dfa79dc3681c3ce2fd73cf84187f82cde5ac9acd0ed6045812be81","019ee2a791e6af5796fdd66704fb0729be24f2e53ffa0e5e2d6f1be2bff9ad02","fce09eb9f7968387bb0891ce15015c18a09ad3a7331f2c425a331cbebba89527","438ef5faada40623680ebd13ae7125e99cfdc7c5326e8b0d3eb07e5f9321bd42","3c85aeafee03e18cb01a4fd383192931acc3f950df08b248519467ceadd4a0ac","0ffdcafaf8eed4f147e35a0d34fa4a5adf8424d3453a4ae34a459247c121537b","45880d016069eaff83f54047396b0f98e413ec43f50c59131d45c9c92dd44dea","2db065eba6f02c7ea4174dfb607acc5773ab2522e35a8e0f723709e07ec66158","97a19b229516b92ec137b44d54f6454b50e105fc4fff659daba9f754982b9a0d","f9a45114811a10722053e6c5329c41eace3295daa477d12558279df4dcbfba71","3698e6b26f72a770b4bfc15504c04bfb678a355b46ceaa7a42cbdac0893b4d5c","f337140c4001e5beb160f61f96115fa07b1da1de621c2056b83d236f184fb373","f3ef3a7a5483561102e1683bbd2d69b6d5764799d3787d80d2ca568f9110d29e","6037dcc4b5137bacb97221473984e28872a382c82540c369f0cd3c7d25b25935",{"version":"152810252d22da1cb8a0381f593bafd977cd8ce3105407b32dc316596d2e99b8","signature":"b09adfe29851c03eb5e7c40f1d6f5f962cdd9f69224e1ccd8d8593352e5dd2a6"},{"version":"02f75ed128d12b7c55d732c90dbccb0643bee37aa9cf9c6c1fa600a32aa75c55","signature":"1f5ea6e9d2345bac63265830518eadc6874ea27a503a09ca69e97abd6ee4685a"},{"version":"6e5c520f97ee982759a61a72881876c198c9d10732a4db9e644f58f1dd104353","signature":"b6bc216f5b1719f0ea67b0a1ae97283c8c04db6420a8055976d51ebdd857d10e"},"f153fd4d4780137d3c6794438072b688a71b3e8648d35e6a6e41019aef6070f9",{"version":"bdd931c37d4c3ddbf7694729a81251f34a24c98bddaaf27d851fb4dc2f4677db","signature":"86ab94987073b8ae616d797bc8e17657d6d007375b5cdee788d99b78e6dd7001"},{"version":"df330ee4158cb09d6c6c2846bede492886dac0e4cf4dc8324ee32a08fb36b190","signature":"d0bfef3cd422b6c62007638855b135e6c819d8de4dc09a0bf4ac68e3c74db426"},{"version":"fc2436ab5737aeec1ec961b51385f8f64f622c9a9e3631938934f76cd02ca147","signature":"7ada7e3e2abdd67409d4d1bf6b59b3c40162df87718106520db4ff2e9679c163"},{"version":"906a45a514e953512096cbfb80f47c1d57b3215ab38a78dae93580ff618ec0d1","signature":"c4cb6a8096f9632d0ac6972b935b65f96ec71b4c92c600f29da36e8187e26605"},{"version":"a7ce400490236a50af31a713114e5e7df0b7dab30542470ca473b8c0fad2a9d3","signature":"a95f57f06164e24a1fdb917199867f9fb551abe0504fdef2ec66f05ed289c025"},{"version":"7f1d330b53c09af17310f159823e661d2fca51eac3a04b10a3926fe7e3a82b92","signature":"93460d55d62a100e35444e1df6a98a60b3ef14c625158549c43573e6a3d1f739"},"9af0551bb3503da1da0443c4aa27cbc393a399b269fff9c24562838fa7f016b6","388ef9804411e7ef8c311b8867785982ee7ce3847bbfa697c8144ff0434a9e29","595b392156c742f2140140a0defc2e32f78a1f17f4bf915045a63b387a6b5ef3","22bf319403df70b14d52a336fe619f7b3b52f53b16de1502349d759f23c01768","5acea172507dfc677874cf2f9387e1ff80d31bee8611b37e7a46ae7deb08c3e5","145253a94a2d69152172286104ea894a6a4bd24157c9c3986a837b5754ce4de6","1c22d6a3a2ed3f1f1becffe41616608dbe439be7dd83d50d2a2813af55cbd7d0","ce3f6eafa64d3e271a49e35b8403b11e7751811e2a449df9661cc887d3e5e87a","0dbab4f3edaa23eefb5e1e949feac566d86052c601a39197f3aa49d28831c2eb","3d91c79111b3664edb18080173f8d80678f7b6945d37d823323197843e6b219a","cf2a1d0a92533cbc4fca18e8f9a04f13c9462b00a87aef31efaf5c994d4b648a",{"version":"1020db2d2fcc558aaf0352efe6f53a469492ffe0d2fa794a21dde79afa1dff2c","signature":"331eb714a7e276a131547ebc44b97cc39e793a959daa7b5f68c8c20114a22dbd"},{"version":"b3094489ea084a92df9a243f85c969298dd83bfd25d7a3b90be60cbcef597d58","signature":"56742fb2c37d8419dea5ebee991ce16090cd2ca8292d985d751a53623f4fa33f"},{"version":"62f0d28497c880a44753b1862f4c2c3a08a327ad17f93dcf1cf2bb0772dfe2ac","signature":"f09f576a480517032ced8df7736b1450300f850d51e7b933c9aeb52ca9503a79"},{"version":"c47f2d8716f8b67e78d422e68141994f4d29749dfcfc37cf6aeaea310d46fb10","signature":"910b1207b99000926d899b6fa7025f5065abcbce06160cec04672d49956f8bf1"},{"version":"0530f09dcb357bd5c261984bc70f67810590fe22272f057a0bb5abdbd3326ab9","signature":"d5fe84a6dee5570969d77f1839fe6b8e204bcbdedaa00f2b11dec76d097dd927"},{"version":"6f35e207094bd6251fc132dde7094d5a43d4e3752071da3792004c9aca0ef32e","signature":"08abb08473a683d16ed53a9abe4ae3a2e42060671605bb829cb39b833f5f98b8"},{"version":"3945aae11a26e6fb87473f5cd02aecddc8c05251ca06c69286f257f7a950e8f3","signature":"8d6def0ebe9533ce7510a7d6099304224f41392abac231577ee7e6698777b78f"},{"version":"5876506cc80b567a33eb9454a74852a0924db2cd58a2fdcac713062a4815b4df","signature":"2cd40cc5c7d80913d218266003ae8cf66dda6b1e89e6aa36795740c7002d414b"},{"version":"d66245b02ee7643104ee4c2b3db6b1198eea66eaa4ad794a7b5733b6c68f0877","signature":"77c458a29af560eb3e01453b1d85e52fcfab37f622710daf7cb629adde8d8839"},{"version":"61b2b4b033a6e460c0fcc511f47c029f9c4d455084a0620c622dc3d4a0245698","signature":"a8910e7c69c0191377502fce63f5770f8d4df54bf60902a39ad340f8f1991a50"},{"version":"c6bc7dd1104763f828ea60dcad41ed400f9480b6d1346c9e7f5399d20d299a69","signature":"ec895812cb4e6ca8008c8ec354409db37ae653c41699ca1d63eb0b42c7222324"},{"version":"91b53b5934e54f0c7110bb9f8c5145da7fec6be8409d28508e60a4e65877f5ea","signature":"4e24ac6e3d657387b0474a5c379a74367f03991eb6c409c3678442255dd33fed"},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"bf1398f368eb9bf4b347a891b4dcb66114a97e8e3f9a94f38caa705eac895ce5","affectsGlobalScope":true},{"version":"bf5897ad4510e099438547cc4c0661700a0909307fab8ef3180159c929e455c7","affectsGlobalScope":true},{"version":"7c08a6ec584c970510f7d1cda4a8ec0461f5dce7d4c5548904ac7afcabd6c1cf","affectsGlobalScope":true},{"version":"da4a8f6629bc630a6b85d0899ca3f610402794a1535d3eb8be826acef5efedfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3c57b01d6648405ea1784c0176e2ad77f77568e7a84d5cb4fc8eefabf00ca22b","affectsGlobalScope":true,"impliedFormat":1}],"root":[89,[118,120],[122,127],[139,150],[152,154]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":false,"esModuleInterop":true,"jsx":2,"module":99,"noImplicitAny":true,"noUncheckedIndexedAccess":true,"outDir":"..","rootDir":"../../src","skipLibCheck":true,"sourceMap":false,"strict":true,"target":7,"verbatimModuleSyntax":true},"referencedMap":[[156,1],[152,2],[137,3],[138,4],[136,5],[134,6],[133,7],[135,8],[124,9],[125,10],[150,11],[148,12],[120,13],[123,12],[119,12],[147,14],[145,15],[146,16],[140,7],[139,17],[143,18],[141,19],[149,20],[122,21],[109,22],[117,23],[115,22],[105,22],[106,22],[116,22]],"latestChangedDtsFile":"./index.d.ts","version":"6.0.2"}
|
|
1
|
+
{"fileNames":["../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es5.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2016.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2023.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.dom.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.date.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.error.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.temporal.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.typedarrays.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.decorators.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../src/main/types.ts","../../../utils/dist/asyncQueue.d.ts","../../../utils/dist/cancellablePromise.d.ts","../../../utils/dist/circularBuffer.d.ts","../../../utils/dist/diff.d.ts","../../../utils/dist/diffSet.d.ts","../../../utils/dist/endsWithAnyOf.d.ts","../../../utils/dist/getBaseURI.d.ts","../../../utils/dist/getTimeLeft.d.ts","../../../utils/dist/hasOwn.d.ts","../../../utils/dist/memoize.d.ts","../../../utils/dist/patterns.d.ts","../../../utils/dist/prig.d.ts","../../../utils/dist/proxyLog.d.ts","../../../utils/dist/queue.d.ts","../../../utils/dist/types.d.ts","../../../utils/dist/scheduler.d.ts","../../../utils/dist/subscribeEvent.d.ts","../../../utils/dist/textRingBuffer.d.ts","../../../utils/dist/Backoff.d.ts","../../../utils/dist/assert.d.ts","../../../utils/dist/debounce.d.ts","../../../utils/dist/identity.d.ts","../../../utils/dist/isDefined.d.ts","../../../utils/dist/isEmpty.d.ts","../../../utils/dist/noop.d.ts","../../../utils/dist/nth.d.ts","../../../utils/dist/pipe.d.ts","../../../utils/dist/throttle.d.ts","../../../utils/dist/index.d.ts","../../src/main/math.ts","../../src/main/utils.ts","../../src/main/process.ts","../worklets/types.d.ts","../../src/main/workletNodes.ts","../../src/main/typeGuards.ts","../../src/main/audio.ts","../../src/main/benchUtils.ts","../../src/main/generator.ts","../../src/main/video/load.ts","../common/types/segmentation.d.ts","../common/types/media.d.ts","../common/types/utils.d.ts","../common/types/messageEvents.d.ts","../common/constants.d.ts","../common/types/render.d.ts","../common/types/processor.d.ts","../../../../.yarn/cache/@litertjs-wasm-utils-npm-2.5.3-a430083ec1-6ca0bc5ceb.zip/node_modules/@litertjs/wasm-utils/dist/index.d.ts","../../../../.yarn/cache/@litertjs-core-npm-2.5.3-d5fa643e9b-d9259d072e.zip/node_modules/@litertjs/core/dist/index.d.ts","../common/inferencer.d.ts","../common/utils.d.ts","../common/typeGuards.d.ts","../common/canvasRenderUtils.d.ts","../common/index.d.ts","../../src/main/video/types.ts","../../src/main/video/typeGuards.ts","../../src/main/video/video.ts","../../src/main/video/constants.ts","../../src/main/video/utils.ts","../../src/main/processor.ts","../../src/main/video/inputProcessAdaptor.ts","../../src/main/video/segmenter.ts","../../src/main/video/index.ts","../../src/main/path.ts","../../src/main/visual.ts","../../src/main/index.ts","../../../../.yarn/cache/@types-trusted-types-npm-2.0.6-c4c3cd363b-04250c7175.zip/node_modules/@types/trusted-types/lib/index.d.ts","../../@types/global.d.ts","../../@types/mediaTransform.d.ts","../../@types/common.d.ts","../../../../.yarn/cache/@types-dom-webcodecs-npm-0.1.10-02a2fa8a5c-dd7b1410da.zip/node_modules/@types/dom-webcodecs/webcodecs.generated.d.ts","../../../../.yarn/cache/@types-dom-webcodecs-npm-0.1.10-02a2fa8a5c-dd7b1410da.zip/node_modules/@types/dom-webcodecs/index.d.ts"],"fileIdsList":[[136],[159],[155],[129,130,131,132,133,134,135,139,140,141],[137],[133,134],[129,130,132,133,134],[133],[129,130,131,133,134,138],[89,120,121,123,124],[89,118],[89,119,120,121,124,125,126,142,151,153],[89],[89,118,119,120],[128,143,144,145,146,147,149,150],[118,120,127,143,146,147,148],[118,129,130,131,132,133,134,135,139,143],[129,130,133,134,135],[89,120,130,143,146],[118,133,139,142,143,144],[89,152],[122],[104],[90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"17f13ecb98cbc39243f2eee1f16d45cd8ec4706b03ee314f1915f1a8b42f6984","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"5fcab789c73a97cd43828ee3cc94a61264cf24d4c44472ce64ced0e0f148bdb2","affectsGlobalScope":true,"impliedFormat":1},{"version":"db59a81f070c1880ad645b2c0275022baa6a0c4f0acdc58d29d349c6efcf0903","affectsGlobalScope":true,"impliedFormat":1},{"version":"673294292640f5722b700e7d814e17aaf7d93f83a48a2c9b38f33cbc940ad8b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d786b48f934cbca483b3c6d0a798cb43bbb4ada283e76fb22c28e53ae05b9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"142efd4ce210576f777dc34df121777be89eda476942d6d6663b03dcb53be3ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"379bc41580c2d774f82e828c70308f24a005b490c25ba34d679d84bcf05c3d9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"ed484fb2aa8a1a23d0277056ec3336e0a0b52f9b8d6a961f338a642faf43235d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ffedae1d1c2d53fdbca1c96d3c7dda544281f7d262f99b6880634f8fd8d9820","affectsGlobalScope":true,"impliedFormat":1},{"version":"83a730b125d477dd264df8ba479afab27a3dae7152b005c214ab94dc7ee44fd3","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b01d1a6e0169559855673b0d2f0d6931ea24a4877ee1c94f4e053d1ee4e084d","signature":"18d93abe18eb874864853f9c9237d1e1a8d7e9b4be1c7d6b8f2db282e95f4d2c"},"e3f077ed66cc7832adc6c17146cfb730729e8257e78d7bdc7ae34c4276a7de09","1482c77b2d28fa9254f48e76f2ff40f1cfb6bab261fb2d2b98035bb809042939","21bfc1c13af2297b0de2aea60b853edc7860c5510da7159d16816427a4fb23d2","2714149cbd3de415c0abcde565063514950a60ff4aef48a8b31e67bccc64ed05","53bcf7a22d47bd524c0bf6869165d59364e472c94066af1e1b0d80cb1826306f","880e53e2d42225d6b22e2e2b4e51cc8b845094a5045b170eb79df031bfaceaac","1e56ad04bd9214bf4583941a499386488cb76389eee3bd65ec882f5e5613cbc8","6fa26b05e6b041a321db7a70f534a93b4eb616916015dddcdeaaf658a340209d","2c437f035a6f3bfe59a7d9ec427f81e1f2495746db06f841c3e2f4c2813cfaac","1f2e2f423c7ec93f80f4543278488d9de8f4d0d5b1385c691e313f42d17a3fca","f06d0f7bb803f3f00b4d0cd16b2d950fb826cf7efec3f68546f3e67746fb969e","d23e3a3000ecd6477941f5eaaa9ba5d72d29928a347ef9821a02a763997d95c4","28fed8cf4724cb06d49f9c2b39f573aa6eb91a1386de4323b717623e9002dbda","3a0d9bd15a78cdc0f4454eb2ac681db16053538de2e1ef65021b12eda3d33323","edfe10afb5dfa79dc3681c3ce2fd73cf84187f82cde5ac9acd0ed6045812be81","019ee2a791e6af5796fdd66704fb0729be24f2e53ffa0e5e2d6f1be2bff9ad02","fce09eb9f7968387bb0891ce15015c18a09ad3a7331f2c425a331cbebba89527","ac8300f85667c4625c800f945c3d5a7ecdda88fc50f1f37fff57fe69c900ad1a","438ef5faada40623680ebd13ae7125e99cfdc7c5326e8b0d3eb07e5f9321bd42","3c85aeafee03e18cb01a4fd383192931acc3f950df08b248519467ceadd4a0ac","0ffdcafaf8eed4f147e35a0d34fa4a5adf8424d3453a4ae34a459247c121537b","45880d016069eaff83f54047396b0f98e413ec43f50c59131d45c9c92dd44dea","2db065eba6f02c7ea4174dfb607acc5773ab2522e35a8e0f723709e07ec66158","97a19b229516b92ec137b44d54f6454b50e105fc4fff659daba9f754982b9a0d","f9a45114811a10722053e6c5329c41eace3295daa477d12558279df4dcbfba71","3698e6b26f72a770b4bfc15504c04bfb678a355b46ceaa7a42cbdac0893b4d5c","f337140c4001e5beb160f61f96115fa07b1da1de621c2056b83d236f184fb373","f3ef3a7a5483561102e1683bbd2d69b6d5764799d3787d80d2ca568f9110d29e","6a2e7ead37832d4b131b0f71f75ca8cb78a610ba4afed1daa8e8527517e6768e",{"version":"152810252d22da1cb8a0381f593bafd977cd8ce3105407b32dc316596d2e99b8","signature":"b09adfe29851c03eb5e7c40f1d6f5f962cdd9f69224e1ccd8d8593352e5dd2a6"},{"version":"34c93876f7353eafd005c65c499c4064650506cfde9660f34c18b18c8b3d9b44","signature":"1fd7ba12d2b7008009dd9ffdf602c74c3dbd9e13306fcd1e225d192d2c2b6283"},{"version":"6e5c520f97ee982759a61a72881876c198c9d10732a4db9e644f58f1dd104353","signature":"b6bc216f5b1719f0ea67b0a1ae97283c8c04db6420a8055976d51ebdd857d10e"},"f153fd4d4780137d3c6794438072b688a71b3e8648d35e6a6e41019aef6070f9",{"version":"bdd931c37d4c3ddbf7694729a81251f34a24c98bddaaf27d851fb4dc2f4677db","signature":"86ab94987073b8ae616d797bc8e17657d6d007375b5cdee788d99b78e6dd7001"},{"version":"df330ee4158cb09d6c6c2846bede492886dac0e4cf4dc8324ee32a08fb36b190","signature":"d0bfef3cd422b6c62007638855b135e6c819d8de4dc09a0bf4ac68e3c74db426"},{"version":"19b6193c68c6742cd7dd1666e08c1f1c087627a3acf7f5b9c0bb9635d3cf74e8","signature":"7ada7e3e2abdd67409d4d1bf6b59b3c40162df87718106520db4ff2e9679c163"},{"version":"161402a010ce79132d7060b37fde0fa830b72b385f10a959f0ae187df3eb7870","signature":"ee3fb3e43eadc5c67cb2e6b5b75cfbf611aca43e73da5a4eaa99b6cab602e480"},{"version":"a7ce400490236a50af31a713114e5e7df0b7dab30542470ca473b8c0fad2a9d3","signature":"a95f57f06164e24a1fdb917199867f9fb551abe0504fdef2ec66f05ed289c025"},{"version":"7f1d330b53c09af17310f159823e661d2fca51eac3a04b10a3926fe7e3a82b92","signature":"93460d55d62a100e35444e1df6a98a60b3ef14c625158549c43573e6a3d1f739"},"006dea0d64720440b6defbd595bb0f5e65b64fad63bcc7cc063588b160570e20","388ef9804411e7ef8c311b8867785982ee7ce3847bbfa697c8144ff0434a9e29","595b392156c742f2140140a0defc2e32f78a1f17f4bf915045a63b387a6b5ef3","22bf319403df70b14d52a336fe619f7b3b52f53b16de1502349d759f23c01768","64ab1b8ee7d3f546397ca5b51cdd726c5009bbb8098c301fd5e25d71e9c85f41","145253a94a2d69152172286104ea894a6a4bd24157c9c3986a837b5754ce4de6","598dd05762a455fe43aef9a0bb6d4faf689aab20de733ffb3415894a8d49139b",{"version":"9b281fb6bd777f169edceaa88af26996ede2f5092b6ef84b99fe3407ed298c45","affectsGlobalScope":true,"impliedFormat":99},{"version":"730c59b982dfbb519e7717693d282fd8428b4375c669263f08fdc2ce8d2ed5cd","affectsGlobalScope":true,"impliedFormat":99},"a5d2864b37e366d030937c6a9b076cd79d93b2c9d83f7d054bedee0c106ef42e","e490c078d00bb26e4fb2f70bd33a9b86ba35f2bec33a8b9675adb376dd5bcff4","0dbab4f3edaa23eefb5e1e949feac566d86052c601a39197f3aa49d28831c2eb","13aeb4718d57454d5a348e57809e094015ae81ca64cef24e31722c46d6b3c798","cf2a1d0a92533cbc4fca18e8f9a04f13c9462b00a87aef31efaf5c994d4b648a",{"version":"1020db2d2fcc558aaf0352efe6f53a469492ffe0d2fa794a21dde79afa1dff2c","signature":"331eb714a7e276a131547ebc44b97cc39e793a959daa7b5f68c8c20114a22dbd"},{"version":"b3094489ea084a92df9a243f85c969298dd83bfd25d7a3b90be60cbcef597d58","signature":"56742fb2c37d8419dea5ebee991ce16090cd2ca8292d985d751a53623f4fa33f"},{"version":"4daf3e68fe453571a0ccacadcd65f46fe4009c9ad8b3b05837b1858760154e02","signature":"f09f576a480517032ced8df7736b1450300f850d51e7b933c9aeb52ca9503a79"},{"version":"c47f2d8716f8b67e78d422e68141994f4d29749dfcfc37cf6aeaea310d46fb10","signature":"910b1207b99000926d899b6fa7025f5065abcbce06160cec04672d49956f8bf1"},{"version":"0530f09dcb357bd5c261984bc70f67810590fe22272f057a0bb5abdbd3326ab9","signature":"d5fe84a6dee5570969d77f1839fe6b8e204bcbdedaa00f2b11dec76d097dd927"},{"version":"6f35e207094bd6251fc132dde7094d5a43d4e3752071da3792004c9aca0ef32e","signature":"08abb08473a683d16ed53a9abe4ae3a2e42060671605bb829cb39b833f5f98b8"},{"version":"3945aae11a26e6fb87473f5cd02aecddc8c05251ca06c69286f257f7a950e8f3","signature":"8d6def0ebe9533ce7510a7d6099304224f41392abac231577ee7e6698777b78f"},{"version":"5404c2832e79b7bed008f9f303c2671d7875a31c4b9ad1e6b9e8da5c1c242acf","signature":"2c5da41fa062041b6d5937e19c35efcb05ad257f3be2e38659b4607ffc9aa5f9"},{"version":"d66245b02ee7643104ee4c2b3db6b1198eea66eaa4ad794a7b5733b6c68f0877","signature":"77c458a29af560eb3e01453b1d85e52fcfab37f622710daf7cb629adde8d8839"},{"version":"61b2b4b033a6e460c0fcc511f47c029f9c4d455084a0620c622dc3d4a0245698","signature":"a8910e7c69c0191377502fce63f5770f8d4df54bf60902a39ad340f8f1991a50"},{"version":"c6bc7dd1104763f828ea60dcad41ed400f9480b6d1346c9e7f5399d20d299a69","signature":"ec895812cb4e6ca8008c8ec354409db37ae653c41699ca1d63eb0b42c7222324"},{"version":"91b53b5934e54f0c7110bb9f8c5145da7fec6be8409d28508e60a4e65877f5ea","signature":"4e24ac6e3d657387b0474a5c379a74367f03991eb6c409c3678442255dd33fed"},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"bf1398f368eb9bf4b347a891b4dcb66114a97e8e3f9a94f38caa705eac895ce5","affectsGlobalScope":true},{"version":"bf5897ad4510e099438547cc4c0661700a0909307fab8ef3180159c929e455c7","affectsGlobalScope":true},{"version":"7c08a6ec584c970510f7d1cda4a8ec0461f5dce7d4c5548904ac7afcabd6c1cf","affectsGlobalScope":true},{"version":"da4a8f6629bc630a6b85d0899ca3f610402794a1535d3eb8be826acef5efedfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3c57b01d6648405ea1784c0176e2ad77f77568e7a84d5cb4fc8eefabf00ca22b","affectsGlobalScope":true,"impliedFormat":1}],"root":[89,[119,121],[123,128],[143,154],[156,158]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":false,"esModuleInterop":true,"jsx":2,"module":99,"noImplicitAny":true,"noUncheckedIndexedAccess":true,"outDir":"..","rootDir":"../../src","skipLibCheck":true,"sourceMap":false,"strict":true,"target":7,"verbatimModuleSyntax":true},"referencedMap":[[137,1],[160,2],[156,3],[142,4],[138,5],[140,6],[135,7],[134,8],[139,9],[125,10],[126,11],[154,12],[152,13],[121,14],[124,13],[120,13],[151,15],[149,16],[150,17],[144,8],[143,18],[147,19],[145,20],[153,21],[123,22],[110,23],[118,24],[116,23],[105,23],[106,23],[117,23]],"latestChangedDtsFile":"./index.d.ts","version":"6.0.2"}
|
package/dist/main/utils.d.ts
CHANGED
|
@@ -10,6 +10,15 @@ export declare const stopStreamTracks: (stream?: MediaStream) => void | undefine
|
|
|
10
10
|
* @param context - @see {@link AudioContext}
|
|
11
11
|
* @param options - @see {@link MediaStreamAudioSourceOptions}
|
|
12
12
|
*
|
|
13
|
+
* @throws When the provided `mediaStream` has no audio track, since a
|
|
14
|
+
* `MediaStreamAudioSourceNode` cannot be created from it
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
*
|
|
18
|
+
* ```typescript
|
|
19
|
+
* const source = createMediaStreamAudioSourceNode(context, {mediaStream});
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
13
22
|
* @internal
|
|
14
23
|
*/
|
|
15
24
|
export declare const createMediaStreamAudioSourceNode: (context: AudioContext, options: MediaStreamAudioSourceOptions) => MediaStreamAudioSourceNode;
|
package/dist/main/utils.js
CHANGED
|
@@ -10,9 +10,21 @@ export const stopStreamTracks = (stream) => stream?.getTracks().forEach(stopTrac
|
|
|
10
10
|
* @param context - @see {@link AudioContext}
|
|
11
11
|
* @param options - @see {@link MediaStreamAudioSourceOptions}
|
|
12
12
|
*
|
|
13
|
+
* @throws When the provided `mediaStream` has no audio track, since a
|
|
14
|
+
* `MediaStreamAudioSourceNode` cannot be created from it
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
*
|
|
18
|
+
* ```typescript
|
|
19
|
+
* const source = createMediaStreamAudioSourceNode(context, {mediaStream});
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
13
22
|
* @internal
|
|
14
23
|
*/
|
|
15
24
|
export const createMediaStreamAudioSourceNode = (context, options) => {
|
|
25
|
+
if (options.mediaStream.getAudioTracks().length === 0) {
|
|
26
|
+
throw new Error('Cannot create a MediaStreamAudioSourceNode from a MediaStream without audio track');
|
|
27
|
+
}
|
|
16
28
|
try {
|
|
17
29
|
const source = new MediaStreamAudioSourceNode(context, options);
|
|
18
30
|
return source;
|
|
@@ -24,9 +24,11 @@ interface Options extends Omit<ImageSegmenterOptions, 'delegate'> {
|
|
|
24
24
|
*/
|
|
25
25
|
modelAsset: SegmentationModelAsset;
|
|
26
26
|
delegate?: () => Delegate;
|
|
27
|
+
/** LiteRT WASM base URL used when the delegate resolves to CPU. */
|
|
28
|
+
litertjsCoreBasePath?: SegmenterOptions['litertjsCoreBasePath'];
|
|
27
29
|
log?: Logger;
|
|
28
30
|
/**
|
|
29
|
-
* Stats callback handler, e.g.
|
|
31
|
+
* Stats callback handler, e.g. benchmark
|
|
30
32
|
*/
|
|
31
33
|
stats?: (stats: FrameTransformStats[]) => void;
|
|
32
34
|
}
|
|
@@ -38,5 +40,5 @@ export declare const createSegmenter: (
|
|
|
38
40
|
* @see {@link
|
|
39
41
|
* https://ai.google.dev/edge/api/mediapipe/js/tasks-vision.filesetresolver#filesetresolverforvisiontasks | FileResolver}
|
|
40
42
|
*/
|
|
41
|
-
basePath?: SegmenterOptions["basePath"], { workerScriptUrl, credentials, delegate, log, stats, ...options }?: Options) => Segmenter;
|
|
43
|
+
basePath?: SegmenterOptions["basePath"], { workerScriptUrl, credentials, delegate, litertjsCoreBasePath, log, stats, ...options }?: Options) => Segmenter;
|
|
42
44
|
export {};
|
|
@@ -9,7 +9,7 @@ export const createSegmenter = (
|
|
|
9
9
|
* @see {@link
|
|
10
10
|
* https://ai.google.dev/edge/api/mediapipe/js/tasks-vision.filesetresolver#filesetresolverforvisiontasks | FileResolver}
|
|
11
11
|
*/
|
|
12
|
-
basePath = '/', { workerScriptUrl = new URL('../../workers/mediaWorker.js', import.meta.url), credentials = 'same-origin', delegate, log, stats, ...options } = { modelAsset: { modelName: 'selfie', path: '' } }) => {
|
|
12
|
+
basePath = '/', { workerScriptUrl = new URL('../../workers/mediaWorker.js', import.meta.url), credentials = 'same-origin', delegate, litertjsCoreBasePath, log, stats, ...options } = { modelAsset: { modelName: 'selfie', path: '' } }) => {
|
|
13
13
|
const props = {
|
|
14
14
|
status: PROCESS_STATUS.New,
|
|
15
15
|
modelAsset: options.modelAsset,
|
|
@@ -56,7 +56,9 @@ basePath = '/', { workerScriptUrl = new URL('../../workers/mediaWorker.js', impo
|
|
|
56
56
|
void handleContextRestored();
|
|
57
57
|
break;
|
|
58
58
|
default:
|
|
59
|
-
|
|
59
|
+
if (!event.data.data.recoverable) {
|
|
60
|
+
props.status = PROCESS_STATUS.Error;
|
|
61
|
+
}
|
|
60
62
|
break;
|
|
61
63
|
}
|
|
62
64
|
break;
|
|
@@ -111,6 +113,9 @@ basePath = '/', { workerScriptUrl = new URL('../../workers/mediaWorker.js', impo
|
|
|
111
113
|
break;
|
|
112
114
|
}
|
|
113
115
|
case 'event': {
|
|
116
|
+
if (ev.data.data.recoverable) {
|
|
117
|
+
break;
|
|
118
|
+
}
|
|
114
119
|
removeListener();
|
|
115
120
|
reject(ev.data.data.error ??
|
|
116
121
|
new Error(ev.data.data.type, {
|
|
@@ -150,12 +155,16 @@ basePath = '/', { workerScriptUrl = new URL('../../workers/mediaWorker.js', impo
|
|
|
150
155
|
const backgroundImage = restOptions?.backgroundImage &&
|
|
151
156
|
(await cloneImageRecord(restOptions.backgroundImage));
|
|
152
157
|
try {
|
|
158
|
+
const currentDelegate = delegate?.();
|
|
153
159
|
const processorSettings = {
|
|
154
160
|
basePath,
|
|
155
161
|
...restOptions,
|
|
162
|
+
...(currentDelegate === 'CPU' && litertjsCoreBasePath
|
|
163
|
+
? { litertjsCoreBasePath }
|
|
164
|
+
: {}),
|
|
156
165
|
imageSegmenterOptions: {
|
|
157
166
|
...options,
|
|
158
|
-
delegate:
|
|
167
|
+
delegate: currentDelegate,
|
|
159
168
|
...imageSegmenterOptions,
|
|
160
169
|
},
|
|
161
170
|
backgroundImage,
|
|
@@ -219,7 +228,7 @@ basePath = '/', { workerScriptUrl = new URL('../../workers/mediaWorker.js', impo
|
|
|
219
228
|
}
|
|
220
229
|
}
|
|
221
230
|
}
|
|
222
|
-
const update = async (
|
|
231
|
+
const update = async (updateOptions) => {
|
|
223
232
|
try {
|
|
224
233
|
if (props.status === PROCESS_STATUS.Processing ||
|
|
225
234
|
props.status === PROCESS_STATUS.Opening ||
|
|
@@ -233,8 +242,13 @@ basePath = '/', { workerScriptUrl = new URL('../../workers/mediaWorker.js', impo
|
|
|
233
242
|
props.mediaWorker?.removeEventListener('message', handleMessage);
|
|
234
243
|
resolve(undefined);
|
|
235
244
|
}
|
|
245
|
+
else if (ev.data.type === 'event' &&
|
|
246
|
+
ev.data.data.recoverable) {
|
|
247
|
+
return;
|
|
248
|
+
}
|
|
236
249
|
else if (ev.data.type !== 'debug' &&
|
|
237
250
|
ev.data.type !== 'stats') {
|
|
251
|
+
props.mediaWorker?.removeEventListener('message', handleMessage);
|
|
238
252
|
reject(new Error(`UnhandledEvent: ${ev.data.type}`));
|
|
239
253
|
}
|
|
240
254
|
};
|
|
@@ -243,16 +257,27 @@ basePath = '/', { workerScriptUrl = new URL('../../workers/mediaWorker.js', impo
|
|
|
243
257
|
await waitForStatus;
|
|
244
258
|
}
|
|
245
259
|
props.status = PROCESS_STATUS.Updating;
|
|
246
|
-
const backgroundImage =
|
|
247
|
-
(await cloneImageRecord(
|
|
248
|
-
|
|
260
|
+
const backgroundImage = updateOptions.backgroundImage &&
|
|
261
|
+
(await cloneImageRecord(updateOptions.backgroundImage));
|
|
262
|
+
const currentDelegate = delegate?.();
|
|
263
|
+
const processorSettings = {
|
|
264
|
+
...updateOptions,
|
|
265
|
+
basePath,
|
|
266
|
+
...(currentDelegate === 'CPU' && litertjsCoreBasePath
|
|
267
|
+
? { litertjsCoreBasePath }
|
|
268
|
+
: {}),
|
|
269
|
+
imageSegmenterOptions: {
|
|
270
|
+
...options,
|
|
271
|
+
delegate: currentDelegate,
|
|
272
|
+
...updateOptions.imageSegmenterOptions,
|
|
273
|
+
},
|
|
274
|
+
backgroundImage,
|
|
275
|
+
};
|
|
276
|
+
log?.debug({ config: processorSettings }, 'Update processor config');
|
|
249
277
|
const transfer = backgroundImage ? [backgroundImage.image] : [];
|
|
250
278
|
const changed = await postMsg('updated', {
|
|
251
279
|
type: 'update',
|
|
252
|
-
data:
|
|
253
|
-
...options,
|
|
254
|
-
backgroundImage,
|
|
255
|
-
},
|
|
280
|
+
data: processorSettings,
|
|
256
281
|
}, transfer);
|
|
257
282
|
props.status = PROCESS_STATUS.Updated;
|
|
258
283
|
return changed;
|
package/dist/main/video/video.js
CHANGED
|
@@ -87,7 +87,9 @@ const createRenderOptions = ({ foregroundThreshold = FOREGROUND_THRESHOLD, backg
|
|
|
87
87
|
break;
|
|
88
88
|
}
|
|
89
89
|
case 'backend': {
|
|
90
|
-
if ((newValue === 'webgl' ||
|
|
90
|
+
if ((newValue === 'webgl' ||
|
|
91
|
+
newValue === 'webgpu' ||
|
|
92
|
+
newValue === 'canvas2d') &&
|
|
91
93
|
newValue !== target[p]) {
|
|
92
94
|
Reflect.set(target, p, newValue, receiver);
|
|
93
95
|
onChange(p, newValue);
|
|
@@ -252,6 +254,16 @@ export const createVideoProcessor = (segmenter, inputProcessAdaptor) => {
|
|
|
252
254
|
_processorOptions.processingHeight =
|
|
253
255
|
processorOptions.processingHeight;
|
|
254
256
|
}
|
|
257
|
+
if (options.basePath) {
|
|
258
|
+
processorOptions.basePath = options.basePath;
|
|
259
|
+
_processorOptions.basePath = processorOptions.basePath;
|
|
260
|
+
}
|
|
261
|
+
if (options.litertjsCoreBasePath) {
|
|
262
|
+
processorOptions.litertjsCoreBasePath =
|
|
263
|
+
options.litertjsCoreBasePath;
|
|
264
|
+
_processorOptions.litertjsCoreBasePath =
|
|
265
|
+
processorOptions.litertjsCoreBasePath;
|
|
266
|
+
}
|
|
255
267
|
if (options.imageSegmenterOptions) {
|
|
256
268
|
processorOptions.imageSegmenterOptions = {
|
|
257
269
|
...processorOptions.imageSegmenterOptions,
|