Added fix for rhbz#1900542
This commit is contained in:
parent
97999f62af
commit
e36bb4e634
@ -125,7 +125,7 @@ ExcludeArch: aarch64
|
|||||||
Summary: Mozilla Firefox Web browser
|
Summary: Mozilla Firefox Web browser
|
||||||
Name: firefox
|
Name: firefox
|
||||||
Version: 83.0
|
Version: 83.0
|
||||||
Release: 7%{?pre_tag}%{?dist}
|
Release: 8%{?pre_tag}%{?dist}
|
||||||
URL: https://www.mozilla.org/firefox/
|
URL: https://www.mozilla.org/firefox/
|
||||||
License: MPLv1.1 or GPLv2+ or LGPLv2+
|
License: MPLv1.1 or GPLv2+ or LGPLv2+
|
||||||
Source0: https://archive.mozilla.org/pub/firefox/releases/%{version}%{?pre_version}/source/firefox-%{version}%{?pre_version}.source.tar.xz
|
Source0: https://archive.mozilla.org/pub/firefox/releases/%{version}%{?pre_version}/source/firefox-%{version}%{?pre_version}.source.tar.xz
|
||||||
@ -198,7 +198,6 @@ Patch452: pw3.patch
|
|||||||
Patch453: pw4.patch
|
Patch453: pw4.patch
|
||||||
Patch454: pw5.patch
|
Patch454: pw5.patch
|
||||||
Patch455: pw6.patch
|
Patch455: pw6.patch
|
||||||
Patch456: pw7.patch
|
|
||||||
|
|
||||||
#VA-API patches
|
#VA-API patches
|
||||||
Patch584: firefox-disable-ffvpx-with-vapi.patch
|
Patch584: firefox-disable-ffvpx-with-vapi.patch
|
||||||
@ -420,7 +419,6 @@ This package contains results of tests executed during build.
|
|||||||
%patch453 -p1 -b .pw4
|
%patch453 -p1 -b .pw4
|
||||||
%patch454 -p1 -b .pw5
|
%patch454 -p1 -b .pw5
|
||||||
%patch455 -p1 -b .pw6
|
%patch455 -p1 -b .pw6
|
||||||
%patch456 -p1 -b .pw7
|
|
||||||
|
|
||||||
# VA-API fixes
|
# VA-API fixes
|
||||||
%patch584 -p1 -b .firefox-disable-ffvpx-with-vapi
|
%patch584 -p1 -b .firefox-disable-ffvpx-with-vapi
|
||||||
@ -996,6 +994,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||||||
#---------------------------------------------------------------------
|
#---------------------------------------------------------------------
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Nov 25 2020 Martin Stransky <stransky@redhat.com> - 83.0-8
|
||||||
|
- Added fix for rhbz#1900542
|
||||||
|
|
||||||
* Wed Nov 25 2020 Martin Stransky <stransky@redhat.com> - 83.0-7
|
* Wed Nov 25 2020 Martin Stransky <stransky@redhat.com> - 83.0-7
|
||||||
- Export MOZ_GMP_PATH from /usr/bin/firefox script
|
- Export MOZ_GMP_PATH from /usr/bin/firefox script
|
||||||
(https://pagure.io/fedora-workstation/issue/126)
|
(https://pagure.io/fedora-workstation/issue/126)
|
||||||
|
120
pw6.patch
120
pw6.patch
@ -1,7 +1,7 @@
|
|||||||
diff --git a/browser/actors/WebRTCParent.jsm b/browser/actors/WebRTCParent.jsm
|
diff -up firefox-83.0/browser/actors/WebRTCParent.jsm.pw6 firefox-83.0/browser/actors/WebRTCParent.jsm
|
||||||
--- a/browser/actors/WebRTCParent.jsm
|
--- firefox-83.0/browser/actors/WebRTCParent.jsm.pw6 2020-11-12 19:04:30.000000000 +0100
|
||||||
+++ b/browser/actors/WebRTCParent.jsm
|
+++ firefox-83.0/browser/actors/WebRTCParent.jsm 2020-11-25 10:28:32.492865982 +0100
|
||||||
@@ -45,6 +45,9 @@
|
@@ -45,6 +45,9 @@ XPCOMUtils.defineLazyServiceGetter(
|
||||||
"nsIOSPermissionRequest"
|
"nsIOSPermissionRequest"
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -11,7 +11,16 @@ diff --git a/browser/actors/WebRTCParent.jsm b/browser/actors/WebRTCParent.jsm
|
|||||||
class WebRTCParent extends JSWindowActorParent {
|
class WebRTCParent extends JSWindowActorParent {
|
||||||
didDestroy() {
|
didDestroy() {
|
||||||
webrtcUI.forgetStreamsFromBrowserContext(this.browsingContext);
|
webrtcUI.forgetStreamsFromBrowserContext(this.browsingContext);
|
||||||
@@ -774,6 +777,23 @@
|
@@ -753,6 +756,8 @@ function prompt(aActor, aBrowser, aReque
|
||||||
|
);
|
||||||
|
menupopup.appendChild(doc.createXULElement("menuseparator"));
|
||||||
|
|
||||||
|
+ let isPipeWire = false;
|
||||||
|
+
|
||||||
|
// Build the list of 'devices'.
|
||||||
|
let monitorIndex = 1;
|
||||||
|
for (let i = 0; i < devices.length; ++i) {
|
||||||
|
@@ -774,6 +779,29 @@ function prompt(aActor, aBrowser, aReque
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
name = device.name;
|
name = device.name;
|
||||||
@ -21,10 +30,16 @@ diff --git a/browser/actors/WebRTCParent.jsm b/browser/actors/WebRTCParent.jsm
|
|||||||
+ // Don't mark it as scary as there's an extra confirmation step by
|
+ // Don't mark it as scary as there's an extra confirmation step by
|
||||||
+ // PipeWire portal dialog.
|
+ // PipeWire portal dialog.
|
||||||
+ if (name == PIPEWIRE_PORTAL_NAME && device.id == PIPEWIRE_ID) {
|
+ if (name == PIPEWIRE_PORTAL_NAME && device.id == PIPEWIRE_ID) {
|
||||||
+ let sawcStringId = "getUserMedia.sharePipeWirePortal.label";
|
+ isPipeWire = true;
|
||||||
|
+ let name;
|
||||||
|
+ try {
|
||||||
|
+ name = stringBundle.getString("getUserMedia.sharePipeWirePortal.label");
|
||||||
|
+ } catch (err) {
|
||||||
|
+ name = "Use operating system settings"
|
||||||
|
+ }
|
||||||
+ let item = addDeviceToList(
|
+ let item = addDeviceToList(
|
||||||
+ menupopup,
|
+ menupopup,
|
||||||
+ stringBundle.getString(sawcStringId),
|
+ name,
|
||||||
+ i,
|
+ i,
|
||||||
+ type
|
+ type
|
||||||
+ );
|
+ );
|
||||||
@ -35,10 +50,84 @@ diff --git a/browser/actors/WebRTCParent.jsm b/browser/actors/WebRTCParent.jsm
|
|||||||
if (type == "application") {
|
if (type == "application") {
|
||||||
// The application names returned by the platform are of the form:
|
// The application names returned by the platform are of the form:
|
||||||
// <window count>\x1e<application name>
|
// <window count>\x1e<application name>
|
||||||
diff --git a/browser/locales/en-US/chrome/browser/browser.properties b/browser/locales/en-US/chrome/browser/browser.properties
|
@@ -888,39 +916,41 @@ function prompt(aActor, aBrowser, aReque
|
||||||
--- a/browser/locales/en-US/chrome/browser/browser.properties
|
perms.EXPIRE_SESSION
|
||||||
+++ b/browser/locales/en-US/chrome/browser/browser.properties
|
);
|
||||||
@@ -767,6 +767,7 @@
|
|
||||||
|
- video.deviceId = deviceId;
|
||||||
|
- let constraints = {
|
||||||
|
- video: { mediaSource: type, deviceId: { exact: deviceId } },
|
||||||
|
- };
|
||||||
|
- chromeWin.navigator.mediaDevices.getUserMedia(constraints).then(
|
||||||
|
- stream => {
|
||||||
|
- if (video.deviceId != deviceId) {
|
||||||
|
- // The user has selected a different device or closed the panel
|
||||||
|
- // before getUserMedia finished.
|
||||||
|
- stream.getTracks().forEach(t => t.stop());
|
||||||
|
- return;
|
||||||
|
- }
|
||||||
|
- video.srcObject = stream;
|
||||||
|
- video.stream = stream;
|
||||||
|
- doc.getElementById("webRTC-preview").hidden = false;
|
||||||
|
- video.onloadedmetadata = function(e) {
|
||||||
|
- video.play();
|
||||||
|
- };
|
||||||
|
- },
|
||||||
|
- err => {
|
||||||
|
- if (
|
||||||
|
- err.name == "OverconstrainedError" &&
|
||||||
|
- err.constraint == "deviceId"
|
||||||
|
- ) {
|
||||||
|
- // Window has disappeared since enumeration, which can happen.
|
||||||
|
- // No preview for you.
|
||||||
|
- return;
|
||||||
|
+ if (!isPipeWire) {
|
||||||
|
+ video.deviceId = deviceId;
|
||||||
|
+ let constraints = {
|
||||||
|
+ video: { mediaSource: type, deviceId: { exact: deviceId } },
|
||||||
|
+ };
|
||||||
|
+ chromeWin.navigator.mediaDevices.getUserMedia(constraints).then(
|
||||||
|
+ stream => {
|
||||||
|
+ if (video.deviceId != deviceId) {
|
||||||
|
+ // The user has selected a different device or closed the panel
|
||||||
|
+ // before getUserMedia finished.
|
||||||
|
+ stream.getTracks().forEach(t => t.stop());
|
||||||
|
+ return;
|
||||||
|
+ }
|
||||||
|
+ video.srcObject = stream;
|
||||||
|
+ video.stream = stream;
|
||||||
|
+ doc.getElementById("webRTC-preview").hidden = false;
|
||||||
|
+ video.onloadedmetadata = function(e) {
|
||||||
|
+ video.play();
|
||||||
|
+ };
|
||||||
|
+ },
|
||||||
|
+ err => {
|
||||||
|
+ if (
|
||||||
|
+ err.name == "OverconstrainedError" &&
|
||||||
|
+ err.constraint == "deviceId"
|
||||||
|
+ ) {
|
||||||
|
+ // Window has disappeared since enumeration, which can happen.
|
||||||
|
+ // No preview for you.
|
||||||
|
+ return;
|
||||||
|
+ }
|
||||||
|
+ Cu.reportError(
|
||||||
|
+ `error in preview: ${err.message} ${err.constraint}`
|
||||||
|
+ );
|
||||||
|
}
|
||||||
|
- Cu.reportError(
|
||||||
|
- `error in preview: ${err.message} ${err.constraint}`
|
||||||
|
- );
|
||||||
|
- }
|
||||||
|
- );
|
||||||
|
+ );
|
||||||
|
+ }
|
||||||
|
};
|
||||||
|
menupopup.addEventListener("command", menupopup._commandEventListener);
|
||||||
|
}
|
||||||
|
diff -up firefox-83.0/browser/locales/en-US/chrome/browser/browser.properties.pw6 firefox-83.0/browser/locales/en-US/chrome/browser/browser.properties
|
||||||
|
--- firefox-83.0/browser/locales/en-US/chrome/browser/browser.properties.pw6 2020-11-12 19:04:30.000000000 +0100
|
||||||
|
+++ firefox-83.0/browser/locales/en-US/chrome/browser/browser.properties 2020-11-25 09:24:26.378857626 +0100
|
||||||
|
@@ -764,6 +764,7 @@ getUserMedia.selectWindowOrScreen.label=
|
||||||
getUserMedia.selectWindowOrScreen.accesskey=W
|
getUserMedia.selectWindowOrScreen.accesskey=W
|
||||||
getUserMedia.pickWindowOrScreen.label = Select Window or Screen
|
getUserMedia.pickWindowOrScreen.label = Select Window or Screen
|
||||||
getUserMedia.shareEntireScreen.label = Entire screen
|
getUserMedia.shareEntireScreen.label = Entire screen
|
||||||
@ -46,10 +135,10 @@ diff --git a/browser/locales/en-US/chrome/browser/browser.properties b/browser/l
|
|||||||
# LOCALIZATION NOTE (getUserMedia.shareMonitor.label):
|
# LOCALIZATION NOTE (getUserMedia.shareMonitor.label):
|
||||||
# %S is screen number (digits 1, 2, etc)
|
# %S is screen number (digits 1, 2, etc)
|
||||||
# Example: Screen 1, Screen 2,..
|
# Example: Screen 1, Screen 2,..
|
||||||
diff --git a/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc b/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc
|
diff -up firefox-83.0/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc.pw6 firefox-83.0/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc
|
||||||
--- a/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc
|
--- firefox-83.0/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc.pw6 2020-11-25 09:24:26.358857788 +0100
|
||||||
+++ b/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc
|
+++ firefox-83.0/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc 2020-11-25 09:24:26.378857626 +0100
|
||||||
@@ -898,17 +898,17 @@
|
@@ -879,17 +879,17 @@ void BaseCapturerPipeWire::CaptureFrame(
|
||||||
callback_->OnCaptureResult(Result::SUCCESS, std::move(result));
|
callback_->OnCaptureResult(Result::SUCCESS, std::move(result));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -72,4 +161,3 @@ diff --git a/third_party/libwebrtc/webrtc/modules/desktop_capture/linux/base_cap
|
|||||||
}
|
}
|
||||||
|
|
||||||
// static
|
// static
|
||||||
|
|
||||||
|
95
pw7.patch
95
pw7.patch
@ -1,95 +0,0 @@
|
|||||||
diff --git a/browser/actors/WebRTCParent.jsm b/browser/actors/WebRTCParent.jsm
|
|
||||||
--- a/browser/actors/WebRTCParent.jsm
|
|
||||||
+++ b/browser/actors/WebRTCParent.jsm
|
|
||||||
@@ -756,6 +756,8 @@
|
|
||||||
);
|
|
||||||
menupopup.appendChild(doc.createXULElement("menuseparator"));
|
|
||||||
|
|
||||||
+ let isPipeWire = false;
|
|
||||||
+
|
|
||||||
// Build the list of 'devices'.
|
|
||||||
let monitorIndex = 1;
|
|
||||||
for (let i = 0; i < devices.length; ++i) {
|
|
||||||
@@ -783,6 +785,7 @@
|
|
||||||
// Don't mark it as scary as there's an extra confirmation step by
|
|
||||||
// PipeWire portal dialog.
|
|
||||||
if (name == PIPEWIRE_PORTAL_NAME && device.id == PIPEWIRE_ID) {
|
|
||||||
+ isPipeWire = true;
|
|
||||||
let sawcStringId = "getUserMedia.sharePipeWirePortal.label";
|
|
||||||
let item = addDeviceToList(
|
|
||||||
menupopup,
|
|
||||||
@@ -908,39 +911,41 @@
|
|
||||||
perms.EXPIRE_SESSION
|
|
||||||
);
|
|
||||||
|
|
||||||
- video.deviceId = deviceId;
|
|
||||||
- let constraints = {
|
|
||||||
- video: { mediaSource: type, deviceId: { exact: deviceId } },
|
|
||||||
- };
|
|
||||||
- chromeWin.navigator.mediaDevices.getUserMedia(constraints).then(
|
|
||||||
- stream => {
|
|
||||||
- if (video.deviceId != deviceId) {
|
|
||||||
- // The user has selected a different device or closed the panel
|
|
||||||
- // before getUserMedia finished.
|
|
||||||
- stream.getTracks().forEach(t => t.stop());
|
|
||||||
- return;
|
|
||||||
+ if (!isPipeWire) {
|
|
||||||
+ video.deviceId = deviceId;
|
|
||||||
+ let constraints = {
|
|
||||||
+ video: { mediaSource: type, deviceId: { exact: deviceId } },
|
|
||||||
+ };
|
|
||||||
+ chromeWin.navigator.mediaDevices.getUserMedia(constraints).then(
|
|
||||||
+ stream => {
|
|
||||||
+ if (video.deviceId != deviceId) {
|
|
||||||
+ // The user has selected a different device or closed the panel
|
|
||||||
+ // before getUserMedia finished.
|
|
||||||
+ stream.getTracks().forEach(t => t.stop());
|
|
||||||
+ return;
|
|
||||||
+ }
|
|
||||||
+ video.srcObject = stream;
|
|
||||||
+ video.stream = stream;
|
|
||||||
+ doc.getElementById("webRTC-preview").hidden = false;
|
|
||||||
+ video.onloadedmetadata = function(e) {
|
|
||||||
+ video.play();
|
|
||||||
+ };
|
|
||||||
+ },
|
|
||||||
+ err => {
|
|
||||||
+ if (
|
|
||||||
+ err.name == "OverconstrainedError" &&
|
|
||||||
+ err.constraint == "deviceId"
|
|
||||||
+ ) {
|
|
||||||
+ // Window has disappeared since enumeration, which can happen.
|
|
||||||
+ // No preview for you.
|
|
||||||
+ return;
|
|
||||||
+ }
|
|
||||||
+ Cu.reportError(
|
|
||||||
+ `error in preview: ${err.message} ${err.constraint}`
|
|
||||||
+ );
|
|
||||||
}
|
|
||||||
- video.srcObject = stream;
|
|
||||||
- video.stream = stream;
|
|
||||||
- doc.getElementById("webRTC-preview").hidden = false;
|
|
||||||
- video.onloadedmetadata = function(e) {
|
|
||||||
- video.play();
|
|
||||||
- };
|
|
||||||
- },
|
|
||||||
- err => {
|
|
||||||
- if (
|
|
||||||
- err.name == "OverconstrainedError" &&
|
|
||||||
- err.constraint == "deviceId"
|
|
||||||
- ) {
|
|
||||||
- // Window has disappeared since enumeration, which can happen.
|
|
||||||
- // No preview for you.
|
|
||||||
- return;
|
|
||||||
- }
|
|
||||||
- Cu.reportError(
|
|
||||||
- `error in preview: ${err.message} ${err.constraint}`
|
|
||||||
- );
|
|
||||||
- }
|
|
||||||
- );
|
|
||||||
+ );
|
|
||||||
+ }
|
|
||||||
};
|
|
||||||
menupopup.addEventListener("command", menupopup._commandEventListener);
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user