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