Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Disable voice routing. (#3475)
Browse files Browse the repository at this point in the history
Fixes #3073
Fixes #2620
  • Loading branch information
bluemarvin committed Jun 8, 2020
1 parent 26d72cf commit f6b2e98
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public static void vrPrefsWorkAround(Context aContext, Bundle aExtras) {
out.write("user_pref(\"gfx.webrender.force-disabled\", true);\n".getBytes());
// Disable web extension process until it is able to restart.
out.write("user_pref(\"extensions.webextensions.remote\", false);\n".getBytes());
out.write("user_pref(\"media.cubeb.output_voice_routing\", false);\n)".getBytes());
int msaa = SettingsStore.getInstance(aContext).getMSAALevel();
if (msaa > 0) {
int msaaLevel = msaa == 2 ? 4 : 2;
Expand Down

0 comments on commit f6b2e98

Please sign in to comment.