From e58e8ecd722ee9d79b09024994789140d97952c6 Mon Sep 17 00:00:00 2001 From: Gerald Squelart Date: Tue, 4 Oct 2016 22:46:22 -0700 Subject: [PATCH] Bug 1263665 - Set media.libavcodec.allow-obsolete=true for testing - r=jya Separate patch as we may want to revert it in the future, when test systems have been upgraded with a more recent libavcodec. MozReview-Commit-ID: EUrdsb8UGnV --HG-- extra : rebase_source : 0f92b409795a8689468911951bf7c262744b6879 --- testing/profiles/prefs_general.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testing/profiles/prefs_general.js b/testing/profiles/prefs_general.js index da94ae30345e..a7fb62c605dc 100644 --- a/testing/profiles/prefs_general.js +++ b/testing/profiles/prefs_general.js @@ -359,3 +359,7 @@ user_pref("startup.homepage_welcome_url.additional", ""); // For Firefox 52 only, ESR will support non-Flash plugins while release will // not, so we keep testing the non-Flash pathways user_pref("plugin.load_flash_only", false); + +// Don't block old libavcodec libraries when testing, because our test systems +// cannot easily be upgraded. +user_pref("media.libavcodec.allow-obsolete", true);