diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-09-14 02:17:04 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-09-14 02:17:04 +0200 |
commit | 8c8e0fceedfe66bb2d5c07257514cbc64596bb3c (patch) | |
tree | ac8f03eb4af8b64266e671a36a2e0ff5674278c5 | |
parent | 83c7b22eba0c992b30b1a100662cbc260dc974d9 (diff) |
Fallback to software video playback if the system doesn't support hardware accelerated video playback
-rw-r--r-- | src/VideoPlayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VideoPlayer.cpp b/src/VideoPlayer.cpp index 1f25b8b..8d57f62 100644 --- a/src/VideoPlayer.cpp +++ b/src/VideoPlayer.cpp @@ -89,7 +89,7 @@ namespace QuickMedia { args.insert(args.end(), { "--no-config", /*"--demuxer-max-bytes=40M", "--demuxer-max-back-bytes=20M",*/ "--profile=gpu-hq", - "--vo=gpu", + "--vo=gpu,vdpau,x11", "--hwdec=auto" }); } |