summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
authorjoey <joey@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-02-23 01:37:03 +0000
committerjoey <joey@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-02-23 01:37:03 +0000
commit74d0fa9d0e38ba5c2fb560d85fd446624ecd1736 (patch)
treed9dc9d491c136e67281dc2cce89cf95f3f5c6b02 /cfg-mplayer.h
parente26ad848c5b89efed131dd2f65942a5ee050f9e0 (diff)
downloadmpv-74d0fa9d0e38ba5c2fb560d85fd446624ecd1736.tar.bz2
mpv-74d0fa9d0e38ba5c2fb560d85fd446624ecd1736.tar.xz
a helpful new message about vd.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14777 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r--cfg-mplayer.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index 28928b5ddf..99b59574f5 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -127,6 +127,11 @@ extern int readPPOpt(void *conf, char *arg);
extern void revertPPOpt(void *conf, char* opt);
extern char* pp_help;
+m_option_t vd_conf[]={
+ {"help", "To avoid vd, always use MPlayer with an appropriate video file instead of a live partner.\n", CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
+ {NULL, NULL, 0, 0, 0, 0, NULL}
+};
+
/*
* CONF_TYPE_FUNC_FULL :
* allows own implementations for passing the params
@@ -406,5 +411,7 @@ m_option_t mplayer_opts[]={
{"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
{"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
{"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
+
+ {"vd", vd_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
{NULL, NULL, 0, 0, 0, 0, NULL}
};