@webex/web-client-media-engine 3.39.6 → 3.39.7
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/cjs/index.js +1 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -5
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +0 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -15329,7 +15329,6 @@ var OfferAnswerType;
|
|
|
15329
15329
|
class SendOnlyTransceiver extends Transceiver {
|
|
15330
15330
|
constructor(config) {
|
|
15331
15331
|
super(config);
|
|
15332
|
-
this.rtxEnabled = false;
|
|
15333
15332
|
this.dtxDisabled = true;
|
|
15334
15333
|
this.streamMuteStateChange = new TypedEvent();
|
|
15335
15334
|
this.streamReadyStateChanged = new TypedEvent();
|
|
@@ -15577,7 +15576,7 @@ class SendOnlyTransceiver extends Transceiver {
|
|
|
15577
15576
|
mungeLocalDescription(mediaDescription) {
|
|
15578
15577
|
this.munger.mungeLocalDescription(mediaDescription, {
|
|
15579
15578
|
simulcastEnabled: this.isSimulcastEnabled(),
|
|
15580
|
-
rtxEnabled: this.
|
|
15579
|
+
rtxEnabled: this.supportedCodecs.includes(MediaCodecMimeType.RTX),
|
|
15581
15580
|
twccDisabled: this.twccDisabled,
|
|
15582
15581
|
forceSoftwareEncoder: this.mediaType === MediaType.VideoSlides &&
|
|
15583
15582
|
(BrowserInfo.isWindows() || BrowserInfo.isMac()) &&
|
|
@@ -16096,9 +16095,6 @@ class MultistreamConnection extends EventEmitter$2 {
|
|
|
16096
16095
|
csi,
|
|
16097
16096
|
supportedCodecs,
|
|
16098
16097
|
});
|
|
16099
|
-
if (getMediaFamily(mediaType) === MediaFamily.Video) {
|
|
16100
|
-
transceiver.rtxEnabled = true;
|
|
16101
|
-
}
|
|
16102
16098
|
Object.entries(codecParams !== null && codecParams !== void 0 ? codecParams : {}).forEach(([codec, params]) => {
|
|
16103
16099
|
transceiver.setCustomCodecParameters(codec, params);
|
|
16104
16100
|
});
|