mirror of https://github.com/OpenVidu/openvidu.git
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.pull/699/head
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…
Reference in New Issue