[MPlayer-dev-eng] duplicate options -input and -verbose?

Diego Biurrun diego at biurrun.de
Thu Jun 5 13:32:42 CEST 2003


Hi!

I think I found two options that are duplicated while looking for
undocumented options:

cfg-mplayer.h:

  {"include", cfg_include, CONF_TYPE_FUNC_PARAM, CONF_NOSAVE, 0, 0, NULL}, /* this don't need anymore to be the first!!! */

  {"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},


cfg-mencoder.h:

  {"include", cfg_include, CONF_TYPE_FUNC_PARAM, CONF_NOSAVE, 0, 0, NULL}, /* this must be the first!!! */

  {"verbose", &verbose, CONF_TYPE_INT, CONF_RANGE|CONF_GLOBAL, 0, 100, NULL},
  {"v", cfg_inc_verbose, CONF_TYPE_FUNC, CONF_GLOBAL, 0, 0, NULL},


As far as I can tell these two are equivalent, aren't they?  Don't
they belong in cfg-common.h then?

Diego



More information about the MPlayer-dev-eng mailing list