You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function canReceive depends on Transport._extendedRtpCapabilities, and _extendedRtpCapabilities depends on whether the device can encode with the codec.
So if Browser A can decode H264 but can only encode VP8, Transport._extendedRtpCapabilities will not contain H264. So if Browser B can only encode H264, mediasoup will reject A receiving from B. If I comment the line, the browse will accept the sdp and works fine.
The text was updated successfully, but these errors were encountered:
https://github.com/versatica/mediasoup-client/blob/v3/src/Transport.ts#L591
The function canReceive depends on Transport._extendedRtpCapabilities, and _extendedRtpCapabilities depends on whether the device can encode with the codec.
So if Browser A can decode H264 but can only encode VP8, Transport._extendedRtpCapabilities will not contain H264. So if Browser B can only encode H264, mediasoup will reject A receiving from B. If I comment the line, the browse will accept the sdp and works fine.
The text was updated successfully, but these errors were encountered: