@fishjam-cloud/webrtc-client 0.26.0-rc.1 → 0.26.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/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4072,7 +4072,8 @@ var createSimulcastTransceiverConfig = (trackContext, maxBandwidth) => {
|
|
|
4072
4072
|
// keep this array from low resolution to high resolution
|
|
4073
4073
|
// in other case lower resolution encoding can get
|
|
4074
4074
|
// higher max_bitrate
|
|
4075
|
-
sendEncodings: calculateSimulcastEncodings(encodings, maxBandwidth)
|
|
4075
|
+
sendEncodings: calculateSimulcastEncodings(encodings, maxBandwidth),
|
|
4076
|
+
streams: trackContext.stream ? [trackContext.stream] : []
|
|
4076
4077
|
};
|
|
4077
4078
|
};
|
|
4078
4079
|
var calculateSimulcastEncodings = (encodings, maxBandwidth) => {
|
package/package.json
CHANGED