Enforce constraints

This commit is contained in:
Pierre HUBERT 2021-01-30 20:23:55 +01:00
parent 3724bad03f
commit d06cca34d4

View File

@ -739,7 +739,7 @@ class CallWindow extends CustomEvents {
* @param {MediaStream} stream Target stream * @param {MediaStream} stream Target stream
*/ */
async applyStream(peerID, muted, stream) { async applyStream(peerID, muted, stream) {
// Remove any previous video stream // Remove any previous video stream
if(this.videoEls.has(peerID)) { if(this.videoEls.has(peerID)) {
this.removeVideoElement(peerID) this.removeVideoElement(peerID)
@ -956,8 +956,8 @@ class CallWindow extends CustomEvents {
const videoTrack = this.mainStream.getVideoTracks()[0]; const videoTrack = this.mainStream.getVideoTracks()[0];
// Fix video & canvas size // Fix video & canvas size
videoTarget.width = videoTrack.getSettings().width videoTarget.width = 320;
videoTarget.height = videoTrack.getSettings().height videoTarget.height = 240;
canvasTarget.width = videoTarget.width; canvasTarget.width = videoTarget.width;
canvasTarget.height = videoTarget.height; canvasTarget.height = videoTarget.height;