comparison cfg-mencoder.h @ 2618:47a338888698

mencoder commandline handling
author arpi
date Fri, 02 Nov 2001 01:25:13 +0000
parents
children da9777831e1b
comparison
equal deleted inserted replaced
2617:b97a9e3fdb63 2618:47a338888698
1 /*
2 * config for cfgparser
3 */
4
5 #ifdef USE_FAKE_MONO
6 extern int fakemono; // defined in dec_audio.c
7 #endif
8 #ifdef HAVE_ODIVX_POSTPROCESS
9 extern int use_old_pp;
10 #endif
11
12 struct config conf[]={
13 /* name, pointer, type, flags, min, max */
14 {"include", cfg_include, CONF_TYPE_FUNC_PARAM, 0, 0, 0}, /* this must be the first!!! */
15
16
17 #include "cfg-common.h"
18
19 // {"quiet", &quiet, CONF_TYPE_FLAG, 0, 0, 1},
20 {"verbose", &verbose, CONF_TYPE_INT, CONF_RANGE, 0, 100},
21 {"v", cfg_inc_verbose, CONF_TYPE_FUNC, 0, 0, 0},
22 // {"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
23 // {"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
24 // {"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
25 {NULL, NULL, 0, 0, 0, 0}
26 };