1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-03 13:41:49 +00:00

Duplicate -include option moved to cfg-common.h.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11923 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2004-02-05 17:08:55 +00:00
parent 9094281ecf
commit e4b10f79fd
3 changed files with 2 additions and 3 deletions

View File

@ -1,10 +1,11 @@
#ifdef MAIN_CONF /* this will be included in conf[] */
// ------------------------- common optionss --------------------
// ------------------------- common options --------------------
{"quiet", &quiet, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
{"noquiet", &quiet, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, 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},
{"include", cfg_include, CONF_TYPE_FUNC_PARAM, CONF_NOSAVE, 0, 0, NULL},
// ------------------------- stream options --------------------

View File

@ -162,7 +162,6 @@ m_option_t of_conf[]={
m_option_t mencoder_opts[]={
/* name, pointer, type, flags, min, max */
{"include", cfg_include, CONF_TYPE_FUNC_PARAM, CONF_NOSAVE, 0, 0, NULL}, /* this must be the first!!! */
{"endpos", parse_end_at, CONF_TYPE_FUNC_PARAM, 0, 0, 0, NULL},

View File

@ -173,7 +173,6 @@ extern char* pp_help;
m_option_t mplayer_opts[]={
/* name, pointer, type, flags, min, max */
{"include", cfg_include, CONF_TYPE_FUNC_PARAM, CONF_NOSAVE, 0, 0, NULL}, /* this don't need anymore to be the first!!! */
//---------------------- libao/libvo options ------------------------
{"o", "Option -o has been renamed to -vo (video-out), use -vo !\n",