summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-02-05 17:58:14 +0100
committerwm4 <wm4@nowhere>2016-02-05 18:05:38 +0100
commit1aa2ae5404d134815eddcb3f146a9c1f8bbfc2e9 (patch)
tree7dbd2ea26246c8ff11d7597b73f7d3f6a97e46f5 /player
parent2b58738545bdf86177515c6776ac9c36c2a742fb (diff)
downloadmpv-1aa2ae5404d134815eddcb3f146a9c1f8bbfc2e9.tar.bz2
mpv-1aa2ae5404d134815eddcb3f146a9c1f8bbfc2e9.tar.xz
options: set fs=yes by default on RPI, and change RPI defaults handling
The main reason for changing the fullscreen default is that not doing it would change the vo_rpi default behavior with the previous commit.
Diffstat (limited to 'player')
-rw-r--r--player/main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/player/main.c b/player/main.c
index 046d41c6b2..70176f2d35 100644
--- a/player/main.c
+++ b/player/main.c
@@ -97,6 +97,11 @@ const char mp_help_text[] =
"\n";
static const char def_config[] =
+#if HAVE_RPI
+ "hwdec=rpi\n"
+ "fullscreen=yes\n"
+#endif
+ "\n"
"[pseudo-gui]\n"
"terminal=no\n"
"force-window=yes\n"