@blockcast/mmt-transport 0.2.1 → 0.2.2
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 +2 -2
- package/package.json +1 -4
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Unified transport manager for browser MoQ players. Picks the right transport per
|
|
|
8
8
|
pnpm add @blockcast/mmt-transport
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
The FEC client loads `mmt-wasm` dynamically at runtime instead of installing a workspace-relative package dependency. Browser builds must provide `mmt_wasm.js` at one of the paths described under `loadMmtWasm` below, or pass an explicit path.
|
|
12
12
|
|
|
13
13
|
## Quick start
|
|
14
14
|
|
|
@@ -242,7 +242,7 @@ The selection algorithm is deliberately stateless and synchronous-feeling: every
|
|
|
242
242
|
## Related packages
|
|
243
243
|
|
|
244
244
|
- **[`@blockcast/mmt-container`](../container)** — MMTP / LOC container parser, MFU reassembler, CARP catalog, signaling. Sits downstream of this package and consumes the `ArrayBuffer` packets it emits.
|
|
245
|
-
- **[`@blockcast/mmt-fec`](../fec)** — Container-agnostic
|
|
245
|
+
- **[`@blockcast/mmt-fec`](../fec)** — Container-agnostic FEC primitives used by the container and render packages. The transport package's `MmtFecClient` and `MoqFecClient` load `mmt-wasm` directly and do not import this package.
|
|
246
246
|
- **[`@blockcast/fec-worker`](../fec-worker)** — Web Worker wrapper for the FEC client. Use this when decode CPU on the main thread is a problem; the API mirrors `MmtFecClient` over `postMessage` with zero-copy `ArrayBuffer` transfers.
|
|
247
247
|
- **[`@blockcast/mmt-render`](../mmt-render)** — Reference renderer + diagnostics overlay; consumes `TransportState` and `ProcessingStats`.
|
|
248
248
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blockcast/mmt-transport",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Unified transport manager for MoQ with WebTransport, SSM multicast, AMT, DRIAD, and FEC support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -34,9 +34,6 @@
|
|
|
34
34
|
"test": "vitest run",
|
|
35
35
|
"test:watch": "vitest"
|
|
36
36
|
},
|
|
37
|
-
"dependencies": {
|
|
38
|
-
"@blockcast/mmt-fec": "file:../fec"
|
|
39
|
-
},
|
|
40
37
|
"devDependencies": {
|
|
41
38
|
"esbuild": "^0.21.5",
|
|
42
39
|
"typescript": "^5.9.3",
|