Remove unnecessary source code
Lib-jitsi-meet does not really implement isScreenSharing. Besides, getCameraFacingMode will already make sure that the video track does not represent a desktop stream.
This commit is contained in:
parent
e0b829f92f
commit
6d0a07a4cd
|
@ -274,15 +274,14 @@ function _shouldMirror(track) {
|
||||||
&& track.isLocal()
|
&& track.isLocal()
|
||||||
&& track.isVideoTrack()
|
&& track.isVideoTrack()
|
||||||
|
|
||||||
// XXX Type of the return value of
|
// XXX The type of the return value of
|
||||||
// JitsiLocalTrack#getCameraFacingMode() happens to be named
|
// JitsiLocalTrack's getCameraFacingMode happens to be named
|
||||||
// CAMERA_FACING_MODE as well, it's defined by lib-jitsi-meet. Note
|
// CAMERA_FACING_MODE as well, it's defined by lib-jitsi-meet. Note
|
||||||
// though that the type of the value on the right side of the
|
// though that the type of the value on the right side of the
|
||||||
// equality check is defined by jitsi-meet-react. The type
|
// equality check is defined by jitsi-meet-react. The type
|
||||||
// definitions are surely compatible today but that may not be the
|
// definitions are surely compatible today but that may not be the
|
||||||
// case tomorrow.
|
// case tomorrow.
|
||||||
&& track.getCameraFacingMode() === CAMERA_FACING_MODE.USER
|
&& track.getCameraFacingMode() === CAMERA_FACING_MODE.USER
|
||||||
&& !track.isScreenSharing()
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue