|
@@ -2430,7 +2430,7 @@ TraceablePeerConnection.prototype._createOfferOrAnswer = function(
|
2430
|
2430
|
dumpSDP(resultSdp));
|
2431
|
2431
|
}
|
2432
|
2432
|
|
2433
|
|
- if (!this.options.disableRtx && browser.supportsRtx()) {
|
|
2433
|
+ if (!this.options.disableRtx && browser.usesSdpMungingForSimulcast()) {
|
2434
|
2434
|
// eslint-disable-next-line no-param-reassign
|
2435
|
2435
|
resultSdp = new RTCSessionDescription({
|
2436
|
2436
|
type: resultSdp.type,
|
|
@@ -2645,7 +2645,7 @@ TraceablePeerConnection.prototype.generateNewStreamSSRCInfo = function(track) {
|
2645
|
2645
|
groups: []
|
2646
|
2646
|
};
|
2647
|
2647
|
}
|
2648
|
|
- if (!this.options.disableRtx && browser.supportsRtx()) {
|
|
2648
|
+ if (!this.options.disableRtx) {
|
2649
|
2649
|
// Specifically use a for loop here because we'll
|
2650
|
2650
|
// be adding to the list we're iterating over, so we
|
2651
|
2651
|
// only want to iterate through the items originally
|