fc5871
diff -up firefox-81.0/toolkit/modules/GMPInstallManager.jsm.old firefox-81.0/toolkit/modules/GMPInstallManager.jsm
fc5871
--- firefox-81.0/toolkit/modules/GMPInstallManager.jsm.old	2020-09-25 10:39:04.769458703 +0200
fc5871
+++ firefox-81.0/toolkit/modules/GMPInstallManager.jsm	2020-09-25 10:39:22.038504747 +0200
fc5871
@@ -54,10 +54,6 @@ function getScopedLogger(prefix) {
fc5871
 
fc5871
 const LOCAL_GMP_SOURCES = [
fc5871
   {
fc5871
-    id: "gmp-gmpopenh264",
fc5871
-    src: "chrome://global/content/gmp-sources/openh264.json",
fc5871
-  },
fc5871
-  {
fc5871
     id: "gmp-widevinecdm",
fc5871
     src: "chrome://global/content/gmp-sources/widevinecdm.json",
fc5871
   },
fc5871
diff --git a/toolkit/content/jar.mn b/toolkit/content/jar.mn
fc5871
--- a/toolkit/content/jar.mn
fc5871
+++ b/toolkit/content/jar.mn
fc5871
@@ -108,7 +108,6 @@ toolkit.jar:
fc5871
 #ifdef XP_MACOSX
fc5871
    content/global/macWindowMenu.js
fc5871
 #endif
fc5871
-   content/global/gmp-sources/openh264.json    (gmp-sources/openh264.json)
fc5871
    content/global/gmp-sources/widevinecdm.json (gmp-sources/widevinecdm.json)
fc5871
 
fc5871
 # Third party files
fc5871
diff --git a/toolkit/modules/GMPInstallManager.jsm b/toolkit/modules/GMPInstallManager.jsm
fc5871
--- a/toolkit/modules/GMPInstallManager.jsm
fc5871
+++ b/toolkit/modules/GMPInstallManager.jsm
fc5871
@@ -238,6 +234,9 @@ GMPInstallManager.prototype = {
fc5871
    *                 downloaderr, verifyerr or previouserrorencountered
fc5871
    */
fc5871
   installAddon(gmpAddon) {
fc5871
+    if (gmpAddon.isOpenH264) {
fc5871
+      return Promise.reject({ type: "disabled" });
fc5871
+    }
fc5871
     if (this._deferred) {
fc5871
       let log = getScopedLogger("GMPInstallManager.installAddon");
fc5871
       log.error("previous error encountered");
fc5871