@blockcast/mmt-render 0.1.0-main.0c300647d0a5
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/README.md +207 -0
- package/dist/.build-stamp +0 -0
- package/dist/audio/audio-buffer-plan.d.ts +27 -0
- package/dist/audio/audio-buffer-plan.d.ts.map +1 -0
- package/dist/audio/audio-render-pipeline.d.ts +83 -0
- package/dist/audio/audio-render-pipeline.d.ts.map +1 -0
- package/dist/audio/audio-render-pipeline.js +372 -0
- package/dist/audio/audio-render-pipeline.js.map +7 -0
- package/dist/audio/audio-ring-buffer.d.ts +55 -0
- package/dist/audio/audio-ring-buffer.d.ts.map +1 -0
- package/dist/audio/audio-ring-buffer.js +255 -0
- package/dist/audio/audio-ring-buffer.js.map +7 -0
- package/dist/audio/index.d.ts +9 -0
- package/dist/audio/index.d.ts.map +1 -0
- package/dist/audio/index.js +640 -0
- package/dist/audio/index.js.map +7 -0
- package/dist/audio/render-messages.d.ts +94 -0
- package/dist/audio/render-messages.d.ts.map +1 -0
- package/dist/audio/render-messages.js +1 -0
- package/dist/audio/render-messages.js.map +7 -0
- package/dist/audio/render-worklet.d.ts +13 -0
- package/dist/audio/render-worklet.d.ts.map +1 -0
- package/dist/audio/worklet-url.d.ts +25 -0
- package/dist/audio/worklet-url.d.ts.map +1 -0
- package/dist/audio/worklet-url.js +11 -0
- package/dist/audio/worklet-url.js.map +7 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +7 -0
- package/dist/pacing/au-duration.d.ts +18 -0
- package/dist/pacing/au-duration.d.ts.map +1 -0
- package/dist/pacing/au-duration.js +23 -0
- package/dist/pacing/au-duration.js.map +7 -0
- package/dist/pacing/frame-pacer.d.ts +71 -0
- package/dist/pacing/frame-pacer.d.ts.map +1 -0
- package/dist/pacing/frame-pacer.js +89 -0
- package/dist/pacing/frame-pacer.js.map +7 -0
- package/dist/pacing/index.d.ts +6 -0
- package/dist/pacing/index.d.ts.map +1 -0
- package/dist/pacing/index.js +166 -0
- package/dist/pacing/index.js.map +7 -0
- package/dist/pacing/interleave-timing.d.ts +64 -0
- package/dist/pacing/interleave-timing.d.ts.map +1 -0
- package/dist/pacing/interleave-timing.js +58 -0
- package/dist/pacing/interleave-timing.js.map +7 -0
- package/dist/video/index.d.ts +4 -0
- package/dist/video/index.d.ts.map +1 -0
- package/dist/video/index.js +247 -0
- package/dist/video/index.js.map +7 -0
- package/dist/video/keyframe-gate.d.ts +21 -0
- package/dist/video/keyframe-gate.d.ts.map +1 -0
- package/dist/video/keyframe-gate.js +39 -0
- package/dist/video/keyframe-gate.js.map +7 -0
- package/dist/video/video-render-pipeline.d.ts +60 -0
- package/dist/video/video-render-pipeline.d.ts.map +1 -0
- package/dist/video/video-render-pipeline.js +247 -0
- package/dist/video/video-render-pipeline.js.map +7 -0
- package/dist/worklet/render-worklet.js +403 -0
- package/dist/worklet/render-worklet.js.map +7 -0
- package/package.json +101 -0
- package/src/audio/audio-buffer-plan.ts +62 -0
- package/src/audio/audio-render-pipeline.ts +313 -0
- package/src/audio/audio-ring-buffer.ts +281 -0
- package/src/audio/index.ts +14 -0
- package/src/audio/render-messages.ts +110 -0
- package/src/audio/render-worklet.ts +161 -0
- package/src/audio/worklet-url.ts +30 -0
- package/src/index.ts +13 -0
- package/src/pacing/au-duration.ts +34 -0
- package/src/pacing/frame-pacer.ts +129 -0
- package/src/pacing/index.ts +5 -0
- package/src/pacing/interleave-timing.ts +95 -0
- package/src/video/index.ts +7 -0
- package/src/video/keyframe-gate.ts +35 -0
- package/src/video/video-render-pipeline.ts +179 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"keyframe-gate.d.ts","sourceRoot":"","sources":["../../src/video/keyframe-gate.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,qBAAa,YAAY;;IAGvB,IAAI,MAAM,IAAI,OAAO,CAEpB;IAED;;;OAGG;IACH,KAAK,CAAC,QAAQ,EAAE,OAAO,GAAG,OAAO;IASjC,mDAAmD;IACnD,KAAK,IAAI,IAAI;CAGd"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
var __typeError = (msg) => {
|
|
2
|
+
throw TypeError(msg);
|
|
3
|
+
};
|
|
4
|
+
var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
|
|
5
|
+
var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
6
|
+
var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
7
|
+
var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
|
|
8
|
+
|
|
9
|
+
// src/video/keyframe-gate.ts
|
|
10
|
+
var _open;
|
|
11
|
+
var KeyframeGate = class {
|
|
12
|
+
constructor() {
|
|
13
|
+
__privateAdd(this, _open, false);
|
|
14
|
+
}
|
|
15
|
+
get isOpen() {
|
|
16
|
+
return __privateGet(this, _open);
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Decide whether to pass a frame through.
|
|
20
|
+
* Opens permanently once the first keyframe is seen.
|
|
21
|
+
*/
|
|
22
|
+
allow(keyframe) {
|
|
23
|
+
if (__privateGet(this, _open)) return true;
|
|
24
|
+
if (keyframe) {
|
|
25
|
+
__privateSet(this, _open, true);
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
return false;
|
|
29
|
+
}
|
|
30
|
+
/** Re-close the gate. Next keyframe reopens it. */
|
|
31
|
+
reset() {
|
|
32
|
+
__privateSet(this, _open, false);
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
_open = new WeakMap();
|
|
36
|
+
export {
|
|
37
|
+
KeyframeGate
|
|
38
|
+
};
|
|
39
|
+
//# sourceMappingURL=keyframe-gate.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/video/keyframe-gate.ts"],
|
|
4
|
+
"sourcesContent": ["/**\n * KeyframeGate \u2014 drops delta frames until a keyframe arrives.\n *\n * Required when subscribing mid-stream: the relay may deliver P/B frames\n * from the middle of a GOP before the first IDR. Feeding those into\n * VideoDecoder before an init yields \"key frame required\" errors.\n *\n * Call reset() to re-arm the gate after a decoder error (requestKeyframe).\n */\n\nexport class KeyframeGate {\n #open = false\n\n get isOpen(): boolean {\n return this.#open\n }\n\n /**\n * Decide whether to pass a frame through.\n * Opens permanently once the first keyframe is seen.\n */\n allow(keyframe: boolean): boolean {\n if (this.#open) return true\n if (keyframe) {\n this.#open = true\n return true\n }\n return false\n }\n\n /** Re-close the gate. Next keyframe reopens it. */\n reset(): void {\n this.#open = false\n }\n}\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;AAAA;AAUO,IAAM,eAAN,MAAmB;AAAA,EAAnB;AACL,8BAAQ;AAAA;AAAA,EAER,IAAI,SAAkB;AACpB,WAAO,mBAAK;AAAA,EACd;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,MAAM,UAA4B;AAChC,QAAI,mBAAK,OAAO,QAAO;AACvB,QAAI,UAAU;AACZ,yBAAK,OAAQ;AACb,aAAO;AAAA,IACT;AACA,WAAO;AAAA,EACT;AAAA;AAAA,EAGA,QAAc;AACZ,uBAAK,OAAQ;AAAA,EACf;AACF;AAvBE;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VideoRenderPipeline — end-to-end video render for MoQ/MMT players.
|
|
3
|
+
*
|
|
4
|
+
* Pipeline: MoQ object → MmtpDecodePipeline → keyframe gate → WebCodecs
|
|
5
|
+
* VideoDecoder → consumer's onFrame(VideoFrame).
|
|
6
|
+
*
|
|
7
|
+
* Replaces:
|
|
8
|
+
* - moqtail's `decodeQueueSize > 10 drop-deltas` hack in webcodecs-backend.ts
|
|
9
|
+
* - hang-mmt-fec's "reorderWindow = 0 // TODO" in video/decoder.ts
|
|
10
|
+
*
|
|
11
|
+
* Pacing uses FrameCountPacer (anchor on first decoded picture, frame count ×
|
|
12
|
+
* 1/fps) with threshold = mapper.pacingThresholdMs. Reorder window comes from
|
|
13
|
+
* mapper.d (groups per FEC block), which is the natural bound for out-of-order
|
|
14
|
+
* delivery within a block after converting catalog groups to frame count.
|
|
15
|
+
*/
|
|
16
|
+
import { type PipelineFecClient } from '@blockcast/mmt-container/mmtp-decode-pipeline';
|
|
17
|
+
import type { MfuReassemblyPolicy } from '@blockcast/mmt-container/mfu-reassembly-policy';
|
|
18
|
+
import type { FecBlockMapper } from '@blockcast/mmt-fec';
|
|
19
|
+
export interface VideoFrameMeta {
|
|
20
|
+
timestamp: number;
|
|
21
|
+
keyframe: boolean;
|
|
22
|
+
packetId: number;
|
|
23
|
+
}
|
|
24
|
+
export type VideoFrameCallback = (frame: VideoFrame, meta: VideoFrameMeta) => void;
|
|
25
|
+
export declare function deriveVideoReorderWindow(framerate: number, mapper: Pick<FecBlockMapper, 'd' | 'gopDurationMs'>): number;
|
|
26
|
+
export interface VideoRenderPipelineOpts {
|
|
27
|
+
codec: string;
|
|
28
|
+
/** MMTP packet_id for this video track — from catalog. */
|
|
29
|
+
packetId?: number;
|
|
30
|
+
description?: Uint8Array;
|
|
31
|
+
width: number;
|
|
32
|
+
height: number;
|
|
33
|
+
/** Frames per second (used for pacing + default reorder window). */
|
|
34
|
+
framerate: number;
|
|
35
|
+
mapper: FecBlockMapper;
|
|
36
|
+
fecClient?: PipelineFecClient;
|
|
37
|
+
/** Reliable MoQ is clock-free; datagram deadlines come from catalog/in-band timing. */
|
|
38
|
+
reassemblyPolicy: MfuReassemblyPolicy;
|
|
39
|
+
/** Receives VideoFrames ready to render. */
|
|
40
|
+
onFrame: VideoFrameCallback;
|
|
41
|
+
/** Called on decoder errors. */
|
|
42
|
+
onError?: (err: unknown) => void;
|
|
43
|
+
/** Reorder window in frames. Defaults to one catalog-derived FEC block. */
|
|
44
|
+
reorderWindow?: number;
|
|
45
|
+
/** Warmup frames before pacing engages. Default 3 (absorbs decoder init jitter). */
|
|
46
|
+
warmupFrames?: number;
|
|
47
|
+
/** Optional decoder hardware acceleration hint. */
|
|
48
|
+
hardwareAcceleration?: HardwareAcceleration;
|
|
49
|
+
}
|
|
50
|
+
export declare class VideoRenderPipeline {
|
|
51
|
+
#private;
|
|
52
|
+
constructor(opts: VideoRenderPipelineOpts);
|
|
53
|
+
feedMoqObject(packet: Uint8Array): void;
|
|
54
|
+
paceSleepMs(): number;
|
|
55
|
+
get pacerSnapshot(): import("../pacing/frame-pacer.js").PacerSnapshot;
|
|
56
|
+
/** Request a fresh keyframe after a decoder error (or source switch). */
|
|
57
|
+
reset(): void;
|
|
58
|
+
close(): void;
|
|
59
|
+
}
|
|
60
|
+
//# sourceMappingURL=video-render-pipeline.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"video-render-pipeline.d.ts","sourceRoot":"","sources":["../../src/video/video-render-pipeline.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAsB,KAAK,iBAAiB,EAAE,MAAM,+CAA+C,CAAA;AAC1G,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,gDAAgD,CAAA;AACzF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAA;AAIxD,MAAM,WAAW,cAAc;IAC7B,SAAS,EAAE,MAAM,CAAA;IACjB,QAAQ,EAAE,OAAO,CAAA;IACjB,QAAQ,EAAE,MAAM,CAAA;CACjB;AAED,MAAM,MAAM,kBAAkB,GAAG,CAAC,KAAK,EAAE,UAAU,EAAE,IAAI,EAAE,cAAc,KAAK,IAAI,CAAA;AAElF,wBAAgB,wBAAwB,CACtC,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,IAAI,CAAC,cAAc,EAAE,GAAG,GAAG,eAAe,CAAC,GAClD,MAAM,CAGR;AAED,MAAM,WAAW,uBAAuB;IACtC,KAAK,EAAE,MAAM,CAAA;IACb,0DAA0D;IAC1D,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,WAAW,CAAC,EAAE,UAAU,CAAA;IACxB,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;IACd,oEAAoE;IACpE,SAAS,EAAE,MAAM,CAAA;IACjB,MAAM,EAAE,cAAc,CAAA;IACtB,SAAS,CAAC,EAAE,iBAAiB,CAAA;IAC7B,uFAAuF;IACvF,gBAAgB,EAAE,mBAAmB,CAAA;IACrC,4CAA4C;IAC5C,OAAO,EAAE,kBAAkB,CAAA;IAC3B,gCAAgC;IAChC,OAAO,CAAC,EAAE,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI,CAAA;IAChC,2EAA2E;IAC3E,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,oFAAoF;IACpF,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,mDAAmD;IACnD,oBAAoB,CAAC,EAAE,oBAAoB,CAAA;CAC5C;AAED,qBAAa,mBAAmB;;gBASlB,IAAI,EAAE,uBAAuB;IAWzC,aAAa,CAAC,MAAM,EAAE,UAAU,GAAG,IAAI;IAIvC,WAAW,IAAI,MAAM;IAIrB,IAAI,aAAa,qDAEhB;IAED,yEAAyE;IACzE,KAAK,IAAI,IAAI;IAQb,KAAK,IAAI,IAAI;CA0Ed"}
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
var __typeError = (msg) => {
|
|
2
|
+
throw TypeError(msg);
|
|
3
|
+
};
|
|
4
|
+
var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
|
|
5
|
+
var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
6
|
+
var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
7
|
+
var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
|
|
8
|
+
var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "access private method"), method);
|
|
9
|
+
var __privateWrapper = (obj, member, setter, getter) => ({
|
|
10
|
+
set _(value) {
|
|
11
|
+
__privateSet(obj, member, value, setter);
|
|
12
|
+
},
|
|
13
|
+
get _() {
|
|
14
|
+
return __privateGet(obj, member, getter);
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
// src/video/video-render-pipeline.ts
|
|
19
|
+
import { MmtpDecodePipeline } from "@blockcast/mmt-container/mmtp-decode-pipeline";
|
|
20
|
+
|
|
21
|
+
// src/pacing/frame-pacer.ts
|
|
22
|
+
var _frameCount, _anchorWallMs, _anchored;
|
|
23
|
+
var FrameCountPacer = class {
|
|
24
|
+
constructor(opts) {
|
|
25
|
+
__privateAdd(this, _frameCount, 0);
|
|
26
|
+
__privateAdd(this, _anchorWallMs, 0);
|
|
27
|
+
__privateAdd(this, _anchored, false);
|
|
28
|
+
if (!(opts.frameDurationMs > 0)) {
|
|
29
|
+
throw new Error("frameDurationMs must be > 0");
|
|
30
|
+
}
|
|
31
|
+
this.frameDurationMs = opts.frameDurationMs;
|
|
32
|
+
this.thresholdMs = opts.mapper.pacingThresholdMs;
|
|
33
|
+
this.warmupFrames = Math.max(0, opts.warmupFrames ?? 0);
|
|
34
|
+
}
|
|
35
|
+
/** Call on every emitted decoded frame (AU or picture). Anchors on first call. */
|
|
36
|
+
notifyFrame() {
|
|
37
|
+
if (!__privateGet(this, _anchored)) {
|
|
38
|
+
__privateSet(this, _anchorWallMs, now());
|
|
39
|
+
__privateSet(this, _anchored, true);
|
|
40
|
+
}
|
|
41
|
+
__privateWrapper(this, _frameCount)._++;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Compute sleep ms before reading the next MoQ object.
|
|
45
|
+
* Returns 0 when:
|
|
46
|
+
* - pacing is disabled (NullBlockMapper → threshold=0)
|
|
47
|
+
* - the anchor is not yet set
|
|
48
|
+
* - still in warmup
|
|
49
|
+
* - decoder is not ahead of wall clock by more than threshold
|
|
50
|
+
* Otherwise returns aheadMs - thresholdMs/2 (leaves half the threshold as headroom).
|
|
51
|
+
*/
|
|
52
|
+
computeSleepMs() {
|
|
53
|
+
if (this.thresholdMs <= 0) return 0;
|
|
54
|
+
if (!__privateGet(this, _anchored)) return 0;
|
|
55
|
+
if (__privateGet(this, _frameCount) <= this.warmupFrames) return 0;
|
|
56
|
+
const mediaMs = __privateGet(this, _frameCount) * this.frameDurationMs;
|
|
57
|
+
const wallMs = now() - __privateGet(this, _anchorWallMs);
|
|
58
|
+
const aheadMs = mediaMs - wallMs;
|
|
59
|
+
if (aheadMs <= this.thresholdMs) return 0;
|
|
60
|
+
return aheadMs - this.thresholdMs / 2;
|
|
61
|
+
}
|
|
62
|
+
/** Reset anchor + counter. Call on source switch (MoQ ↔ multicast). */
|
|
63
|
+
reset() {
|
|
64
|
+
__privateSet(this, _frameCount, 0);
|
|
65
|
+
__privateSet(this, _anchorWallMs, 0);
|
|
66
|
+
__privateSet(this, _anchored, false);
|
|
67
|
+
}
|
|
68
|
+
get snapshot() {
|
|
69
|
+
const mediaMs = __privateGet(this, _frameCount) * this.frameDurationMs;
|
|
70
|
+
const wallMs = __privateGet(this, _anchored) ? now() - __privateGet(this, _anchorWallMs) : 0;
|
|
71
|
+
return {
|
|
72
|
+
frameCount: __privateGet(this, _frameCount),
|
|
73
|
+
mediaMs,
|
|
74
|
+
wallMs,
|
|
75
|
+
aheadMs: mediaMs - wallMs,
|
|
76
|
+
thresholdMs: this.thresholdMs,
|
|
77
|
+
anchored: __privateGet(this, _anchored)
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
};
|
|
81
|
+
_frameCount = new WeakMap();
|
|
82
|
+
_anchorWallMs = new WeakMap();
|
|
83
|
+
_anchored = new WeakMap();
|
|
84
|
+
function now() {
|
|
85
|
+
if (typeof performance !== "undefined" && typeof performance.now === "function") {
|
|
86
|
+
return performance.now();
|
|
87
|
+
}
|
|
88
|
+
return Date.now();
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// src/video/keyframe-gate.ts
|
|
92
|
+
var _open;
|
|
93
|
+
var KeyframeGate = class {
|
|
94
|
+
constructor() {
|
|
95
|
+
__privateAdd(this, _open, false);
|
|
96
|
+
}
|
|
97
|
+
get isOpen() {
|
|
98
|
+
return __privateGet(this, _open);
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Decide whether to pass a frame through.
|
|
102
|
+
* Opens permanently once the first keyframe is seen.
|
|
103
|
+
*/
|
|
104
|
+
allow(keyframe) {
|
|
105
|
+
if (__privateGet(this, _open)) return true;
|
|
106
|
+
if (keyframe) {
|
|
107
|
+
__privateSet(this, _open, true);
|
|
108
|
+
return true;
|
|
109
|
+
}
|
|
110
|
+
return false;
|
|
111
|
+
}
|
|
112
|
+
/** Re-close the gate. Next keyframe reopens it. */
|
|
113
|
+
reset() {
|
|
114
|
+
__privateSet(this, _open, false);
|
|
115
|
+
}
|
|
116
|
+
};
|
|
117
|
+
_open = new WeakMap();
|
|
118
|
+
|
|
119
|
+
// src/video/video-render-pipeline.ts
|
|
120
|
+
function deriveVideoReorderWindow(framerate, mapper) {
|
|
121
|
+
const framesPerGroup = Math.ceil(framerate * mapper.gopDurationMs / 1e3);
|
|
122
|
+
return mapper.d * framesPerGroup;
|
|
123
|
+
}
|
|
124
|
+
var _pacer, _gate, _opts, _decoder, _pipeline, _closed, _VideoRenderPipeline_instances, init_fn, configureDecoder_fn;
|
|
125
|
+
var VideoRenderPipeline = class {
|
|
126
|
+
constructor(opts) {
|
|
127
|
+
__privateAdd(this, _VideoRenderPipeline_instances);
|
|
128
|
+
__privateAdd(this, _pacer);
|
|
129
|
+
__privateAdd(this, _gate, new KeyframeGate());
|
|
130
|
+
__privateAdd(this, _opts);
|
|
131
|
+
__privateAdd(this, _decoder, null);
|
|
132
|
+
__privateAdd(this, _pipeline, null);
|
|
133
|
+
__privateAdd(this, _closed, false);
|
|
134
|
+
if (!(opts.framerate > 0)) throw new Error("framerate must be > 0");
|
|
135
|
+
__privateSet(this, _opts, opts);
|
|
136
|
+
__privateSet(this, _pacer, new FrameCountPacer({
|
|
137
|
+
frameDurationMs: 1e3 / opts.framerate,
|
|
138
|
+
mapper: opts.mapper,
|
|
139
|
+
warmupFrames: opts.warmupFrames ?? 3
|
|
140
|
+
}));
|
|
141
|
+
__privateMethod(this, _VideoRenderPipeline_instances, init_fn).call(this);
|
|
142
|
+
}
|
|
143
|
+
feedMoqObject(packet) {
|
|
144
|
+
__privateGet(this, _pipeline)?.feedMoqObject(packet);
|
|
145
|
+
}
|
|
146
|
+
paceSleepMs() {
|
|
147
|
+
return __privateGet(this, _pacer).computeSleepMs();
|
|
148
|
+
}
|
|
149
|
+
get pacerSnapshot() {
|
|
150
|
+
return __privateGet(this, _pacer).snapshot;
|
|
151
|
+
}
|
|
152
|
+
/** Request a fresh keyframe after a decoder error (or source switch). */
|
|
153
|
+
reset() {
|
|
154
|
+
__privateGet(this, _gate).reset();
|
|
155
|
+
__privateGet(this, _pacer).reset();
|
|
156
|
+
try {
|
|
157
|
+
__privateGet(this, _decoder)?.reset();
|
|
158
|
+
} catch {
|
|
159
|
+
}
|
|
160
|
+
__privateMethod(this, _VideoRenderPipeline_instances, configureDecoder_fn).call(this);
|
|
161
|
+
}
|
|
162
|
+
close() {
|
|
163
|
+
if (__privateGet(this, _closed)) return;
|
|
164
|
+
__privateSet(this, _closed, true);
|
|
165
|
+
try {
|
|
166
|
+
__privateGet(this, _decoder)?.close();
|
|
167
|
+
} catch {
|
|
168
|
+
}
|
|
169
|
+
try {
|
|
170
|
+
__privateGet(this, _pipeline)?.dispose();
|
|
171
|
+
} catch {
|
|
172
|
+
}
|
|
173
|
+
__privateSet(this, _decoder, null);
|
|
174
|
+
__privateSet(this, _pipeline, null);
|
|
175
|
+
}
|
|
176
|
+
};
|
|
177
|
+
_pacer = new WeakMap();
|
|
178
|
+
_gate = new WeakMap();
|
|
179
|
+
_opts = new WeakMap();
|
|
180
|
+
_decoder = new WeakMap();
|
|
181
|
+
_pipeline = new WeakMap();
|
|
182
|
+
_closed = new WeakMap();
|
|
183
|
+
_VideoRenderPipeline_instances = new WeakSet();
|
|
184
|
+
// ─── Private ─────────────────────────────────────────────────────
|
|
185
|
+
init_fn = function() {
|
|
186
|
+
__privateMethod(this, _VideoRenderPipeline_instances, configureDecoder_fn).call(this);
|
|
187
|
+
const pipeline = new MmtpDecodePipeline();
|
|
188
|
+
const reorderWindow = __privateGet(this, _opts).reorderWindow ?? deriveVideoReorderWindow(__privateGet(this, _opts).framerate, __privateGet(this, _opts).mapper);
|
|
189
|
+
pipeline.configure({
|
|
190
|
+
codec: __privateGet(this, _opts).codec,
|
|
191
|
+
packetId: __privateGet(this, _opts).packetId,
|
|
192
|
+
description: __privateGet(this, _opts).description,
|
|
193
|
+
reorderWindow,
|
|
194
|
+
framerate: __privateGet(this, _opts).framerate,
|
|
195
|
+
groupDurationMs: __privateGet(this, _opts).mapper.gopDurationMs,
|
|
196
|
+
reassemblyPolicy: __privateGet(this, _opts).reassemblyPolicy
|
|
197
|
+
});
|
|
198
|
+
if (__privateGet(this, _opts).fecClient) pipeline.setFecClient(__privateGet(this, _opts).fecClient);
|
|
199
|
+
pipeline.onFrame((codecData, meta) => {
|
|
200
|
+
if (__privateGet(this, _closed) || !__privateGet(this, _decoder)) return;
|
|
201
|
+
if (codecData.byteLength === 0) return;
|
|
202
|
+
if (!__privateGet(this, _gate).allow(meta.keyframe)) return;
|
|
203
|
+
__privateGet(this, _pacer).notifyFrame();
|
|
204
|
+
try {
|
|
205
|
+
__privateGet(this, _decoder).decode(new EncodedVideoChunk({
|
|
206
|
+
type: meta.keyframe ? "key" : "delta",
|
|
207
|
+
data: codecData,
|
|
208
|
+
timestamp: meta.timestamp
|
|
209
|
+
}));
|
|
210
|
+
} catch (err) {
|
|
211
|
+
__privateGet(this, _opts).onError?.(err);
|
|
212
|
+
this.reset();
|
|
213
|
+
}
|
|
214
|
+
});
|
|
215
|
+
__privateSet(this, _pipeline, pipeline);
|
|
216
|
+
};
|
|
217
|
+
configureDecoder_fn = function() {
|
|
218
|
+
try {
|
|
219
|
+
__privateGet(this, _decoder)?.close();
|
|
220
|
+
} catch {
|
|
221
|
+
}
|
|
222
|
+
const userMeta = { timestamp: 0, keyframe: false, packetId: 0 };
|
|
223
|
+
const decoder = new VideoDecoder({
|
|
224
|
+
output: (frame) => {
|
|
225
|
+
userMeta.timestamp = frame.timestamp;
|
|
226
|
+
__privateGet(this, _opts).onFrame(frame, userMeta);
|
|
227
|
+
},
|
|
228
|
+
error: (err) => {
|
|
229
|
+
__privateGet(this, _opts).onError?.(err);
|
|
230
|
+
__privateGet(this, _gate).reset();
|
|
231
|
+
}
|
|
232
|
+
});
|
|
233
|
+
const config = {
|
|
234
|
+
codec: __privateGet(this, _opts).codec,
|
|
235
|
+
codedWidth: __privateGet(this, _opts).width,
|
|
236
|
+
codedHeight: __privateGet(this, _opts).height,
|
|
237
|
+
...__privateGet(this, _opts).description ? { description: __privateGet(this, _opts).description } : {},
|
|
238
|
+
...__privateGet(this, _opts).hardwareAcceleration ? { hardwareAcceleration: __privateGet(this, _opts).hardwareAcceleration } : {}
|
|
239
|
+
};
|
|
240
|
+
decoder.configure(config);
|
|
241
|
+
__privateSet(this, _decoder, decoder);
|
|
242
|
+
};
|
|
243
|
+
export {
|
|
244
|
+
VideoRenderPipeline,
|
|
245
|
+
deriveVideoReorderWindow
|
|
246
|
+
};
|
|
247
|
+
//# sourceMappingURL=video-render-pipeline.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/video/video-render-pipeline.ts", "../../src/pacing/frame-pacer.ts", "../../src/video/keyframe-gate.ts"],
|
|
4
|
+
"sourcesContent": ["/**\n * VideoRenderPipeline \u2014 end-to-end video render for MoQ/MMT players.\n *\n * Pipeline: MoQ object \u2192 MmtpDecodePipeline \u2192 keyframe gate \u2192 WebCodecs\n * VideoDecoder \u2192 consumer's onFrame(VideoFrame).\n *\n * Replaces:\n * - moqtail's `decodeQueueSize > 10 drop-deltas` hack in webcodecs-backend.ts\n * - hang-mmt-fec's \"reorderWindow = 0 // TODO\" in video/decoder.ts\n *\n * Pacing uses FrameCountPacer (anchor on first decoded picture, frame count \u00D7\n * 1/fps) with threshold = mapper.pacingThresholdMs. Reorder window comes from\n * mapper.d (groups per FEC block), which is the natural bound for out-of-order\n * delivery within a block after converting catalog groups to frame count.\n */\n\nimport { MmtpDecodePipeline, type PipelineFecClient } from '@blockcast/mmt-container/mmtp-decode-pipeline'\nimport type { MfuReassemblyPolicy } from '@blockcast/mmt-container/mfu-reassembly-policy'\nimport type { FecBlockMapper } from '@blockcast/mmt-fec'\nimport { FrameCountPacer } from '../pacing/frame-pacer.js'\nimport { KeyframeGate } from './keyframe-gate.js'\n\nexport interface VideoFrameMeta {\n timestamp: number\n keyframe: boolean\n packetId: number\n}\n\nexport type VideoFrameCallback = (frame: VideoFrame, meta: VideoFrameMeta) => void\n\nexport function deriveVideoReorderWindow(\n framerate: number,\n mapper: Pick<FecBlockMapper, 'd' | 'gopDurationMs'>,\n): number {\n const framesPerGroup = Math.ceil(framerate * mapper.gopDurationMs / 1000)\n return mapper.d * framesPerGroup\n}\n\nexport interface VideoRenderPipelineOpts {\n codec: string\n /** MMTP packet_id for this video track \u2014 from catalog. */\n packetId?: number\n description?: Uint8Array\n width: number\n height: number\n /** Frames per second (used for pacing + default reorder window). */\n framerate: number\n mapper: FecBlockMapper\n fecClient?: PipelineFecClient\n /** Reliable MoQ is clock-free; datagram deadlines come from catalog/in-band timing. */\n reassemblyPolicy: MfuReassemblyPolicy\n /** Receives VideoFrames ready to render. */\n onFrame: VideoFrameCallback\n /** Called on decoder errors. */\n onError?: (err: unknown) => void\n /** Reorder window in frames. Defaults to one catalog-derived FEC block. */\n reorderWindow?: number\n /** Warmup frames before pacing engages. Default 3 (absorbs decoder init jitter). */\n warmupFrames?: number\n /** Optional decoder hardware acceleration hint. */\n hardwareAcceleration?: HardwareAcceleration\n}\n\nexport class VideoRenderPipeline {\n readonly #pacer: FrameCountPacer\n readonly #gate = new KeyframeGate()\n readonly #opts: VideoRenderPipelineOpts\n\n #decoder: VideoDecoder | null = null\n #pipeline: MmtpDecodePipeline | null = null\n #closed = false\n\n constructor(opts: VideoRenderPipelineOpts) {\n if (!(opts.framerate > 0)) throw new Error('framerate must be > 0')\n this.#opts = opts\n this.#pacer = new FrameCountPacer({\n frameDurationMs: 1000 / opts.framerate,\n mapper: opts.mapper,\n warmupFrames: opts.warmupFrames ?? 3,\n })\n this.#init()\n }\n\n feedMoqObject(packet: Uint8Array): void {\n this.#pipeline?.feedMoqObject(packet)\n }\n\n paceSleepMs(): number {\n return this.#pacer.computeSleepMs()\n }\n\n get pacerSnapshot() {\n return this.#pacer.snapshot\n }\n\n /** Request a fresh keyframe after a decoder error (or source switch). */\n reset(): void {\n this.#gate.reset()\n this.#pacer.reset()\n try { this.#decoder?.reset() } catch { /* may be closed */ }\n // Re-configure so the decoder is ready for the next keyframe.\n this.#configureDecoder()\n }\n\n close(): void {\n if (this.#closed) return\n this.#closed = true\n try { this.#decoder?.close() } catch { /* noop */ }\n try { this.#pipeline?.dispose() } catch { /* noop */ }\n this.#decoder = null\n this.#pipeline = null\n }\n\n // \u2500\u2500\u2500 Private \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n\n #init(): void {\n this.#configureDecoder()\n\n const pipeline = new MmtpDecodePipeline()\n const reorderWindow = this.#opts.reorderWindow\n ?? deriveVideoReorderWindow(this.#opts.framerate, this.#opts.mapper)\n pipeline.configure({\n codec: this.#opts.codec,\n packetId: this.#opts.packetId,\n description: this.#opts.description,\n reorderWindow,\n framerate: this.#opts.framerate,\n groupDurationMs: this.#opts.mapper.gopDurationMs,\n reassemblyPolicy: this.#opts.reassemblyPolicy,\n })\n if (this.#opts.fecClient) pipeline.setFecClient(this.#opts.fecClient)\n\n pipeline.onFrame((codecData, meta) => {\n if (this.#closed || !this.#decoder) return\n if (codecData.byteLength === 0) return\n if (!this.#gate.allow(meta.keyframe)) return\n\n this.#pacer.notifyFrame()\n try {\n this.#decoder.decode(new EncodedVideoChunk({\n type: meta.keyframe ? 'key' : 'delta',\n data: codecData,\n timestamp: meta.timestamp,\n }))\n } catch (err) {\n this.#opts.onError?.(err)\n this.reset()\n }\n })\n this.#pipeline = pipeline\n }\n\n #configureDecoder(): void {\n try { this.#decoder?.close() } catch { /* noop */ }\n\n const userMeta: VideoFrameMeta = { timestamp: 0, keyframe: false, packetId: 0 }\n const decoder = new VideoDecoder({\n output: (frame) => {\n // WebCodecs VideoFrame doesn't carry our frame meta; the consumer\n // rematches via frame.timestamp if needed.\n userMeta.timestamp = frame.timestamp\n this.#opts.onFrame(frame, userMeta)\n },\n error: (err) => {\n this.#opts.onError?.(err)\n this.#gate.reset()\n },\n })\n const config: VideoDecoderConfig = {\n codec: this.#opts.codec,\n codedWidth: this.#opts.width,\n codedHeight: this.#opts.height,\n ...(this.#opts.description ? { description: this.#opts.description } : {}),\n ...(this.#opts.hardwareAcceleration ? { hardwareAcceleration: this.#opts.hardwareAcceleration } : {}),\n }\n decoder.configure(config)\n this.#decoder = decoder\n }\n}\n", "/**\n * FrameCountPacer \u2014 media-agnostic wall-clock pacer for MMT A/V decode loops.\n *\n * Why not use MPU timestamps? Under FEC interleaving, encoders pack multiple\n * Access Units (AUs) per MMTP MPU with a single mpu_timestamp. The observed\n * timestamp delta between MPUs is a fraction of the real per-AU duration\n * (e.g. 10.22ms between MPUs for 21.33ms AAC frames at D=2 interleave).\n * Pacing on that delta sees \"media \u2248 wall\" and never sleeps, letting burst\n * relay delivery saturate the decoder / ring buffer.\n *\n * The Sony libatsc3 pattern (atsc3_mmt_context_mfu_depacketizer) solves this\n * by anchoring wall-clock time to the first received AU and counting AUs:\n * media_elapsed_ms = au_count \u00D7 nominal_au_duration_ms\n * The MPU timestamp is used elsewhere as an absolute-time anchor, never as\n * an incremental clock.\n *\n * The sleep threshold comes from the catalog's FEC interleaveDepthMs (via\n * FecBlockMapper.pacingThresholdMs). When no FEC is configured, a\n * NullBlockMapper yields threshold=0 and this pacer never sleeps.\n *\n * One pacer instance = one track (e.g. audio, video) on one player.\n */\n\nimport type { FecBlockMapper } from '@blockcast/mmt-fec'\n\nexport interface FrameCountPacerOpts {\n /** Required: AU duration (audio) or picture interval (video), in ms. */\n frameDurationMs: number\n /** FEC mapper from @blockcast/mmt-fec. NullBlockMapper disables pacing. */\n mapper: FecBlockMapper\n /**\n * Number of frames to let through before pacing starts. Lets startup\n * burst drain populate the ring buffer / decoder queue. Default 0.\n */\n warmupFrames?: number\n}\n\nexport interface PacerSnapshot {\n /** Frames observed (from notifyFrame). */\n frameCount: number\n /** Computed media time: frameCount \u00D7 frameDurationMs. */\n mediaMs: number\n /** Wall-clock time since anchor. */\n wallMs: number\n /** mediaMs - wallMs. Positive \u2192 decoder ahead of realtime. */\n aheadMs: number\n /** Pacing threshold (ms) from the FEC mapper. */\n thresholdMs: number\n /** Has the first frame been observed (wall anchor set)? */\n anchored: boolean\n}\n\nexport class FrameCountPacer {\n readonly frameDurationMs: number\n readonly thresholdMs: number\n readonly warmupFrames: number\n\n #frameCount = 0\n #anchorWallMs = 0\n #anchored = false\n\n constructor(opts: FrameCountPacerOpts) {\n if (!(opts.frameDurationMs > 0)) {\n throw new Error('frameDurationMs must be > 0')\n }\n this.frameDurationMs = opts.frameDurationMs\n this.thresholdMs = opts.mapper.pacingThresholdMs\n this.warmupFrames = Math.max(0, opts.warmupFrames ?? 0)\n }\n\n /** Call on every emitted decoded frame (AU or picture). Anchors on first call. */\n notifyFrame(): void {\n if (!this.#anchored) {\n this.#anchorWallMs = now()\n this.#anchored = true\n }\n this.#frameCount++\n }\n\n /**\n * Compute sleep ms before reading the next MoQ object.\n * Returns 0 when:\n * - pacing is disabled (NullBlockMapper \u2192 threshold=0)\n * - the anchor is not yet set\n * - still in warmup\n * - decoder is not ahead of wall clock by more than threshold\n * Otherwise returns aheadMs - thresholdMs/2 (leaves half the threshold as headroom).\n */\n computeSleepMs(): number {\n if (this.thresholdMs <= 0) return 0\n if (!this.#anchored) return 0\n if (this.#frameCount <= this.warmupFrames) return 0\n\n const mediaMs = this.#frameCount * this.frameDurationMs\n const wallMs = now() - this.#anchorWallMs\n const aheadMs = mediaMs - wallMs\n if (aheadMs <= this.thresholdMs) return 0\n return aheadMs - this.thresholdMs / 2\n }\n\n /** Reset anchor + counter. Call on source switch (MoQ \u2194 multicast). */\n reset(): void {\n this.#frameCount = 0\n this.#anchorWallMs = 0\n this.#anchored = false\n }\n\n get snapshot(): PacerSnapshot {\n const mediaMs = this.#frameCount * this.frameDurationMs\n const wallMs = this.#anchored ? now() - this.#anchorWallMs : 0\n return {\n frameCount: this.#frameCount,\n mediaMs,\n wallMs,\n aheadMs: mediaMs - wallMs,\n thresholdMs: this.thresholdMs,\n anchored: this.#anchored,\n }\n }\n}\n\nfunction now(): number {\n // performance.now() is available in main thread, workers, and AudioWorklet.\n // Fall back to Date.now() for exotic runtimes (shouldn't happen in browsers).\n if (typeof performance !== 'undefined' && typeof performance.now === 'function') {\n return performance.now()\n }\n return Date.now()\n}\n", "/**\n * KeyframeGate \u2014 drops delta frames until a keyframe arrives.\n *\n * Required when subscribing mid-stream: the relay may deliver P/B frames\n * from the middle of a GOP before the first IDR. Feeding those into\n * VideoDecoder before an init yields \"key frame required\" errors.\n *\n * Call reset() to re-arm the gate after a decoder error (requestKeyframe).\n */\n\nexport class KeyframeGate {\n #open = false\n\n get isOpen(): boolean {\n return this.#open\n }\n\n /**\n * Decide whether to pass a frame through.\n * Opens permanently once the first keyframe is seen.\n */\n allow(keyframe: boolean): boolean {\n if (this.#open) return true\n if (keyframe) {\n this.#open = true\n return true\n }\n return false\n }\n\n /** Re-close the gate. Next keyframe reopens it. */\n reset(): void {\n this.#open = false\n }\n}\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|