@pexip/media-processor 20.3.4 → 21.0.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 +47 -0
- package/api-docs/README.mdx +438 -0
- package/api-docs/enumerations/AbortReason.mdx +5 -0
- package/api-docs/functions/avg.mdx +15 -0
- package/api-docs/functions/calculateDistance.mdx +18 -0
- package/api-docs/functions/closedCurve.mdx +27 -0
- package/api-docs/functions/copyByteBufferToFloatBuffer.mdx +16 -0
- package/api-docs/functions/createAnalyzerGraphNode.mdx +19 -0
- package/api-docs/functions/createAnalyzerSubscribableGraphNode.mdx +15 -0
- package/api-docs/functions/createAsyncCallbackLoop.mdx +35 -0
- package/api-docs/functions/createAudioContext.mdx +22 -0
- package/api-docs/functions/createAudioDestinationGraphNode.mdx +9 -0
- package/api-docs/functions/createAudioGraph.mdx +28 -0
- package/api-docs/functions/createAudioGraphProxy.mdx +14 -0
- package/api-docs/functions/createAudioSignalDetector.mdx +51 -0
- package/api-docs/functions/createAudioStats.mdx +19 -0
- package/api-docs/functions/createBenchmark.mdx +26 -0
- package/api-docs/functions/createCanvas.mdx +16 -0
- package/api-docs/functions/createCanvasTransform.mdx +14 -0
- package/api-docs/functions/createChannelMergerGraphNode.mdx +19 -0
- package/api-docs/functions/createChannelSplitterGraphNode.mdx +19 -0
- package/api-docs/functions/createDelayGraphNode.mdx +19 -0
- package/api-docs/functions/createDenoiseWorkletGraphNode.mdx +16 -0
- package/api-docs/functions/createFrameCallbackRequest.mdx +29 -0
- package/api-docs/functions/createGainGraphNode.mdx +15 -0
- package/api-docs/functions/createMediaElementSourceGraphNode.mdx +15 -0
- package/api-docs/functions/createSegmenter.mdx +14 -0
- package/api-docs/functions/createStreamDestinationGraphNode.mdx +15 -0
- package/api-docs/functions/createStreamSourceGraphNode.mdx +16 -0
- package/api-docs/functions/createVADetector.mdx +54 -0
- package/api-docs/functions/createVideoProcessor.mdx +14 -0
- package/api-docs/functions/createVideoTrackProcessor.mdx +9 -0
- package/api-docs/functions/createVideoTrackProcessorWithFallback.mdx +15 -0
- package/api-docs/functions/createVoiceDetectorFromProbability.mdx +15 -0
- package/api-docs/functions/createVoiceDetectorFromTimeData.mdx +19 -0
- package/api-docs/functions/createWindowedStats.mdx +23 -0
- package/api-docs/functions/curve.mdx +15 -0
- package/api-docs/functions/fromByteToFloat.mdx +27 -0
- package/api-docs/functions/fromFloatToByte.mdx +27 -0
- package/api-docs/functions/getAudioStats.mdx +19 -0
- package/api-docs/functions/getBezierCurveControlPoints.mdx +26 -0
- package/api-docs/functions/iou.mdx +19 -0
- package/api-docs/functions/isAnalyzerNodeInit.mdx +13 -0
- package/api-docs/functions/isAudioNode.mdx +13 -0
- package/api-docs/functions/isAudioNodeInit.mdx +13 -0
- package/api-docs/functions/isAudioParam.mdx +13 -0
- package/api-docs/functions/isClipping.mdx +18 -0
- package/api-docs/functions/isEqualSize.mdx +22 -0
- package/api-docs/functions/isLowVolume.mdx +19 -0
- package/api-docs/functions/isMono.mdx +22 -0
- package/api-docs/functions/isRenderEffects.mdx +13 -0
- package/api-docs/functions/isSilent.mdx +22 -0
- package/api-docs/functions/isVoiceActivity.mdx +29 -0
- package/api-docs/functions/labelComponents.mdx +20 -0
- package/api-docs/functions/line.mdx +15 -0
- package/api-docs/functions/loadScript.mdx +14 -0
- package/api-docs/functions/loadWasms.mdx +13 -0
- package/api-docs/functions/nearestPowerOfTwo.mdx +21 -0
- package/api-docs/functions/playVideo.mdx +16 -0
- package/api-docs/functions/pow.mdx +29 -0
- package/api-docs/functions/processAverageVolume.mdx +15 -0
- package/api-docs/functions/resumeAudioOnInterruption.mdx +23 -0
- package/api-docs/functions/resumeAudioOnUnmute.mdx +27 -0
- package/api-docs/functions/rms.mdx +15 -0
- package/api-docs/functions/round.mdx +23 -0
- package/api-docs/functions/scoreComponent.mdx +22 -0
- package/api-docs/functions/setVideoElementSrc.mdx +14 -0
- package/api-docs/functions/subscribeTimeoutAnalyzerNode.mdx +22 -0
- package/api-docs/functions/subscribeWorkletNode.mdx +28 -0
- package/api-docs/functions/sum.mdx +15 -0
- package/api-docs/functions/toDecibel.mdx +18 -0
- package/api-docs/interfaces/Analyzer.mdx +368 -0
- package/api-docs/interfaces/AnalyzerSubscribableOptions.mdx +11 -0
- package/api-docs/interfaces/AsyncAssets.mdx +7 -0
- package/api-docs/interfaces/AudioGraph.mdx +92 -0
- package/api-docs/interfaces/AudioGraphOptions.mdx +6 -0
- package/api-docs/interfaces/AudioNodeInit.mdx +127 -0
- package/api-docs/interfaces/AudioNodeProps.mdx +15 -0
- package/api-docs/interfaces/AudioStats.mdx +16 -0
- package/api-docs/interfaces/BackgroundImage.mdx +6 -0
- package/api-docs/interfaces/Benchmark.mdx +47 -0
- package/api-docs/interfaces/Clock.mdx +11 -0
- package/api-docs/interfaces/Denoise.mdx +50 -0
- package/api-docs/interfaces/Detector.mdx +81 -0
- package/api-docs/interfaces/Frame.mdx +11 -0
- package/api-docs/interfaces/Gain.mdx +227 -0
- package/api-docs/interfaces/ImageRecord.mdx +6 -0
- package/api-docs/interfaces/ImageSegmenterOptions.mdx +8 -0
- package/api-docs/interfaces/MPMask.mdx +145 -0
- package/api-docs/interfaces/Point.mdx +10 -0
- package/api-docs/interfaces/Process.mdx +46 -0
- package/api-docs/interfaces/ProcessEventClose.mdx +7 -0
- package/api-docs/interfaces/ProcessEventDebug.mdx +14 -0
- package/api-docs/interfaces/ProcessEventDestroy.mdx +7 -0
- package/api-docs/interfaces/ProcessEventOpen.mdx +14 -0
- package/api-docs/interfaces/ProcessEventProcess.mdx +14 -0
- package/api-docs/interfaces/ProcessEventUpdate.mdx +14 -0
- package/api-docs/interfaces/ProcessWorkerDebugMessage.mdx +6 -0
- package/api-docs/interfaces/ProcessWorkerEvent.mdx +12 -0
- package/api-docs/interfaces/ProcessWorkerEventDebug.mdx +12 -0
- package/api-docs/interfaces/ProcessWorkerEventOpened.mdx +5 -0
- package/api-docs/interfaces/ProcessWorkerEventProcessed.mdx +12 -0
- package/api-docs/interfaces/ProcessWorkerEventUpdated.mdx +5 -0
- package/api-docs/interfaces/ProcessorEvent.mdx +7 -0
- package/api-docs/interfaces/ProcessorOptions.mdx +16 -0
- package/api-docs/interfaces/ProcessorProcessOptions.mdx +6 -0
- package/api-docs/interfaces/Rect.mdx +8 -0
- package/api-docs/interfaces/RenderEventHandlers.mdx +7 -0
- package/api-docs/interfaces/Renderer.mdx +64 -0
- package/api-docs/interfaces/RendererOptions.mdx +32 -0
- package/api-docs/interfaces/Runner.mdx +41 -0
- package/api-docs/interfaces/Segmentation.mdx +5 -0
- package/api-docs/interfaces/SegmentationModelAsset.mdx +8 -0
- package/api-docs/interfaces/SegmentationParams.mdx +35 -0
- package/api-docs/interfaces/SegmentationSmoothingConfig.mdx +5 -0
- package/api-docs/interfaces/Segmenter.mdx +121 -0
- package/api-docs/interfaces/SegmenterOptions.mdx +13 -0
- package/api-docs/interfaces/SelectionOptions.mdx +15 -0
- package/api-docs/interfaces/Size.mdx +10 -0
- package/api-docs/interfaces/Stats.mdx +11 -0
- package/api-docs/interfaces/StatsOptions.mdx +10 -0
- package/api-docs/interfaces/SubscribableOptions.mdx +9 -0
- package/api-docs/interfaces/ThrottleOptions.mdx +8 -0
- package/api-docs/interfaces/Transform.mdx +62 -0
- package/api-docs/interfaces/VideoFrameLike.mdx +8 -0
- package/api-docs/interfaces/VideoProcessor.mdx +38 -0
- package/api-docs/interfaces/Weights.mdx +12 -0
- package/api-docs/interfaces/WorkletMessagePortOptions.mdx +16 -0
- package/api-docs/interfaces/WorkletModule.mdx +6 -0
- package/api-docs/type-aliases/AnalyzerNodeInit.mdx +3 -0
- package/api-docs/type-aliases/AsyncCallback.mdx +7 -0
- package/api-docs/type-aliases/AudioBufferBytes.mdx +5 -0
- package/api-docs/type-aliases/AudioBufferFloats.mdx +6 -0
- package/api-docs/type-aliases/AudioDestinationNodeInit.mdx +3 -0
- package/api-docs/type-aliases/AudioNodeConnectParam.mdx +3 -0
- package/api-docs/type-aliases/AudioNodeInitConnectParam.mdx +3 -0
- package/api-docs/type-aliases/AudioNodeInitConnection.mdx +3 -0
- package/api-docs/type-aliases/AudioNodeInitConnections.mdx +3 -0
- package/api-docs/type-aliases/AudioNodeParam.mdx +3 -0
- package/api-docs/type-aliases/AudioSamples.mdx +17 -0
- package/api-docs/type-aliases/BaseAudioNode.mdx +3 -0
- package/api-docs/type-aliases/Callback.mdx +20 -0
- package/api-docs/type-aliases/Canvas.mdx +3 -0
- package/api-docs/type-aliases/CanvasContext.mdx +3 -0
- package/api-docs/type-aliases/ChannelSplitterNodeInit.mdx +3 -0
- package/api-docs/type-aliases/Color.mdx +12 -0
- package/api-docs/type-aliases/ConnectInitParamBaseType.mdx +3 -0
- package/api-docs/type-aliases/ConnectInitParamType.mdx +3 -0
- package/api-docs/type-aliases/ConnectParamBase.mdx +11 -0
- package/api-docs/type-aliases/ConnectParamBaseType.mdx +3 -0
- package/api-docs/type-aliases/ConnectParamType.mdx +3 -0
- package/api-docs/type-aliases/DelayNodeInit.mdx +3 -0
- package/api-docs/type-aliases/Delegate.mdx +3 -0
- package/api-docs/type-aliases/DenoiseWorkletNodeInit.mdx +3 -0
- package/api-docs/type-aliases/ExtractMessageEventType.mdx +9 -0
- package/api-docs/type-aliases/GainNodeInit.mdx +3 -0
- package/api-docs/type-aliases/ImageMapIterable.mdx +3 -0
- package/api-docs/type-aliases/ImageType.mdx +6 -0
- package/api-docs/type-aliases/IncludeMessageEventDataType.mdx +10 -0
- package/api-docs/type-aliases/InputFrame.mdx +3 -0
- package/api-docs/type-aliases/IsVoice.mdx +19 -0
- package/api-docs/type-aliases/MediaElementAudioSourceNodeInit.mdx +3 -0
- package/api-docs/type-aliases/MediaStreamAudioDestinationNodeInit.mdx +3 -0
- package/api-docs/type-aliases/MediaStreamAudioSourceNodeInit.mdx +3 -0
- package/api-docs/type-aliases/Node.mdx +3 -0
- package/api-docs/type-aliases/NodeConnectionAction.mdx +3 -0
- package/api-docs/type-aliases/Nodes.mdx +3 -0
- package/api-docs/type-aliases/OptionalKeys.mdx +10 -0
- package/api-docs/type-aliases/ProcessEvents.mdx +17 -0
- package/api-docs/type-aliases/ProcessInputType.mdx +3 -0
- package/api-docs/type-aliases/ProcessStatus.mdx +3 -0
- package/api-docs/type-aliases/ProcessVideoTrack.mdx +15 -0
- package/api-docs/type-aliases/ProcessWorkerEvents.mdx +18 -0
- package/api-docs/type-aliases/ProcessorEvents.mdx +3 -0
- package/api-docs/type-aliases/ProcessorWorkerEvents.mdx +3 -0
- package/api-docs/type-aliases/RenderBackend.mdx +3 -0
- package/api-docs/type-aliases/RenderEffects.mdx +3 -0
- package/api-docs/type-aliases/RenderingEvents.mdx +3 -0
- package/api-docs/type-aliases/RunnerCreator.mdx +21 -0
- package/api-docs/type-aliases/SegmentationModel.mdx +3 -0
- package/api-docs/type-aliases/SegmentationTransform.mdx +3 -0
- package/api-docs/type-aliases/TupleOf.mdx +12 -0
- package/api-docs/type-aliases/UniversalAudioContextState.mdx +6 -0
- package/api-docs/type-aliases/Unsubscribe.mdx +9 -0
- package/api-docs/type-aliases/WasmPaths.mdx +3 -0
- package/api-docs/variables/BACKGROUND_BLUR_AMOUNT.mdx +3 -0
- package/api-docs/variables/BACKGROUND_THRESHOLD.mdx +3 -0
- package/api-docs/variables/CLIP_COUNT_THRESHOLD.mdx +6 -0
- package/api-docs/variables/CLIP_THRESHOLD.mdx +5 -0
- package/api-docs/variables/DOWN_SAMPLE_FACTOR.mdx +3 -0
- package/api-docs/variables/EDGE_BLUR_AMOUNT.mdx +3 -0
- package/api-docs/variables/EXCLUDE_BYSTANDERS.mdx +3 -0
- package/api-docs/variables/FOREGROUND_THRESHOLD.mdx +3 -0
- package/api-docs/variables/FRAME_RATE.mdx +3 -0
- package/api-docs/variables/LIGHT_WRAP_BLUR_AMOUNT.mdx +3 -0
- package/api-docs/variables/LIGHT_WRAP_EDGE_BAND.mdx +3 -0
- package/api-docs/variables/LIGHT_WRAP_INTENSITY.mdx +3 -0
- package/api-docs/variables/LIGHT_WRAP_TIGHTNESS.mdx +3 -0
- package/api-docs/variables/LOW_VOLUME_THRESHOLD.mdx +5 -0
- package/api-docs/variables/MASK_COMBINE_RATIO.mdx +3 -0
- package/api-docs/variables/MONO_THRESHOLD.mdx +6 -0
- package/api-docs/variables/MORPH_DILATE_RADIUS_PX.mdx +3 -0
- package/api-docs/variables/MORPH_ERODE_RADIUS_PX.mdx +3 -0
- package/api-docs/variables/MORPH_PASS.mdx +3 -0
- package/api-docs/variables/PERSON_CENTER.mdx +3 -0
- package/api-docs/variables/PLAY_VIDEO_TIMEOUT.mdx +3 -0
- package/api-docs/variables/PROCESSING_HEIGHT.mdx +3 -0
- package/api-docs/variables/PROCESSING_WIDTH.mdx +3 -0
- package/api-docs/variables/PROCESS_STATUS.mdx +22 -0
- package/api-docs/variables/RENDERING_EVENTS.mdx +14 -0
- package/api-docs/variables/RENDER_BACKEND.mdx +10 -0
- package/api-docs/variables/RENDER_EFFECT.mdx +11 -0
- package/api-docs/variables/SEGMENTATION_MODELS.mdx +10 -0
- package/api-docs/variables/SIGMA_RANGE.mdx +3 -0
- package/api-docs/variables/SIGMA_SPACE.mdx +3 -0
- package/api-docs/variables/SILENT_THRESHOLD.mdx +6 -0
- package/api-docs/variables/STRONG_EDGE_BLUR_AMOUNT.mdx +3 -0
- package/api-docs/variables/VOICE_PROBABILITY_THRESHOLD.mdx +5 -0
- package/api-docs/variables/calculateMaxBlurPass.mdx +13 -0
- package/api-docs/variables/clamping.mdx +26 -0
- package/api-docs/variables/createLazyProps.mdx +19 -0
- package/api-docs/variables/createObjectUpdater.mdx +31 -0
- package/api-docs/variables/createRemoteImageBitmap.mdx +21 -0
- package/api-docs/variables/getCanvasRenderingContext2D.mdx +14 -0
- package/api-docs/variables/getErrorMessage.mdx +13 -0
- package/api-docs/variables/getImageSize.mdx +13 -0
- package/api-docs/variables/handleWebGLContextLoss.mdx +21 -0
- package/api-docs/variables/isRenderingEvents.mdx +13 -0
- package/api-docs/variables/isSegmentationModel.mdx +13 -0
- package/api-docs/variables/resize.mdx +30 -0
- package/api-docs/variables/toRenderingEvents.mdx +13 -0
- package/api-docs/variables/urls.mdx +10 -0
- package/dist/common/backends/webgl/binaryMask.d.ts +8 -0
- package/dist/common/backends/webgl/binaryMask.js +95 -0
- package/dist/common/backends/webgl/blender.d.ts +2 -1
- package/dist/common/backends/webgl/blender.js +18 -15
- package/dist/common/backends/webgl/blur.d.ts +1 -1
- package/dist/common/backends/webgl/blur.js +23 -16
- package/dist/common/backends/webgl/canvas.js +9 -4
- package/dist/common/backends/webgl/diffAbsMask.d.ts +10 -0
- package/dist/common/backends/webgl/diffAbsMask.js +103 -0
- package/dist/common/backends/webgl/geodesicReconstruction.d.ts +13 -0
- package/dist/common/backends/webgl/geodesicReconstruction.js +176 -0
- package/dist/common/backends/webgl/jointBilateralFilter.d.ts +12 -0
- package/dist/common/backends/webgl/jointBilateralFilter.js +108 -0
- package/dist/common/backends/webgl/morphErode.d.ts +13 -0
- package/dist/common/backends/webgl/morphErode.js +121 -0
- package/dist/common/backends/webgl/renderer.js +194 -34
- package/dist/common/backends/webgl/replace.d.ts +17 -0
- package/dist/common/backends/webgl/replace.js +126 -0
- package/dist/common/backends/webgl/selectComponent.d.ts +15 -0
- package/dist/common/backends/webgl/selectComponent.js +102 -0
- package/dist/common/backends/webgl/smoothingMask.d.ts +3 -3
- package/dist/common/backends/webgl/smoothingMask.js +22 -21
- package/dist/common/backends/webgl/tentBlur.d.ts +9 -0
- package/dist/common/backends/webgl/tentBlur.js +118 -0
- package/dist/common/backends/webgl/texture.d.ts +1 -1
- package/dist/common/backends/webgl/texture.js +19 -17
- package/dist/common/backends/webgl/textureToTexture.d.ts +1 -1
- package/dist/common/backends/webgl/textureToTexture.js +19 -16
- package/dist/common/backends/webgl/webglUtils.d.ts +7 -1
- package/dist/common/backends/webgl/webglUtils.js +64 -6
- package/dist/common/backends/webgpu/blender.d.ts +6 -1
- package/dist/common/backends/webgpu/blender.js +96 -51
- package/dist/common/backends/webgpu/constants.js +1 -1
- package/dist/common/backends/webgpu/dualFilterBlur.d.ts +2 -3
- package/dist/common/backends/webgpu/dualFilterBlur.js +146 -140
- package/dist/common/backends/webgpu/jointBilateralFilter.d.ts +7 -0
- package/dist/common/backends/webgpu/jointBilateralFilter.js +162 -0
- package/dist/common/backends/webgpu/renderer.js +211 -39
- package/dist/common/backends/webgpu/replace.d.ts +11 -0
- package/dist/common/backends/webgpu/replace.js +175 -0
- package/dist/common/backends/webgpu/resize.d.ts +4 -0
- package/dist/common/backends/webgpu/resize.js +76 -0
- package/dist/common/backends/webgpu/smoothingMask.d.ts +2 -2
- package/dist/common/backends/webgpu/smoothingMask.js +74 -40
- package/dist/common/backends/webgpu/tentBlur.d.ts +5 -0
- package/dist/common/backends/webgpu/tentBlur.js +131 -0
- package/dist/common/backends/webgpu/texture.d.ts +2 -2
- package/dist/common/backends/webgpu/texture.js +24 -19
- package/dist/common/backends/webgpu/textureToTexture.d.ts +1 -1
- package/dist/common/backends/webgpu/textureToTexture.js +28 -15
- package/dist/common/backends/webgpu/types.d.ts +2 -0
- package/dist/common/backends/webgpu/webgpuUtils.d.ts +24 -4
- package/dist/common/backends/webgpu/webgpuUtils.js +60 -11
- package/dist/common/constants.d.ts +19 -5
- package/dist/common/constants.js +19 -5
- package/dist/common/index.d.ts +1 -0
- package/dist/common/index.js +1 -0
- package/dist/common/tsconfig.tsbuildinfo +1 -1
- package/dist/common/types/render.d.ts +142 -13
- package/dist/common/types/utils.d.ts +21 -0
- package/dist/common/utils.d.ts +16 -0
- package/dist/common/utils.js +152 -0
- package/dist/main/benchUtils.d.ts +33 -1
- package/dist/main/benchUtils.js +145 -11
- package/dist/main/tsconfig.tsbuildinfo +1 -1
- package/dist/main/video/canvasTransform.d.ts +1 -1
- package/dist/main/video/canvasTransform.js +135 -47
- package/dist/main/video/index.d.ts +1 -1
- package/dist/main/video/index.js +1 -1
- package/dist/workers/mediaWorker.js +35 -162
- package/dist/workers/tsconfig.tsbuildinfo +1 -1
- package/package.json +16 -10
- package/dist/common/backends/webgl/shaders/blendFragmentShader.d.ts +0 -1
- package/dist/common/backends/webgl/shaders/blendFragmentShader.js +0 -21
- package/dist/common/backends/webgl/shaders/dualFilterBlurFragmentShader.d.ts +0 -1
- package/dist/common/backends/webgl/shaders/dualFilterBlurFragmentShader.js +0 -45
- package/dist/common/backends/webgl/shaders/smoothingMaskFragmentShader.d.ts +0 -1
- package/dist/common/backends/webgl/shaders/smoothingMaskFragmentShader.js +0 -57
- package/dist/common/backends/webgl/shaders/textureFragmentShader.d.ts +0 -1
- package/dist/common/backends/webgl/shaders/textureFragmentShader.js +0 -16
- package/dist/common/backends/webgl/shaders/vertexShader.d.ts +0 -1
- package/dist/common/backends/webgl/shaders/vertexShader.js +0 -19
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es5.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2016.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.webworker.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.decorators.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../src/workers/global.d.ts","../../../../.yarn/cache/@mediapipe-tasks-vision-npm-0.10.20-c9624c4e95-429cee0a76.zip/node_modules/@mediapipe/tasks-vision/vision.d.ts","../../../utils/dist/types.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/asyncQueue.d.ts","../../../utils/dist/cancellablePromise.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/queue.d.ts","../../../utils/dist/scheduler.d.ts","../../../utils/dist/subscribeEvent.d.ts","../../../utils/dist/index.d.ts","../common/constants.d.ts","../common/types/media.d.ts","../common/types/render.d.ts","../common/backends/webgpu/renderer.d.ts","../common/backends/webgl/renderer.d.ts","../common/backends/webgl/types.d.ts","../common/backends/webgl/canvas.d.ts","../common/types/segmentation.d.ts","../common/backends/webgl/webglUtils.d.ts","../common/types/messageEvents.d.ts","../common/types/processor.d.ts","../common/canvasRenderUtils.d.ts","../common/utils.d.ts","../common/typeGuards.d.ts","../../src/workers/mediaWorker.ts","../../../../.yarn/cache/@webgpu-types-npm-0.1.56-054942c27f-54b4317f8c.zip/node_modules/@webgpu/types/dist/index.d.ts","../../@types/webgpu.d.ts","../../../../.yarn/cache/@types-audioworklet-npm-0.0.41-ec4bc90857-2bfd761ab7.zip/node_modules/@types/audioworklet/iterable.d.ts","../../../../.yarn/cache/@types-audioworklet-npm-0.0.41-ec4bc90857-2bfd761ab7.zip/node_modules/@types/audioworklet/index.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","../../../../.yarn/cache/@types-trusted-types-npm-2.0.6-c4c3cd363b-04250c7175.zip/node_modules/@types/trusted-types/lib/index.d.ts","../../../../.yarn/cache/@types-trusted-types-npm-2.0.6-c4c3cd363b-04250c7175.zip/node_modules/@types/trusted-types/index.d.ts"],"fileIdsList":[[122],[124],[126],[120],[110],[107],[110,112],[106],[105],[105,106,107,112,114],[105,106],[105,106,107,112],[79,104,105,106,107,108,109,111,112,113,115,116,117,118],[80],[80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"e12a46ce14b817d4c9e6b2b478956452330bf00c9801b79de46f7a1815b5bd40","impliedFormat":1},{"version":"35b3160b7e8925d6f4754642efbfe5db73ad2a4b3bec7f570f57fc38705d5f0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"50679f745dcd6cb0f200a64b554a3cfd58a462b540d0442df3315b085962bfa3","affectsGlobalScope":true},{"version":"fc8a3cf4a55f7d1ae3f2efdda84bbeaeea605a92e535ac52b99deed6366917d5","impliedFormat":99},"edfe10afb5dfa79dc3681c3ce2fd73cf84187f82cde5ac9acd0ed6045812be81","438ef5faada40623680ebd13ae7125e99cfdc7c5326e8b0d3eb07e5f9321bd42","3c85aeafee03e18cb01a4fd383192931acc3f950df08b248519467ceadd4a0ac","0ffdcafaf8eed4f147e35a0d34fa4a5adf8424d3453a4ae34a459247c121537b","45880d016069eaff83f54047396b0f98e413ec43f50c59131d45c9c92dd44dea","2db065eba6f02c7ea4174dfb607acc5773ab2522e35a8e0f723709e07ec66158","97a19b229516b92ec137b44d54f6454b50e105fc4fff659daba9f754982b9a0d","f9a45114811a10722053e6c5329c41eace3295daa477d12558279df4dcbfba71","3698e6b26f72a770b4bfc15504c04bfb678a355b46ceaa7a42cbdac0893b4d5c","f337140c4001e5beb160f61f96115fa07b1da1de621c2056b83d236f184fb373","65febade0f6327355a157698cdcadc1cbedee872ef77f57211da146125905828","e3f077ed66cc7832adc6c17146cfb730729e8257e78d7bdc7ae34c4276a7de09","1482c77b2d28fa9254f48e76f2ff40f1cfb6bab261fb2d2b98035bb809042939","53bcf7a22d47bd524c0bf6869165d59364e472c94066af1e1b0d80cb1826306f","880e53e2d42225d6b22e2e2b4e51cc8b845094a5045b170eb79df031bfaceaac","1e56ad04bd9214bf4583941a499386488cb76389eee3bd65ec882f5e5613cbc8","6fa26b05e6b041a321db7a70f534a93b4eb616916015dddcdeaaf658a340209d","2c437f035a6f3bfe59a7d9ec427f81e1f2495746db06f841c3e2f4c2813cfaac","1f2e2f423c7ec93f80f4543278488d9de8f4d0d5b1385c691e313f42d17a3fca","f06d0f7bb803f3f00b4d0cd16b2d950fb826cf7efec3f68546f3e67746fb969e","d23e3a3000ecd6477941f5eaaa9ba5d72d29928a347ef9821a02a763997d95c4","3a0d9bd15a78cdc0f4454eb2ac681db16053538de2e1ef65021b12eda3d33323","019ee2a791e6af5796fdd66704fb0729be24f2e53ffa0e5e2d6f1be2bff9ad02","fce09eb9f7968387bb0891ce15015c18a09ad3a7331f2c425a331cbebba89527","d01fa28aed505753aae178a68e23f5880ec9df2cdd4ce94bf4a1a2346d84e160","2ab8a8463c75bcf5aa0adc55f4df837a518bd5ed4e578cc7fa4e79b3111ebd08","a8c26adbb4381a5434218f5b71e4046d90a5ea69fc7a921fe4b04d238796763d","f14aacf7298d78222bc54e74cf591ae55bace8dc731f3972d5636395577a9be2","4832516ab87ef75af5fb417297fbcbd128815f31c024a53aa70e4a678e4e370e","93efea2a6874837fce1a8e5ecdc0d40f11e0f3b292fa894c29de71ff4381e4f0","70f51cbe96df167534a4a4465196e6a4ee03ec99434305a4deee7da55c013d6f","472d1fa8ab8b96703a67016fa7d6ac2bd81f4d283a08dbddda6df6675f0bbcf6","635d97969c350468aa5861b3df0ebcbb8478d1443ca1925624f42523e6977a39","33ea48814c5e73297b9149ef176880e6b8abc0fa598a2e0c16c700f55bbea3b3","10a6710b34f5c43e5b9bd57afb08290c38950ad9fb7c2f6e7b4973564a3e1c9a","169d3074997b35037a6391faece98c86d8087b4ed1479a914545196ebd1410ae","3d91c79111b3664edb18080173f8d80678f7b6945d37d823323197843e6b219a","738c8593510b40879628719d1426b4eed043998f4bd1238a82760aeec3ef1405","d5024000a79d743d4f85f2db53eb6e183b439cdaa63517255a51a53e90d7a0b0",{"version":"65ff26071430be12f48f2ca5a0a1d11289f7f9fdfb7491ab0e6d0f4a7abd658d","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"9d268ebc59c57d8962ce1de970bb9d956c52e7aef38007ed12139f38f512c0e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c42e375483faf69f0d2efc0cdd3602c4fca655ac2a5df3f9b6a39f22cf7c519","affectsGlobalScope":true},{"version":"b38d0bfd2d1c1536d40fc5941fab5c5dd2749fb874fb57c451211ab806a3be8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8c63699627e2dd957f31dddfaf644a96ccf92eec6e9277a430421ae2d7e98b00","affectsGlobalScope":true,"impliedFormat":1},{"version":"da4a8f6629bc630a6b85d0899ca3f610402794a1535d3eb8be826acef5efedfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3c57b01d6648405ea1784c0176e2ad77f77568e7a84d5cb4fc8eefabf00ca22b","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"a4a5a79b9d9b4e4dfa18279d85686fac7eb155b828ddf7a677ceb57f9384f043","affectsGlobalScope":true,"impliedFormat":1}],"root":[78,119,121],"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":[[123,1],[125,2],[127,3],[121,4],[111,5],[109,6],[113,7],[108,6],[116,8],[118,9],[115,10],[107,11],[117,12],[119,13],[83,14],[104,15],[89,14],[102,14],[103,14],[90,14]],"latestChangedDtsFile":"./mediaWorker.d.ts","version":"5.7.3"}
|
|
1
|
+
{"fileNames":["../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es5.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2016.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.webworker.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.decorators.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../src/workers/global.d.ts","../../../../.yarn/cache/@mediapipe-tasks-vision-npm-0.10.20-c9624c4e95-429cee0a76.zip/node_modules/@mediapipe/tasks-vision/vision.d.ts","../../../utils/dist/types.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/asyncQueue.d.ts","../../../utils/dist/cancellablePromise.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/queue.d.ts","../../../utils/dist/scheduler.d.ts","../../../utils/dist/subscribeEvent.d.ts","../../../utils/dist/circularBuffer.d.ts","../../../utils/dist/index.d.ts","../common/constants.d.ts","../common/types/media.d.ts","../common/types/render.d.ts","../common/backends/webgpu/renderer.d.ts","../common/backends/webgl/renderer.d.ts","../common/backends/webgl/types.d.ts","../common/backends/webgl/canvas.d.ts","../common/types/segmentation.d.ts","../common/backends/webgl/webglUtils.d.ts","../common/types/messageEvents.d.ts","../common/types/processor.d.ts","../common/canvasRenderUtils.d.ts","../common/types/utils.d.ts","../common/utils.d.ts","../common/typeGuards.d.ts","../../src/workers/mediaWorker.ts","../../../../.yarn/cache/@webgpu-types-npm-0.1.69-457d66ee91-f6037e9586.zip/node_modules/@webgpu/types/dist/index.d.ts","../../@types/webgpu.d.ts","../../../../.yarn/cache/@types-audioworklet-npm-0.0.41-ec4bc90857-2bfd761ab7.zip/node_modules/@types/audioworklet/iterable.d.ts","../../../../.yarn/cache/@types-audioworklet-npm-0.0.41-ec4bc90857-2bfd761ab7.zip/node_modules/@types/audioworklet/index.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","../../../../.yarn/cache/@types-trusted-types-npm-2.0.6-c4c3cd363b-04250c7175.zip/node_modules/@types/trusted-types/lib/index.d.ts","../../../../.yarn/cache/@types-trusted-types-npm-2.0.6-c4c3cd363b-04250c7175.zip/node_modules/@types/trusted-types/index.d.ts"],"fileIdsList":[[124],[126],[128],[122],[111],[108],[111,113],[107],[106],[106,107,108,113,115],[106,107],[106,107,108,113,118],[79,105,106,107,108,109,110,112,113,114,116,117,119,120],[80],[80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"e12a46ce14b817d4c9e6b2b478956452330bf00c9801b79de46f7a1815b5bd40","impliedFormat":1},{"version":"35b3160b7e8925d6f4754642efbfe5db73ad2a4b3bec7f570f57fc38705d5f0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"50679f745dcd6cb0f200a64b554a3cfd58a462b540d0442df3315b085962bfa3","affectsGlobalScope":true},{"version":"fc8a3cf4a55f7d1ae3f2efdda84bbeaeea605a92e535ac52b99deed6366917d5","impliedFormat":99},"edfe10afb5dfa79dc3681c3ce2fd73cf84187f82cde5ac9acd0ed6045812be81","438ef5faada40623680ebd13ae7125e99cfdc7c5326e8b0d3eb07e5f9321bd42","3c85aeafee03e18cb01a4fd383192931acc3f950df08b248519467ceadd4a0ac","0ffdcafaf8eed4f147e35a0d34fa4a5adf8424d3453a4ae34a459247c121537b","45880d016069eaff83f54047396b0f98e413ec43f50c59131d45c9c92dd44dea","2db065eba6f02c7ea4174dfb607acc5773ab2522e35a8e0f723709e07ec66158","97a19b229516b92ec137b44d54f6454b50e105fc4fff659daba9f754982b9a0d","f9a45114811a10722053e6c5329c41eace3295daa477d12558279df4dcbfba71","3698e6b26f72a770b4bfc15504c04bfb678a355b46ceaa7a42cbdac0893b4d5c","f337140c4001e5beb160f61f96115fa07b1da1de621c2056b83d236f184fb373","f3ef3a7a5483561102e1683bbd2d69b6d5764799d3787d80d2ca568f9110d29e","e3f077ed66cc7832adc6c17146cfb730729e8257e78d7bdc7ae34c4276a7de09","1482c77b2d28fa9254f48e76f2ff40f1cfb6bab261fb2d2b98035bb809042939","53bcf7a22d47bd524c0bf6869165d59364e472c94066af1e1b0d80cb1826306f","880e53e2d42225d6b22e2e2b4e51cc8b845094a5045b170eb79df031bfaceaac","1e56ad04bd9214bf4583941a499386488cb76389eee3bd65ec882f5e5613cbc8","6fa26b05e6b041a321db7a70f534a93b4eb616916015dddcdeaaf658a340209d","2c437f035a6f3bfe59a7d9ec427f81e1f2495746db06f841c3e2f4c2813cfaac","1f2e2f423c7ec93f80f4543278488d9de8f4d0d5b1385c691e313f42d17a3fca","f06d0f7bb803f3f00b4d0cd16b2d950fb826cf7efec3f68546f3e67746fb969e","d23e3a3000ecd6477941f5eaaa9ba5d72d29928a347ef9821a02a763997d95c4","3a0d9bd15a78cdc0f4454eb2ac681db16053538de2e1ef65021b12eda3d33323","019ee2a791e6af5796fdd66704fb0729be24f2e53ffa0e5e2d6f1be2bff9ad02","fce09eb9f7968387bb0891ce15015c18a09ad3a7331f2c425a331cbebba89527","aa25e092b861cfc27df68239047f8254fb21b4651b0017e8d15bab5414ab1988","a324afe60287f64ea6498d4f7c92dcdea77e8b44a8a32a912c074fd591b2c576","e52eec282bbf713ced6a1aedc8aa070e43cc5282c2b99265b09d9123d1f432e3","a8c26adbb4381a5434218f5b71e4046d90a5ea69fc7a921fe4b04d238796763d","1a4f4a3ded7e045d241b181c52affc858cc45c64b3d089bb870a9de9695387a7","4832516ab87ef75af5fb417297fbcbd128815f31c024a53aa70e4a678e4e370e","93efea2a6874837fce1a8e5ecdc0d40f11e0f3b292fa894c29de71ff4381e4f0","70f51cbe96df167534a4a4465196e6a4ee03ec99434305a4deee7da55c013d6f","472d1fa8ab8b96703a67016fa7d6ac2bd81f4d283a08dbddda6df6675f0bbcf6","635d97969c350468aa5861b3df0ebcbb8478d1443ca1925624f42523e6977a39","a87df2f3d228087fee6c8c5d0af8bf72dab09ddbef5623297ae4035f3b124328","10a6710b34f5c43e5b9bd57afb08290c38950ad9fb7c2f6e7b4973564a3e1c9a","169d3074997b35037a6391faece98c86d8087b4ed1479a914545196ebd1410ae","3d91c79111b3664edb18080173f8d80678f7b6945d37d823323197843e6b219a","595b392156c742f2140140a0defc2e32f78a1f17f4bf915045a63b387a6b5ef3","885dc68a7b6e492ff4e3c3fd82ac2f524e22643d252f1438a9868a23d997db17","d5024000a79d743d4f85f2db53eb6e183b439cdaa63517255a51a53e90d7a0b0",{"version":"50272daa012021c6c8f7e4c74803bb8a8e37679d68282f4826421a340cbda3f8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"12f20310f22fa2cad6018638d2bfeaa966db651cea186272506e53d0f64d20dc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c42e375483faf69f0d2efc0cdd3602c4fca655ac2a5df3f9b6a39f22cf7c519","affectsGlobalScope":true},{"version":"b38d0bfd2d1c1536d40fc5941fab5c5dd2749fb874fb57c451211ab806a3be8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8c63699627e2dd957f31dddfaf644a96ccf92eec6e9277a430421ae2d7e98b00","affectsGlobalScope":true,"impliedFormat":1},{"version":"da4a8f6629bc630a6b85d0899ca3f610402794a1535d3eb8be826acef5efedfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3c57b01d6648405ea1784c0176e2ad77f77568e7a84d5cb4fc8eefabf00ca22b","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"a4a5a79b9d9b4e4dfa18279d85686fac7eb155b828ddf7a677ceb57f9384f043","affectsGlobalScope":true,"impliedFormat":1}],"root":[78,121,123],"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":[[125,1],[127,2],[129,3],[123,4],[112,5],[110,6],[114,7],[109,6],[117,8],[120,9],[116,10],[108,11],[119,12],[121,13],[83,14],[105,15],[89,14],[102,14],[103,14],[90,14]],"latestChangedDtsFile":"./mediaWorker.d.ts","version":"5.7.3"}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pexip/media-processor",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "21.0.0",
|
|
4
4
|
"description": "Media processor for video and audio",
|
|
5
|
-
"homepage": "https://
|
|
5
|
+
"homepage": "https://developer.pexip.com",
|
|
6
6
|
"bugs": "https://gitlab.com/pexip/zoo/issues",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -45,10 +45,12 @@
|
|
|
45
45
|
},
|
|
46
46
|
"directories": {
|
|
47
47
|
"lib": "dist",
|
|
48
|
-
"test": "__tests__"
|
|
48
|
+
"test": "__tests__",
|
|
49
|
+
"doc": "api-docs"
|
|
49
50
|
},
|
|
50
51
|
"files": [
|
|
51
|
-
"dist"
|
|
52
|
+
"dist",
|
|
53
|
+
"api-docs"
|
|
52
54
|
],
|
|
53
55
|
"scripts": {
|
|
54
56
|
"build": "yarn build:main && yarn build:worklets && yarn build:workers",
|
|
@@ -61,10 +63,10 @@
|
|
|
61
63
|
"build:workers:sourcemap": "pexip-bundler build --sourcemap --bundler=esbuild -o dist/workers -b src/workers/*.ts",
|
|
62
64
|
"build:worklets:sourcemap": "pexip-bundler build --sourcemap --bundler=esbuild -o dist/worklets -b src/worklets/*.ts",
|
|
63
65
|
"check-format": "prettier --ignore-path=../../.prettierignore --check .",
|
|
64
|
-
"clean": "rm -fr dist",
|
|
66
|
+
"clean": "rm -fr dist api-docs",
|
|
65
67
|
"format": "prettier --ignore-path=../../.prettierignore --write .",
|
|
66
68
|
"lint": "yarn run -T biome lint",
|
|
67
|
-
"prepack": "yarn clean && yarn build:main && yarn build:worklets && yarn build:workers",
|
|
69
|
+
"prepack": "yarn clean && yarn build:main && yarn build:worklets && yarn build:workers && yarn docs",
|
|
68
70
|
"test": "jest",
|
|
69
71
|
"tsc": "tsc --noEmit",
|
|
70
72
|
"typecheck": "yarn tsc --noEmit -p .",
|
|
@@ -75,25 +77,29 @@
|
|
|
75
77
|
"update-selfie-landscape-model": "curl -OL --output-dir ../media-assets/@mediapipe/models/ --create-dirs https://storage.googleapis.com/mediapipe-models/image_segmenter/selfie_segmenter_landscape/float16/latest/selfie_segmenter_landscape.tflite",
|
|
76
78
|
"update-selfie-models": "yarn update-selfie-square-model && yarn update-selfie-landscape-model",
|
|
77
79
|
"update-selfie-square-model": "curl -OL --output-dir ../media-assets/@mediapipe/models/ --create-dirs https://storage.googleapis.com/mediapipe-models/image_segmenter/selfie_segmenter/float16/latest/selfie_segmenter.tflite",
|
|
78
|
-
"update-tasks-vision-assets": "unzip -jo ../../.yarn/cache/@mediapipe-tasks-vision-npm-* \"*/wasm/*\" \"*.json\" -d ../media-assets/@mediapipe/tasks-vision/wasm/"
|
|
80
|
+
"update-tasks-vision-assets": "unzip -jo ../../.yarn/cache/@mediapipe-tasks-vision-npm-* \"*/wasm/*\" \"*.json\" -d ../media-assets/@mediapipe/tasks-vision/wasm/",
|
|
81
|
+
"docs": "typedoc"
|
|
79
82
|
},
|
|
80
83
|
"dependencies": {
|
|
81
84
|
"@mediapipe/tasks-vision": "^0.10.20",
|
|
82
85
|
"@pexip/denoise": "16.4.0",
|
|
83
|
-
"@pexip/utils": "17.
|
|
86
|
+
"@pexip/utils": "17.2.0",
|
|
87
|
+
"webgpu-utils": "^2.0.3"
|
|
84
88
|
},
|
|
85
89
|
"devDependencies": {
|
|
86
90
|
"@jest/globals": "^30.2.0",
|
|
87
|
-
"@pexip/bundler": "18.
|
|
91
|
+
"@pexip/bundler": "18.2.0",
|
|
88
92
|
"@swc/core": "^1.10.12",
|
|
89
93
|
"@swc/jest": "^0.2.39",
|
|
90
94
|
"@types/audioworklet": "^0.0.41",
|
|
91
95
|
"@types/dom-webcodecs": "^0.1.4",
|
|
92
96
|
"@types/trusted-types": "^2.0.2",
|
|
93
|
-
"@webgpu/types": "^0.1.
|
|
97
|
+
"@webgpu/types": "^0.1.69",
|
|
94
98
|
"jest": "^29.5.12",
|
|
95
99
|
"jest-junit": "^16.0.0",
|
|
96
100
|
"prettier": "^3.2.5",
|
|
101
|
+
"typedoc": "^0.28.15",
|
|
102
|
+
"typedoc-plugin-markdown": "^4.9.0",
|
|
97
103
|
"typescript": "~5.7.3"
|
|
98
104
|
},
|
|
99
105
|
"publishConfig": {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const blendFragmentShaderSource = "#version 300 es\nprecision mediump float;\n\n// our textures\nuniform sampler2D u_mask;\nuniform sampler2D u_frame_foreground;\nuniform sampler2D u_frame_background;\n\nin vec2 v_texCoord;\n\n// we need to declare an output for the fragment shader\nout vec4 outColor;\n\nvoid main() {\n vec4 background = texture(u_frame_background, v_texCoord);\n vec4 foreground = texture(u_frame_foreground, v_texCoord);\n float filteredMask = texture(u_mask, v_texCoord).r;\n\n outColor = mix(background, foreground, filteredMask);\n}\n";
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export const blendFragmentShaderSource = `#version 300 es
|
|
2
|
-
precision mediump float;
|
|
3
|
-
|
|
4
|
-
// our textures
|
|
5
|
-
uniform sampler2D u_mask;
|
|
6
|
-
uniform sampler2D u_frame_foreground;
|
|
7
|
-
uniform sampler2D u_frame_background;
|
|
8
|
-
|
|
9
|
-
in vec2 v_texCoord;
|
|
10
|
-
|
|
11
|
-
// we need to declare an output for the fragment shader
|
|
12
|
-
out vec4 outColor;
|
|
13
|
-
|
|
14
|
-
void main() {
|
|
15
|
-
vec4 background = texture(u_frame_background, v_texCoord);
|
|
16
|
-
vec4 foreground = texture(u_frame_foreground, v_texCoord);
|
|
17
|
-
float filteredMask = texture(u_mask, v_texCoord).r;
|
|
18
|
-
|
|
19
|
-
outColor = mix(background, foreground, filteredMask);
|
|
20
|
-
}
|
|
21
|
-
`;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const dualFilterBlurFragmentShaderSource = "#version 300 es\nprecision mediump float;\n\n// our textures\nuniform sampler2D u_frame;\n\n// control flags\nuniform int u_downsampling;\n\nin vec2 v_texCoord;\n\n// we need to declare an output for the fragment shader\nout vec4 outColor;\n\nvec4 Downsample(sampler2D image, vec2 uv, vec2 halfpixel) {\n vec4 sum = texture(image, uv) * 4.0;\n sum += texture(image, uv - halfpixel.xy);\n sum += texture(image, uv + halfpixel.xy);\n sum += texture(image, uv + vec2(halfpixel.x, -halfpixel.y));\n sum += texture(image, uv - vec2(halfpixel.x, -halfpixel.y));\n return sum / 8.0;\n}\n\nvec4 Upsample(sampler2D image, vec2 uv, vec2 halfpixel) {\n vec4 sum = texture(image, uv + vec2(-halfpixel.x * 2.0, 0.0));\n sum += texture(image, uv + vec2(-halfpixel.x, halfpixel.y)) * 2.0;\n sum += texture(image, uv + vec2(0.0, halfpixel.y * 2.0));\n sum += texture(image, uv + vec2(halfpixel.x, halfpixel.y)) * 2.0;\n sum += texture(image, uv + vec2(halfpixel.x * 2.0, 0.0));\n sum += texture(image, uv + vec2(halfpixel.x, -halfpixel.y)) * 2.0;\n sum += texture(image, uv + vec2(0.0, -halfpixel.y * 2.0));\n sum += texture(image, uv + vec2(-halfpixel.x, -halfpixel.y)) * 2.0;\n return sum / 12.0;\n}\n\nvoid main() {\n vec2 halfpixel = 0.5 / vec2(textureSize(u_frame, 0));\n\n if (u_downsampling == 1) {\n outColor = Downsample(u_frame, v_texCoord, halfpixel);\n return;\n }\n outColor = Upsample(u_frame, v_texCoord, halfpixel);\n}\n";
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
export const dualFilterBlurFragmentShaderSource = `#version 300 es
|
|
2
|
-
precision mediump float;
|
|
3
|
-
|
|
4
|
-
// our textures
|
|
5
|
-
uniform sampler2D u_frame;
|
|
6
|
-
|
|
7
|
-
// control flags
|
|
8
|
-
uniform int u_downsampling;
|
|
9
|
-
|
|
10
|
-
in vec2 v_texCoord;
|
|
11
|
-
|
|
12
|
-
// we need to declare an output for the fragment shader
|
|
13
|
-
out vec4 outColor;
|
|
14
|
-
|
|
15
|
-
vec4 Downsample(sampler2D image, vec2 uv, vec2 halfpixel) {
|
|
16
|
-
vec4 sum = texture(image, uv) * 4.0;
|
|
17
|
-
sum += texture(image, uv - halfpixel.xy);
|
|
18
|
-
sum += texture(image, uv + halfpixel.xy);
|
|
19
|
-
sum += texture(image, uv + vec2(halfpixel.x, -halfpixel.y));
|
|
20
|
-
sum += texture(image, uv - vec2(halfpixel.x, -halfpixel.y));
|
|
21
|
-
return sum / 8.0;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
vec4 Upsample(sampler2D image, vec2 uv, vec2 halfpixel) {
|
|
25
|
-
vec4 sum = texture(image, uv + vec2(-halfpixel.x * 2.0, 0.0));
|
|
26
|
-
sum += texture(image, uv + vec2(-halfpixel.x, halfpixel.y)) * 2.0;
|
|
27
|
-
sum += texture(image, uv + vec2(0.0, halfpixel.y * 2.0));
|
|
28
|
-
sum += texture(image, uv + vec2(halfpixel.x, halfpixel.y)) * 2.0;
|
|
29
|
-
sum += texture(image, uv + vec2(halfpixel.x * 2.0, 0.0));
|
|
30
|
-
sum += texture(image, uv + vec2(halfpixel.x, -halfpixel.y)) * 2.0;
|
|
31
|
-
sum += texture(image, uv + vec2(0.0, -halfpixel.y * 2.0));
|
|
32
|
-
sum += texture(image, uv + vec2(-halfpixel.x, -halfpixel.y)) * 2.0;
|
|
33
|
-
return sum / 12.0;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
void main() {
|
|
37
|
-
vec2 halfpixel = 0.5 / vec2(textureSize(u_frame, 0));
|
|
38
|
-
|
|
39
|
-
if (u_downsampling == 1) {
|
|
40
|
-
outColor = Downsample(u_frame, v_texCoord, halfpixel);
|
|
41
|
-
return;
|
|
42
|
-
}
|
|
43
|
-
outColor = Upsample(u_frame, v_texCoord, halfpixel);
|
|
44
|
-
}
|
|
45
|
-
`;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const smoothingMaskFragmentShaderSource = "#version 300 es\nprecision mediump float;\n\n// our textures\nuniform sampler2D u_mask;\nuniform sampler2D u_mask_prev;\n\n// control flags\nuniform float u_mask_combine_ratio;\nuniform float u_foreground_threshold;\n\nin vec2 v_texCoord;\n\n// we need to declare an output for the fragment shader\nout vec4 outColor;\n\n// Source: https://github.com/google/mediapipe/blob/8750c3dca1bc00fbe47acf501b7c9c61f3f3bd3f/mediapipe/calculators/image/segmentation_smoothing_calculator.cc#L377\nfloat SmoothingMask(sampler2D prevMask, sampler2D currMask, vec2 uv, float ratio) {\n float prevMaskValue = texture(prevMask, uv).r;\n float newMaskValue = texture(currMask, uv).r;\n\n /*\n * Assume p := newMaskValue\n * H(p) := 1 + (p * log(p) + (1-p) * log(1-p)) / log(2)\n * uncertainty alpha(p) =\n * Clamp(1 - (1 - H(p)) * (1 - H(p)), 0, 1) [squaring the\n * uncertainty]\n *\n * The following polynomial approximates uncertainty alpha as a\n * function of (p + 0.5):\n */\n const float c1 = 5.68842;\n const float c2 = -0.748699;\n const float c3 = -57.8051;\n const float c4 = 291.309;\n const float c5 = -624.717;\n float t = newMaskValue - 0.5;\n float x = t * t;\n\n float uncertainty =\n 1.0 - min(1.0, x * (c1 + x * (c2 + x * (c3 + x * (c4 + x * c5)))));\n\n float outputValue = newMaskValue + (prevMaskValue - newMaskValue) *\n (uncertainty * ratio);\n return outputValue;\n}\n\nvoid main() {\n float maskAlpha = SmoothingMask(u_mask_prev, u_mask, v_texCoord, u_mask_combine_ratio);\n float backgroundMask = maskAlpha;\n if (backgroundMask < u_foreground_threshold) {\n backgroundMask = 0.0;\n }\n\n outColor = vec4(backgroundMask, backgroundMask, backgroundMask, backgroundMask);\n}\n";
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
export const smoothingMaskFragmentShaderSource = `#version 300 es
|
|
2
|
-
precision mediump float;
|
|
3
|
-
|
|
4
|
-
// our textures
|
|
5
|
-
uniform sampler2D u_mask;
|
|
6
|
-
uniform sampler2D u_mask_prev;
|
|
7
|
-
|
|
8
|
-
// control flags
|
|
9
|
-
uniform float u_mask_combine_ratio;
|
|
10
|
-
uniform float u_foreground_threshold;
|
|
11
|
-
|
|
12
|
-
in vec2 v_texCoord;
|
|
13
|
-
|
|
14
|
-
// we need to declare an output for the fragment shader
|
|
15
|
-
out vec4 outColor;
|
|
16
|
-
|
|
17
|
-
// Source: https://github.com/google/mediapipe/blob/8750c3dca1bc00fbe47acf501b7c9c61f3f3bd3f/mediapipe/calculators/image/segmentation_smoothing_calculator.cc#L377
|
|
18
|
-
float SmoothingMask(sampler2D prevMask, sampler2D currMask, vec2 uv, float ratio) {
|
|
19
|
-
float prevMaskValue = texture(prevMask, uv).r;
|
|
20
|
-
float newMaskValue = texture(currMask, uv).r;
|
|
21
|
-
|
|
22
|
-
/*
|
|
23
|
-
* Assume p := newMaskValue
|
|
24
|
-
* H(p) := 1 + (p * log(p) + (1-p) * log(1-p)) / log(2)
|
|
25
|
-
* uncertainty alpha(p) =
|
|
26
|
-
* Clamp(1 - (1 - H(p)) * (1 - H(p)), 0, 1) [squaring the
|
|
27
|
-
* uncertainty]
|
|
28
|
-
*
|
|
29
|
-
* The following polynomial approximates uncertainty alpha as a
|
|
30
|
-
* function of (p + 0.5):
|
|
31
|
-
*/
|
|
32
|
-
const float c1 = 5.68842;
|
|
33
|
-
const float c2 = -0.748699;
|
|
34
|
-
const float c3 = -57.8051;
|
|
35
|
-
const float c4 = 291.309;
|
|
36
|
-
const float c5 = -624.717;
|
|
37
|
-
float t = newMaskValue - 0.5;
|
|
38
|
-
float x = t * t;
|
|
39
|
-
|
|
40
|
-
float uncertainty =
|
|
41
|
-
1.0 - min(1.0, x * (c1 + x * (c2 + x * (c3 + x * (c4 + x * c5)))));
|
|
42
|
-
|
|
43
|
-
float outputValue = newMaskValue + (prevMaskValue - newMaskValue) *
|
|
44
|
-
(uncertainty * ratio);
|
|
45
|
-
return outputValue;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
void main() {
|
|
49
|
-
float maskAlpha = SmoothingMask(u_mask_prev, u_mask, v_texCoord, u_mask_combine_ratio);
|
|
50
|
-
float backgroundMask = maskAlpha;
|
|
51
|
-
if (backgroundMask < u_foreground_threshold) {
|
|
52
|
-
backgroundMask = 0.0;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
outColor = vec4(backgroundMask, backgroundMask, backgroundMask, backgroundMask);
|
|
56
|
-
}
|
|
57
|
-
`;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const textureFragmentShaderSource = "#version 300 es\nprecision mediump float;\n\n// Passed in from the vertex shader.\nin vec2 v_texCoord;\n\n// The texture.\nuniform sampler2D u_texture;\n\n// we need to declare an output for the fragment shader\nout vec4 outColor;\n\nvoid main() {\n outColor = texture(u_texture, v_texCoord);\n}\n";
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export const textureFragmentShaderSource = `#version 300 es
|
|
2
|
-
precision mediump float;
|
|
3
|
-
|
|
4
|
-
// Passed in from the vertex shader.
|
|
5
|
-
in vec2 v_texCoord;
|
|
6
|
-
|
|
7
|
-
// The texture.
|
|
8
|
-
uniform sampler2D u_texture;
|
|
9
|
-
|
|
10
|
-
// we need to declare an output for the fragment shader
|
|
11
|
-
out vec4 outColor;
|
|
12
|
-
|
|
13
|
-
void main() {
|
|
14
|
-
outColor = texture(u_texture, v_texCoord);
|
|
15
|
-
}
|
|
16
|
-
`;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const vertexShaderSource = "#version 300 es\n// an attribute is an input (in) to a vertex shader.\n// It will receive data from a buffer\nin vec2 a_position;\nin vec2 a_texCoord;\n\n// Used to pass in the resolution of the canvas\nuniform mat3 u_matrix;\n\n// Used to pass the texture coordinates to the fragment shader\nout vec2 v_texCoord;\n\nvoid main() {\n gl_Position = vec4((u_matrix * vec3(a_position, 1)).xy, 0, 1);\n\n // pass the texCoord to the fragment shader\n v_texCoord = a_texCoord;\n}\n";
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export const vertexShaderSource = `#version 300 es
|
|
2
|
-
// an attribute is an input (in) to a vertex shader.
|
|
3
|
-
// It will receive data from a buffer
|
|
4
|
-
in vec2 a_position;
|
|
5
|
-
in vec2 a_texCoord;
|
|
6
|
-
|
|
7
|
-
// Used to pass in the resolution of the canvas
|
|
8
|
-
uniform mat3 u_matrix;
|
|
9
|
-
|
|
10
|
-
// Used to pass the texture coordinates to the fragment shader
|
|
11
|
-
out vec2 v_texCoord;
|
|
12
|
-
|
|
13
|
-
void main() {
|
|
14
|
-
gl_Position = vec4((u_matrix * vec3(a_position, 1)).xy, 0, 1);
|
|
15
|
-
|
|
16
|
-
// pass the texCoord to the fragment shader
|
|
17
|
-
v_texCoord = a_texCoord;
|
|
18
|
-
}
|
|
19
|
-
`;
|