@streaming-cdn/rtc-web 1.3.10 → 1.3.11

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 +8 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # RTC Web SDK 1.3.9
1
+ # RTC Web SDK 1.3.11
2
2
 
3
3
  The customer package contains compiled ESM/UMD JavaScript and TypeScript declarations. It intentionally excludes implementation source and source maps. Example source remains available under `examples/`.
4
4
 
@@ -154,6 +154,13 @@ Use `setQuality("low" | "medium" | "high" | "audio" | "auto")` at runtime.
154
154
  available outgoing bitrate plus encoder CPU/bandwidth limits to step down
155
155
  quickly and recover conservatively. It starts at `medium`; severe latency or
156
156
  loss falls directly to `low`, while promotion requires six healthy samples.
157
+
158
+ The requested quality is a ceiling, not an instruction. Calls are a peer mesh,
159
+ so every participant has its own connection with its own link: each connection
160
+ settles at or below the ceiling on its own evidence, and one participant on a
161
+ poor network no longer decides what everybody else receives. A new connection
162
+ starts one step below the ceiling and proves itself upward. Listen for
163
+ `peerquality` (`{ participantId, quality }`) when one connection's tier moves.
157
164
  Use `setPreferredVideoCodec("vp8" | "h264" | "auto")`; compatible fallback
158
165
  codecs remain in the offer. `packetLossPct` is the loss measured since the
159
166
  previous sample. `packetLossCumulativePct` is the value since the call began.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@streaming-cdn/rtc-web",
3
- "version": "1.3.10",
3
+ "version": "1.3.11",
4
4
  "type": "module",
5
5
  "main": "dist/rtc-web.umd.js",
6
6
  "module": "dist/rtc-web.es.js",