From 4db499cca39a38eb388e167fa1ffd5121b00c864 Mon Sep 17 00:00:00 2001 From: Simon Eisenmann Date: Fri, 24 Apr 2015 10:21:18 +0200 Subject: [PATCH] MJPEG fix was backported to FF38. So we allow HD constraints starting with FF38 now. --- static/js/services/constraints.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/js/services/constraints.js b/static/js/services/constraints.js index 3a5883b5..29c3b02e 100644 --- a/static/js/services/constraints.js +++ b/static/js/services/constraints.js @@ -196,8 +196,8 @@ return { // Chrome supports it. FF supports new spec starting 38. See https://wiki.mozilla.org/Media/getUserMedia for FF details. audioVideo: isChrome || (isFirefox && version >= 38), - // HD constraints in Chrome no issue. In FF we MJPEG is fixed with 40 (see https://bugzilla.mozilla.org/show_bug.cgi?id=1151628). - hdVideo: isChrome || (isFirefox && version >= 40), + // HD constraints in Chrome no issue. In FF we MJPEG is fixed with 38 (see https://bugzilla.mozilla.org/show_bug.cgi?id=1151628). + hdVideo: isChrome || (isFirefox && version >= 38), // Chrome supports this on Windows only. renderToAssociatedSink: isChrome && $window.navigator.platform.indexOf("Win") === 0, chrome: isChrome,