@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/cjs/index.js
CHANGED
|
@@ -15333,7 +15333,6 @@ var OfferAnswerType;
|
|
|
15333
15333
|
class SendOnlyTransceiver extends Transceiver {
|
|
15334
15334
|
constructor(config) {
|
|
15335
15335
|
super(config);
|
|
15336
|
-
this.rtxEnabled = false;
|
|
15337
15336
|
this.dtxDisabled = true;
|
|
15338
15337
|
this.streamMuteStateChange = new TypedEvent();
|
|
15339
15338
|
this.streamReadyStateChanged = new TypedEvent();
|
|
@@ -15581,7 +15580,7 @@ class SendOnlyTransceiver extends Transceiver {
|
|
|
15581
15580
|
mungeLocalDescription(mediaDescription) {
|
|
15582
15581
|
this.munger.mungeLocalDescription(mediaDescription, {
|
|
15583
15582
|
simulcastEnabled: this.isSimulcastEnabled(),
|
|
15584
|
-
rtxEnabled: this.
|
|
15583
|
+
rtxEnabled: this.supportedCodecs.includes(exports.MediaCodecMimeType.RTX),
|
|
15585
15584
|
twccDisabled: this.twccDisabled,
|
|
15586
15585
|
forceSoftwareEncoder: this.mediaType === exports.MediaType.VideoSlides &&
|
|
15587
15586
|
(BrowserInfo.isWindows() || BrowserInfo.isMac()) &&
|
|
@@ -16100,9 +16099,6 @@ class MultistreamConnection extends EventEmitter$2 {
|
|
|
16100
16099
|
csi,
|
|
16101
16100
|
supportedCodecs,
|
|
16102
16101
|
});
|
|
16103
|
-
if (getMediaFamily(mediaType) === exports.MediaFamily.Video) {
|
|
16104
|
-
transceiver.rtxEnabled = true;
|
|
16105
|
-
}
|
|
16106
16102
|
Object.entries(codecParams !== null && codecParams !== void 0 ? codecParams : {}).forEach(([codec, params]) => {
|
|
16107
16103
|
transceiver.setCustomCodecParameters(codec, params);
|
|
16108
16104
|
});
|