openvidu-browser: Use lowercase RID for simulcast layers
Firefox converts everything to lowercase and then the RIDs wouldn't match in the internal mediasoup lookup! So better use all lowercase for these identifiers.
This commit is contained in:
parent
b5e645f13d
commit
85f0e3ecd5
@ -207,7 +207,7 @@ export class WebRtcPeer {
|
||||
const layerDiv = 2 ** (maxLayers - l - 1);
|
||||
|
||||
const encoding: RTCRtpEncodingParameters = {
|
||||
rid: "rDiv" + layerDiv.toString(),
|
||||
rid: "rdiv" + layerDiv.toString(),
|
||||
|
||||
// @ts-ignore -- Property missing from DOM types.
|
||||
scalabilityMode: "L1T1",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user