summaryrefslogtreecommitdiff
path: root/firefox-disable-ffvpx-with-vapi.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-12-22 07:23:35 +0100
committerMartin Stransky <stransky@redhat.com>2020-12-22 07:23:35 +0100
commit018c3c2bae3da415a7f87745f8361ae658a109b6 (patch)
treeddc3970a27b52b1445d0cf5e134519fe4a90ff30 /firefox-disable-ffvpx-with-vapi.patch
parentspec tweak (diff)
downloadlibrewolf-fedora-ff-018c3c2bae3da415a7f87745f8361ae658a109b6.tar.gz
librewolf-fedora-ff-018c3c2bae3da415a7f87745f8361ae658a109b6.tar.bz2
librewolf-fedora-ff-018c3c2bae3da415a7f87745f8361ae658a109b6.zip
dd
Diffstat (limited to 'firefox-disable-ffvpx-with-vapi.patch')
-rw-r--r--firefox-disable-ffvpx-with-vapi.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/firefox-disable-ffvpx-with-vapi.patch b/firefox-disable-ffvpx-with-vapi.patch
deleted file mode 100644
index dfe6dd8..0000000
--- a/firefox-disable-ffvpx-with-vapi.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-diff -up firefox-81.0/dom/media/platforms/PDMFactory.cpp.firefox-disable-ffvpx-with-vapi firefox-81.0/dom/media/platforms/PDMFactory.cpp
---- firefox-81.0/dom/media/platforms/PDMFactory.cpp.firefox-disable-ffvpx-with-vapi 2020-09-17 02:32:43.000000000 +0200
-+++ firefox-81.0/dom/media/platforms/PDMFactory.cpp 2020-09-21 10:30:29.393903183 +0200
-@@ -371,12 +371,6 @@ void PDMFactory::CreatePDMs() {
- StartupPDM(m);
- }
- #endif
--#ifdef MOZ_FFVPX
-- if (StaticPrefs::media_ffvpx_enabled()) {
-- m = FFVPXRuntimeLinker::CreateDecoderModule();
-- StartupPDM(m);
-- }
--#endif
- #ifdef MOZ_FFMPEG
- if (StaticPrefs::media_ffmpeg_enabled()) {
- m = FFmpegRuntimeLinker::CreateDecoderModule();
-@@ -385,6 +379,12 @@ void PDMFactory::CreatePDMs() {
- mFFmpegFailedToLoad = false;
- }
- #endif
-+#ifdef MOZ_FFVPX
-+ if (StaticPrefs::media_ffvpx_enabled()) {
-+ m = FFVPXRuntimeLinker::CreateDecoderModule();
-+ StartupPDM(m);
-+ }
-+#endif
- #ifdef MOZ_WIDGET_ANDROID
- if (StaticPrefs::media_android_media_codec_enabled()) {
- m = new AndroidDecoderModule();
bgstack15