|
|
|
@ -1341,6 +1341,7 @@ function JitsiLocalTrack(stream, videoType, |
|
|
|
|
this.dontFireRemoveEvent = false; |
|
|
|
|
this.resolution = resolution; |
|
|
|
|
this.startMuted = false; |
|
|
|
|
this.isLocal = true; |
|
|
|
|
var self = this; |
|
|
|
|
JitsiTrack.call(this, null, stream, |
|
|
|
|
function () { |
|
|
|
@ -1511,6 +1512,7 @@ function JitsiRemoteTrack(RTC, data, sid, ssrc) { |
|
|
|
|
this.videoType = data.videoType; |
|
|
|
|
this.ssrc = ssrc; |
|
|
|
|
this.muted = false; |
|
|
|
|
this.isLocal = false; |
|
|
|
|
if((this.type === JitsiTrack.AUDIO && data.audiomuted) |
|
|
|
|
|| (this.type === JitsiTrack.VIDEO && data.videomuted)) { |
|
|
|
|
this.muted = true; |
|
|
|
@ -1536,7 +1538,7 @@ JitsiRemoteTrack.prototype.setMute = function (value) { |
|
|
|
|
*/ |
|
|
|
|
JitsiRemoteTrack.prototype.isMuted = function () { |
|
|
|
|
return this.muted; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Returns the participant id which owns the track. |
|
|
|
@ -1551,7 +1553,7 @@ JitsiRemoteTrack.prototype.getParticipantId = function() { |
|
|
|
|
*/ |
|
|
|
|
JitsiRemoteTrack.prototype.isLocal = function () { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
delete JitsiRemoteTrack.prototype.stop; |
|
|
|
|
|
|
|
|
|