Fixes local video thumbnail being replaced with an avatar when lastN enabled.
This commit is contained in:
parent
61f4674a28
commit
17f245df5e
|
@ -22,7 +22,7 @@
|
|||
<script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
|
||||
<script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
|
||||
<script src="interface_config.js?v=5"></script>
|
||||
<script src="libs/app.bundle.js?v=100"></script>
|
||||
<script src="libs/app.bundle.js?v=101"></script>
|
||||
<script src="analytics.js?v=1"></script><!-- google analytics plugin -->
|
||||
<link rel="stylesheet" href="css/font.css?v=7"/>
|
||||
<link rel="stylesheet" href="css/toastr.css?v=1">
|
||||
|
|
|
@ -1217,8 +1217,8 @@ var RTC = {
|
|||
return this.rtcUtils.getUserMediaWithConstraints(um, success_callback,
|
||||
failure_callback, resolution, bandwidth, fps, desktopStream);
|
||||
},
|
||||
attachMediaStream: function (element, stream) {
|
||||
this.rtcUtils.attachMediaStream(element, stream);
|
||||
attachMediaStream: function (elSelector, stream) {
|
||||
this.rtcUtils.attachMediaStream(elSelector, stream);
|
||||
},
|
||||
getStreamID: function (stream) {
|
||||
return this.rtcUtils.getStreamID(stream);
|
||||
|
@ -1794,13 +1794,13 @@ function RTCUtils(RTCService, onTemasysPluginReady)
|
|||
|
||||
self.peerconnection = RTCPeerConnection;
|
||||
self.getUserMedia = getUserMedia;
|
||||
self.attachMediaStream = function (element, stream) {
|
||||
self.attachMediaStream = function (elSel, stream) {
|
||||
|
||||
if (stream.id === "dummyAudio" || stream.id === "dummyVideo") {
|
||||
return;
|
||||
}
|
||||
|
||||
attachMediaStream(element[0], stream);
|
||||
attachMediaStream(elSel[0], stream);
|
||||
};
|
||||
self.getStreamID = function (stream) {
|
||||
var id = SDPUtil.filter_special_chars(stream.label);
|
||||
|
@ -8828,7 +8828,8 @@ function updateActiveSpeakerAvatarSrc() {
|
|||
if (avatar.src === url)
|
||||
return;
|
||||
var isMuted = null;
|
||||
if(!LargeVideo.VideoLayout.isInLastN(currentSmallVideo.resourceJid)) {
|
||||
if (!currentSmallVideo.isLocal &&
|
||||
!LargeVideo.VideoLayout.isInLastN(currentSmallVideo.resourceJid)) {
|
||||
isMuted = true;
|
||||
}
|
||||
else
|
||||
|
@ -9114,6 +9115,7 @@ function LocalVideo(VideoLayout)
|
|||
this.container = $("#localVideoContainer").get(0);
|
||||
this.VideoLayout = VideoLayout;
|
||||
this.flipX = true;
|
||||
this.isLocal = true;
|
||||
this.peerJid = null;
|
||||
this.resourceJid = null;
|
||||
}
|
||||
|
@ -9364,6 +9366,7 @@ function RemoteVideo(peerJid, VideoLayout)
|
|||
nickfield.appendChild(document.createTextNode(this.resourceJid));
|
||||
this.container.appendChild(nickfield);
|
||||
this.flipX = false;
|
||||
this.isLocal = false;
|
||||
}
|
||||
|
||||
RemoteVideo.prototype = Object.create(SmallVideo.prototype);
|
||||
|
@ -10070,7 +10073,8 @@ SmallVideo.prototype.showAvatar = function (show) {
|
|||
var avatar = $('#avatar_' + this.resourceJid);
|
||||
|
||||
if (show === undefined || show === null) {
|
||||
if(!this.VideoLayout.isInLastN(this.resourceJid)) {
|
||||
if (!this.isLocal &&
|
||||
!this.VideoLayout.isInLastN(this.resourceJid)) {
|
||||
show = true;
|
||||
}
|
||||
else
|
||||
|
@ -10091,7 +10095,7 @@ SmallVideo.prototype.showAvatar = function (show) {
|
|||
setVisibility(avatar, show);
|
||||
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
SmallVideo.prototype.avatarChanged = function (thumbUrl) {
|
||||
var thumbnail = $('#' + this.videoSpanId);
|
||||
|
@ -10572,6 +10576,11 @@ var VideoLayout = (function (my) {
|
|||
return containerElement.id.substring(i + 12);
|
||||
};
|
||||
|
||||
my.getPeerVideoSel = function (peerResourceJid) {
|
||||
return $('#participant_' + peerResourceJid +
|
||||
'>' + APP.RTC.getVideoElementName());
|
||||
};
|
||||
|
||||
/**
|
||||
* On contact list item clicked.
|
||||
*/
|
||||
|
@ -10580,19 +10589,21 @@ var VideoLayout = (function (my) {
|
|||
return;
|
||||
}
|
||||
|
||||
if (jid == APP.xmpp.myJid()) {
|
||||
$("#localVideoContainer").click();
|
||||
return;
|
||||
}
|
||||
|
||||
var resource = Strophe.getResourceFromJid(jid);
|
||||
var videoContainer = $("#participant_" + resource);
|
||||
if (videoContainer.length > 0) {
|
||||
var videoThumb
|
||||
= $(RTC.getVideoElementName(), videoContainer).get(0);
|
||||
var videoSel = VideoLayout.getVideoSelector(resource);
|
||||
if (videoSel.length > 0) {
|
||||
var videoThumb = videoSel[0];
|
||||
// It is not always the case that a videoThumb exists (if there is
|
||||
// no actual video).
|
||||
if (videoThumb) {
|
||||
if (videoThumb.src && videoThumb.src != '') {
|
||||
if (RTC.getVideoSrc(videoThumb)) {
|
||||
|
||||
// We have a video src, great! Let's update the large video
|
||||
// now.
|
||||
|
||||
VideoLayout.handleVideoThumbClicked(
|
||||
false,
|
||||
Strophe.getResourceFromJid(jid));
|
||||
|
@ -10612,9 +10623,6 @@ var VideoLayout = (function (my) {
|
|||
eventEmitter.emit(UIEvents.PINNED_ENDPOINT,
|
||||
Strophe.getResourceFromJid(jid));
|
||||
}
|
||||
} else if (jid == APP.xmpp.myJid()) {
|
||||
$("#localVideoContainer").click();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -10646,11 +10654,12 @@ var VideoLayout = (function (my) {
|
|||
if (jid === APP.xmpp.myJid()) {
|
||||
localVideoThumbnail.showVideoIndicator(value);
|
||||
} else {
|
||||
VideoLayout.ensurePeerContainerExists(jid);
|
||||
remoteVideos[Strophe.getResourceFromJid(jid)].showVideoIndicator(value);
|
||||
var resource = Strophe.getResourceFromJid(jid);
|
||||
|
||||
var el = $('#participant_' + Strophe.getResourceFromJid(jid)
|
||||
+ '>' + APP.RTC.getVideoElementName());
|
||||
VideoLayout.ensurePeerContainerExists(jid);
|
||||
remoteVideos[resource].showVideoIndicator(value);
|
||||
|
||||
var el = VideoLayout.getPeerVideoSel(resource);
|
||||
if (!value)
|
||||
el.show();
|
||||
else
|
||||
|
@ -10703,19 +10712,15 @@ var VideoLayout = (function (my) {
|
|||
}
|
||||
|
||||
// Obtain container for new dominant speaker.
|
||||
var container = document.getElementById(
|
||||
'participant_' + resourceJid);
|
||||
var videoSel = VideoLayout.getPeerVideoSel(resourceJid);
|
||||
|
||||
// Local video will not have container found, but that's ok
|
||||
// since we don't want to switch to local video.
|
||||
if (container && !focusedVideoResourceJid)
|
||||
if (!focusedVideoResourceJid && videoSel.length)
|
||||
{
|
||||
var video
|
||||
= container.getElementsByTagName(RTC.getVideoElementName());
|
||||
|
||||
// Update the large video if the video source is already available,
|
||||
// otherwise wait for the "videoactive.jingle" event.
|
||||
if (video.length && video[0].currentTime > 0) {
|
||||
if (videoSel[0].currentTime > 0) {
|
||||
LargeVideo.updateLargeVideo(resourceJid);
|
||||
}
|
||||
}
|
||||
|
@ -10813,8 +10818,7 @@ var VideoLayout = (function (my) {
|
|||
|
||||
var jid = APP.xmpp.findJidFromResource(resourceJid);
|
||||
var mediaStream = APP.RTC.remoteStreams[jid][MediaStreamType.VIDEO_TYPE];
|
||||
var sel = $('#participant_' + resourceJid +
|
||||
'>' + RTC.getVideoElementName());
|
||||
var sel = VideoLayout.getPeerVideoSel(resourceJid);
|
||||
|
||||
APP.RTC.attachMediaStream(sel, mediaStream.stream);
|
||||
if (lastNPickupJid == mediaStream.peerjid) {
|
||||
|
|
|
@ -189,7 +189,8 @@ function updateActiveSpeakerAvatarSrc() {
|
|||
if (avatar.src === url)
|
||||
return;
|
||||
var isMuted = null;
|
||||
if(!LargeVideo.VideoLayout.isInLastN(currentSmallVideo.resourceJid)) {
|
||||
if (!currentSmallVideo.isLocal &&
|
||||
!LargeVideo.VideoLayout.isInLastN(currentSmallVideo.resourceJid)) {
|
||||
isMuted = true;
|
||||
}
|
||||
else
|
||||
|
|
|
@ -11,6 +11,7 @@ function LocalVideo(VideoLayout)
|
|||
this.container = $("#localVideoContainer").get(0);
|
||||
this.VideoLayout = VideoLayout;
|
||||
this.flipX = true;
|
||||
this.isLocal = true;
|
||||
this.peerJid = null;
|
||||
this.resourceJid = null;
|
||||
}
|
||||
|
|
|
@ -20,6 +20,7 @@ function RemoteVideo(peerJid, VideoLayout)
|
|||
nickfield.appendChild(document.createTextNode(this.resourceJid));
|
||||
this.container.appendChild(nickfield);
|
||||
this.flipX = false;
|
||||
this.isLocal = false;
|
||||
}
|
||||
|
||||
RemoteVideo.prototype = Object.create(SmallVideo.prototype);
|
||||
|
|
|
@ -313,7 +313,8 @@ SmallVideo.prototype.showAvatar = function (show) {
|
|||
var avatar = $('#avatar_' + this.resourceJid);
|
||||
|
||||
if (show === undefined || show === null) {
|
||||
if(!this.VideoLayout.isInLastN(this.resourceJid)) {
|
||||
if (!this.isLocal &&
|
||||
!this.VideoLayout.isInLastN(this.resourceJid)) {
|
||||
show = true;
|
||||
}
|
||||
else
|
||||
|
@ -334,7 +335,7 @@ SmallVideo.prototype.showAvatar = function (show) {
|
|||
setVisibility(avatar, show);
|
||||
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
SmallVideo.prototype.avatarChanged = function (thumbUrl) {
|
||||
var thumbnail = $('#' + this.videoSpanId);
|
||||
|
|
Loading…
Reference in New Issue