summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-09-18 15:50:24 +0200
committerwm4 <wm4@nowhere>2012-09-23 14:58:21 +0200
commit7fe56f16026d6b2440e879078f8848a5056f1da8 (patch)
treeeefc51ce3dc65e000bbc8290f50e60889c35ab7f /mplayer.c
parentf360f492d6c73197890eeb86759d417b23b52452 (diff)
downloadmpv-7fe56f16026d6b2440e879078f8848a5056f1da8.tar.bz2
mpv-7fe56f16026d6b2440e879078f8848a5056f1da8.tar.xz
options: accept "yes" and "no" only for flags
This removes the alternative values like "off", "0", "false" etc., and also the non-English versions of these. This is done for general consistency. It's better to have a single way of doing things when multiple ways don't add singificant value. Also update some choices for consistency.
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mplayer.c b/mplayer.c
index d4865831e7..d17be7c357 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -2373,7 +2373,7 @@ int reinit_video_chain(struct MPContext *mpctx)
&vf_info_ass, NULL
};
char *vf_arg[] = {
- "auto", "1", NULL
+ "auto", "yes", NULL
};
int retcode = 0;
struct vf_instance *vf_ass = vf_open_plugin_noerr(opts, libass_vfs,