|
|
@@ -528,15 +528,11 @@ JitsiConferenceEventManager.prototype.setupRTCListeners = function() {
|
|
528
|
528
|
});
|
|
529
|
529
|
|
|
530
|
530
|
rtc.addListener(RTCEvents.VIDEO_SSRCS_REMAPPED, msg => {
|
|
531
|
|
- for (const session of this.conference.getMediaSessions()) {
|
|
532
|
|
- session.processSourceMap(msg, MediaType.VIDEO);
|
|
533
|
|
- }
|
|
|
531
|
+ this.conference.jvbJingleSession.processSourceMap(msg, MediaType.VIDEO);
|
|
534
|
532
|
});
|
|
535
|
533
|
|
|
536
|
534
|
rtc.addListener(RTCEvents.AUDIO_SSRCS_REMAPPED, msg => {
|
|
537
|
|
- for (const session of this.conference.getMediaSessions()) {
|
|
538
|
|
- session.processSourceMap(msg, MediaType.AUDIO);
|
|
539
|
|
- }
|
|
|
535
|
+ this.conference.jvbJingleSession.processSourceMap(msg, MediaType.AUDIO);
|
|
540
|
536
|
});
|
|
541
|
537
|
|
|
542
|
538
|
rtc.addListener(RTCEvents.ENDPOINT_MESSAGE_RECEIVED,
|