@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.
Files changed (2) hide show
  1. package/README.md +2 -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
- `@blockcast/mmt-fec` and `mmt-wasm` are pulled in as workspace dependencies for the FEC client. Browser builds also need a way to load `mmt_wasm.js` see `loadMmtWasm` below for the search paths.
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 RaptorQ decoder client (workspace dep). The `MmtFecClient` and `MoqFecClient` here wrap its WASM bindings.
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.1",
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",