diff options
author | wm4 <wm4@nowhere> | 2016-09-15 13:45:23 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2016-09-15 14:50:38 +0200 |
commit | 2b0c620b22a85d73f2b39049ed92d9300ff194d9 (patch) | |
tree | 11ce4ef28374daf6d3b5473583ac91f82597c7a2 /etc | |
parent | 98f1b5fb9859a7f19d71137a3feae5f0c6031e78 (diff) | |
download | mpv-2b0c620b22a85d73f2b39049ed92d9300ff194d9.tar.bz2 mpv-2b0c620b22a85d73f2b39049ed92d9300ff194d9.tar.xz |
player: move builtin profiles to a separate file
Move the embedded string with the builtin profiles to a separate
builtin.conf file. This makes it easier to read and edit, and you can
also check it for errors with --include=etc/builtin.conf. (Normally
errors are hidden intentionally, because there's no way to output error
messages this early, and because some options might not be present on
all platforms or with all configurations.)
Diffstat (limited to 'etc')
-rw-r--r-- | etc/builtin.conf | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/etc/builtin.conf b/etc/builtin.conf new file mode 100644 index 0000000000..08e00ef5d6 --- /dev/null +++ b/etc/builtin.conf @@ -0,0 +1,40 @@ +[pseudo-gui] +terminal=no +force-window=yes +idle=once +screenshot-directory=~~desktop/ + +[libmpv] +config=no +idle=yes +terminal=no +input-terminal=no +osc=no +ytdl=no +input-default-bindings=no +input-vo-keyboard=no +input-lirc=no +input-appleremote=no +input-media-keys=no +input-app-events=no +stop-playback-on-init-failure=yes + +[encoding] +vo=lavc +ao=lavc +keep-open=no +force-window=no +gapless-audio=yes +resume-playback=no +load-scripts=no +osc=no +framedrop=no + +[opengl-hq] +scale=spline36 +cscale=spline36 +dscale=mitchell +dither-depth=auto +correct-downscaling=yes +sigmoid-upscaling=yes +deband=yes |