mirror of
https://github.com/mpv-player/mpv
synced 2024-12-23 23:32:26 +00:00
Make -really-quiet a common option.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17176 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
a8235fce3f
commit
1e255f168e
@ -570,6 +570,10 @@ Using realtime priority can cause system lockup.
|
||||
.RE
|
||||
.
|
||||
.TP
|
||||
.B \-really-quiet (also see \-quiet)
|
||||
Display even less output and status messages than with \-quiet.
|
||||
.
|
||||
.TP
|
||||
.B \-v\ \ \ \ \
|
||||
Increment verbosity level, one level for each \-v
|
||||
found on the command line.
|
||||
@ -807,10 +811,6 @@ only to the elements of this playlist.
|
||||
FIXME: This needs to be clarified and documented thoroughly.
|
||||
.
|
||||
.TP
|
||||
.B \-really-quiet (also see \-quiet)
|
||||
Display even less output and status messages than with \-quiet.
|
||||
.
|
||||
.TP
|
||||
.B \-rtc-device <device>
|
||||
Use the specified device for RTC timing.
|
||||
.
|
||||
|
@ -3,6 +3,7 @@
|
||||
// ------------------------- common options --------------------
|
||||
{"quiet", &quiet, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
|
||||
{"noquiet", &quiet, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
|
||||
{"really-quiet", &verbose, CONF_TYPE_FLAG, CONF_GLOBAL, 0, -10, NULL},
|
||||
{"verbose", &verbose, CONF_TYPE_INT, CONF_RANGE|CONF_GLOBAL, 0, 100, NULL},
|
||||
{"v", cfg_inc_verbose, CONF_TYPE_FUNC, CONF_GLOBAL|CONF_NOSAVE, 0, 0, NULL},
|
||||
{"msglevel", msgl_config, CONF_TYPE_SUBCONFIG, CONF_GLOBAL, 0, 0, NULL},
|
||||
|
@ -394,7 +394,6 @@ m_option_t mplayer_opts[]={
|
||||
#undef MAIN_CONF
|
||||
|
||||
{"identify", &identify, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
|
||||
{"really-quiet", &verbose, CONF_TYPE_FLAG, CONF_GLOBAL, 0, -10, NULL},
|
||||
{"-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},
|
||||
|
Loading…
Reference in New Issue
Block a user