Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit 17760a8

Browse files
authored
✨ Enable VA-API on linux (#216)
This provides hardware video acceleration, which is a great nice to have. It should reduce powerdraw & cpu usage when watching videos.
1 parent f882981 commit 17760a8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/browser/app/profile/pulse-browser.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ pref('browser.migrate.opera.enabled', true);
1818
// Enable downloading DRM.
1919
pref('media.eme.enabled', true);
2020

21+
// Enable linux hardware video decoding. Note that this may cause a crash
22+
// on start for some linux setups, for example, those that do not have DMA-BUF
23+
// or VA-API. We should see if we can find a work around for those
24+
// crashes when they come up
25+
pref('media.ffmpeg.vaapi.enabled', true);
26+
2127
// Disable firefox's about:welcome page
2228
pref('browser.aboutwelcome.enabled', true);
2329

0 commit comments

Comments
 (0)