annotate cfg-mplayer.h @ 8164:487cfc28525d

New config system + cleanup of header inter dependency
author albeu
date Tue, 12 Nov 2002 01:56:42 +0000
parents 530d1c5f0c78
children 1935017c0f71
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
147
0a0d7dd8fb51 new command line/config file parser
szabii
parents:
diff changeset
1 /*
0a0d7dd8fb51 new command line/config file parser
szabii
parents:
diff changeset
2 * config for cfgparser
0a0d7dd8fb51 new command line/config file parser
szabii
parents:
diff changeset
3 */
0a0d7dd8fb51 new command line/config file parser
szabii
parents:
diff changeset
4
2790
98769cea155c added tv subsystem
alex
parents: 2647
diff changeset
5 #include "cfg-common.h"
98769cea155c added tv subsystem
alex
parents: 2647
diff changeset
6
4891
30798db9527f New option use-stdin
albeu
parents: 4859
diff changeset
7 extern int use_stdin;
1536
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
8
7069
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 7019
diff changeset
9 #if defined(HAVE_FBDEV)||defined(HAVE_VESA)
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 7019
diff changeset
10 extern char *monitor_hfreq_str;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 7019
diff changeset
11 extern char *monitor_vfreq_str;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 7019
diff changeset
12 extern char *monitor_dotclock_str;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 7019
diff changeset
13 #endif
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 7019
diff changeset
14
378
6e813c134226 variables related to fbdev moved to cfg-mplayer.h
szabii
parents: 363
diff changeset
15 #ifdef HAVE_FBDEV
6e813c134226 variables related to fbdev moved to cfg-mplayer.h
szabii
parents: 363
diff changeset
16 extern char *fb_dev_name;
6e813c134226 variables related to fbdev moved to cfg-mplayer.h
szabii
parents: 363
diff changeset
17 extern char *fb_mode_cfgfile;
6e813c134226 variables related to fbdev moved to cfg-mplayer.h
szabii
parents: 363
diff changeset
18 extern char *fb_mode_name;
3275
38344371432f vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents: 3272
diff changeset
19 #else
38344371432f vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents: 3272
diff changeset
20 #ifdef HAVE_DIRECTFB
38344371432f vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents: 3272
diff changeset
21 extern char *fb_dev_name;
38344371432f vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents: 3272
diff changeset
22 #endif
378
6e813c134226 variables related to fbdev moved to cfg-mplayer.h
szabii
parents: 363
diff changeset
23 #endif
8137
530d1c5f0c78 Switch containing options for DirectFB library was renamed to dfbopts.
arpi
parents: 8028
diff changeset
24 #ifdef HAVE_DIRECTFB
530d1c5f0c78 Switch containing options for DirectFB library was renamed to dfbopts.
arpi
parents: 8028
diff changeset
25 #if DIRECTFBVERSION > 912
530d1c5f0c78 Switch containing options for DirectFB library was renamed to dfbopts.
arpi
parents: 8028
diff changeset
26 extern char *dfb_params;
530d1c5f0c78 Switch containing options for DirectFB library was renamed to dfbopts.
arpi
parents: 8028
diff changeset
27 #endif
530d1c5f0c78 Switch containing options for DirectFB library was renamed to dfbopts.
arpi
parents: 8028
diff changeset
28 #endif
526
e537bdec1ecc added png out support (-z switch)
atmosfear
parents: 515
diff changeset
29 #ifdef HAVE_PNG
e537bdec1ecc added png out support (-z switch)
atmosfear
parents: 515
diff changeset
30 extern int z_compression;
e537bdec1ecc added png out support (-z switch)
atmosfear
parents: 515
diff changeset
31 #endif
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
32 #ifdef HAVE_JPEG
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
33 extern int jpeg_baseline;
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
34 extern int jpeg_progressive_mode;
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
35 extern int jpeg_optimize;
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
36 extern int jpeg_smooth;
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
37 extern int jpeg_quality;
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
38 extern char * jpeg_outdir;
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
39 #endif
636
10c88fb49133 New switches for sdl added.
atmosfear
parents: 626
diff changeset
40 #ifdef HAVE_SDL
1187
9a8058213061 sdl_(a)driver liquidated - sorry atmos
al3x
parents: 1149
diff changeset
41 //extern char *sdl_driver;
636
10c88fb49133 New switches for sdl added.
atmosfear
parents: 626
diff changeset
42 extern int sdl_noxv;
10c88fb49133 New switches for sdl added.
atmosfear
parents: 626
diff changeset
43 extern int sdl_forcexv;
1187
9a8058213061 sdl_(a)driver liquidated - sorry atmos
al3x
parents: 1149
diff changeset
44 //extern char *sdl_adriver;
636
10c88fb49133 New switches for sdl added.
atmosfear
parents: 626
diff changeset
45 #endif
732
e14114170e01 applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents: 725
diff changeset
46 #ifdef USE_FAKE_MONO
e14114170e01 applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents: 725
diff changeset
47 extern int fakemono; // defined in dec_audio.c
e14114170e01 applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents: 725
diff changeset
48 #endif
636
10c88fb49133 New switches for sdl added.
atmosfear
parents: 626
diff changeset
49
1149
6a0f937b52e6 - new config option -lircconfig (config file for lirc)
acki2
parents: 1124
diff changeset
50 #ifdef HAVE_LIRC
6a0f937b52e6 - new config option -lircconfig (config file for lirc)
acki2
parents: 1124
diff changeset
51 extern char *lirc_configfile;
6a0f937b52e6 - new config option -lircconfig (config file for lirc)
acki2
parents: 1124
diff changeset
52 #endif
6a0f937b52e6 - new config option -lircconfig (config file for lirc)
acki2
parents: 1124
diff changeset
53
6a0f937b52e6 - new config option -lircconfig (config file for lirc)
acki2
parents: 1124
diff changeset
54 extern int vo_doublebuffering;
4667
95fa3901cafc add vsync support for doublebuffering to vo_vesa
atmos4
parents: 4494
diff changeset
55 extern int vo_vsync;
1267
ac5c8926a2d6 -fsmode
arpi
parents: 1255
diff changeset
56 extern int vo_fsmode;
585
96621b6b7f9f added: extern int vo_dbpp
arpi_esp
parents: 570
diff changeset
57 extern int vo_dbpp;
6779
c5e08b7c048c eq handling reworked
alex
parents: 6671
diff changeset
58 extern int vo_directrendering;
c5e08b7c048c eq handling reworked
alex
parents: 6671
diff changeset
59 extern int vd_use_slices;
c5e08b7c048c eq handling reworked
alex
parents: 6671
diff changeset
60 extern float vo_panscan;
c5e08b7c048c eq handling reworked
alex
parents: 6671
diff changeset
61 /* only used by startup (setting these values from configfile) */
4229
9a33ad2f3547 gamma correction support
nick
parents: 4213
diff changeset
62 extern int vo_gamma_brightness;
9a33ad2f3547 gamma correction support
nick
parents: 4213
diff changeset
63 extern int vo_gamma_saturation;
9a33ad2f3547 gamma correction support
nick
parents: 4213
diff changeset
64 extern int vo_gamma_contrast;
9a33ad2f3547 gamma correction support
nick
parents: 4213
diff changeset
65 extern int vo_gamma_hue;
7866
732a8bfc7681 Added the -geometry option (supports fbdev and tdfxfb drivers)
mark
parents: 7864
diff changeset
66 extern char *vo_geometry;
1422
d02e0dcaf077 libvo2 support
arpi
parents: 1414
diff changeset
67
7451
8669e56d2d98 some mpcodecs option declaration moved to cfg-*, as aren;t used by
arpi
parents: 7359
diff changeset
68 extern int opt_screen_size_x;
8669e56d2d98 some mpcodecs option declaration moved to cfg-*, as aren;t used by
arpi
parents: 7359
diff changeset
69 extern int opt_screen_size_y;
8669e56d2d98 some mpcodecs option declaration moved to cfg-*, as aren;t used by
arpi
parents: 7359
diff changeset
70 extern int fullscreen;
8669e56d2d98 some mpcodecs option declaration moved to cfg-*, as aren;t used by
arpi
parents: 7359
diff changeset
71 extern int vidmode;
8669e56d2d98 some mpcodecs option declaration moved to cfg-*, as aren;t used by
arpi
parents: 7359
diff changeset
72
1422
d02e0dcaf077 libvo2 support
arpi
parents: 1414
diff changeset
73 #ifdef USE_OSD
641
d161307f447a The -osdlevel switch for setting default OSD level (useful in your .config for example if you don't like watching OSD timer by default)
lgb
parents: 636
diff changeset
74 extern int osd_level;
1422
d02e0dcaf077 libvo2 support
arpi
parents: 1414
diff changeset
75 #endif
378
6e813c134226 variables related to fbdev moved to cfg-mplayer.h
szabii
parents: 363
diff changeset
76
1112
b1cf1087ec33 Added support for writing wave files and specifying filename to write to.
atmosfear
parents: 1038
diff changeset
77 extern char *ao_outputfilename;
b1cf1087ec33 Added support for writing wave files and specifying filename to write to.
atmosfear
parents: 1038
diff changeset
78 extern int ao_pcm_waveheader;
b1cf1087ec33 Added support for writing wave files and specifying filename to write to.
atmosfear
parents: 1038
diff changeset
79
922
db06ae8967eb Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents: 799
diff changeset
80 #ifdef HAVE_X11
db06ae8967eb Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents: 799
diff changeset
81 extern char *mDisplayName;
3655
18cca6a6816c Plugger patch by Sam Lin
atmos4
parents: 3631
diff changeset
82 extern int WinID;
6202
1e275c6cabb2 new layer handling code under icewm from Attila
pontscho
parents: 6065
diff changeset
83 extern int ice_layer;
6303
ad98962908ac Activating/Deactivating of XScreenSaver
arpi
parents: 6209
diff changeset
84 extern int stop_xscreensaver;
922
db06ae8967eb Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents: 799
diff changeset
85 #endif
db06ae8967eb Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents: 799
diff changeset
86
1518
e0ceb814471d vo_aa: configurable now
folke
parents: 1501
diff changeset
87 #ifdef HAVE_AA
1536
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
88 extern int vo_aa_parseoption(struct config * conf, char *opt, char * param);
4256
bbaa26821fdf Added reverting support for -aa* -zr* -pp and -npp options
albeu
parents: 4249
diff changeset
89 extern void vo_aa_revertoption(config_t* opt,char* param);
1518
e0ceb814471d vo_aa: configurable now
folke
parents: 1501
diff changeset
90 #endif
e0ceb814471d vo_aa: configurable now
folke
parents: 1501
diff changeset
91
4213
f1e1b02314ef -zr* added - patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents: 4158
diff changeset
92 #ifdef HAVE_ZR
f1e1b02314ef -zr* added - patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents: 4158
diff changeset
93 extern int vo_zr_parseoption(struct config * conf, char *opt, char * param);
4256
bbaa26821fdf Added reverting support for -aa* -zr* -pp and -npp options
albeu
parents: 4249
diff changeset
94 extern void vo_zr_revertoption(config_t* opt,char* pram);
4213
f1e1b02314ef -zr* added - patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents: 4158
diff changeset
95 #endif
f1e1b02314ef -zr* added - patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents: 4158
diff changeset
96
7867
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7866
diff changeset
97 #ifdef HAVE_DXR2
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7866
diff changeset
98 extern config_t dxr2_opts[];
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7866
diff changeset
99 #endif
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7866
diff changeset
100
6910
1a747aee653b applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents: 6779
diff changeset
101 #ifdef STREAMING_LIVE_DOT_COM
1a747aee653b applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents: 6779
diff changeset
102 extern int isSDPFile;
7664
b10d6345f2a6 Added support for RTSP stream over TCP.
bertrand
parents: 7614
diff changeset
103 extern int rtspStreamOverTCP;
6910
1a747aee653b applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents: 6779
diff changeset
104 #endif
1a747aee653b applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents: 6779
diff changeset
105
1866
32b1bb50a0e8 some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents: 1709
diff changeset
106 #ifdef HAVE_NEW_GUI
32b1bb50a0e8 some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents: 1709
diff changeset
107 extern char * skinName;
32b1bb50a0e8 some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents: 1709
diff changeset
108 #endif
32b1bb50a0e8 some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents: 1709
diff changeset
109
2188
1e6ea72b9b87 added -oldpp
arpi
parents: 2178
diff changeset
110 #ifdef HAVE_ODIVX_POSTPROCESS
1e6ea72b9b87 added -oldpp
arpi
parents: 2178
diff changeset
111 extern int use_old_pp;
1e6ea72b9b87 added -oldpp
arpi
parents: 2178
diff changeset
112 #endif
1e6ea72b9b87 added -oldpp
arpi
parents: 2178
diff changeset
113
4017
21a75ab24703 Xinerama patch number two by attila.
atmos4
parents: 3831
diff changeset
114 #ifdef HAVE_XINERAMA
21a75ab24703 Xinerama patch number two by attila.
atmos4
parents: 3831
diff changeset
115 extern int xinerama_screen;
21a75ab24703 Xinerama patch number two by attila.
atmos4
parents: 3831
diff changeset
116 #endif
21a75ab24703 Xinerama patch number two by attila.
atmos4
parents: 3831
diff changeset
117
5055
534167719e91 nortc patch by Attila Kinali
atmos4
parents: 4927
diff changeset
118 #ifdef HAVE_RTC
534167719e91 nortc patch by Attila Kinali
atmos4
parents: 4927
diff changeset
119 extern int nortc;
534167719e91 nortc patch by Attila Kinali
atmos4
parents: 4927
diff changeset
120 #endif
534167719e91 nortc patch by Attila Kinali
atmos4
parents: 4927
diff changeset
121
2053
720ca9249e4e Monitor aspect stuff.
atmos4
parents: 2043
diff changeset
122 /* from libvo/aspect.c */
720ca9249e4e Monitor aspect stuff.
atmos4
parents: 2043
diff changeset
123 extern float monitor_aspect;
720ca9249e4e Monitor aspect stuff.
atmos4
parents: 2043
diff changeset
124
7614
ce6a938aa6d3 Adding -format and -af switches
anders
parents: 7605
diff changeset
125 #include "libaf/af.h"
ce6a938aa6d3 Adding -format and -af switches
anders
parents: 7605
diff changeset
126 extern af_cfg_t af_cfg; // Audio filter configuration, defined in libmpcodecs/dec_audio.c
ce6a938aa6d3 Adding -format and -af switches
anders
parents: 7605
diff changeset
127 struct config audio_filter_conf[]={
ce6a938aa6d3 Adding -format and -af switches
anders
parents: 7605
diff changeset
128 {"list", &af_cfg.list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
7998
d48a06d07afb Adding commandline options for filters and fixing stupid bug in cfg
anders
parents: 7993
diff changeset
129 {"force", &af_cfg.force, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL},
7614
ce6a938aa6d3 Adding -format and -af switches
anders
parents: 7605
diff changeset
130 {NULL, NULL, 0, 0, 0, 0, NULL}
ce6a938aa6d3 Adding -format and -af switches
anders
parents: 7605
diff changeset
131 };
ce6a938aa6d3 Adding -format and -af switches
anders
parents: 7605
diff changeset
132
3279
d6ea11bed983 Commandline interface to ao_plugin updated according to mplayers complex parameter format and plugin pl_format finished (alpha code needs testing)
anders
parents: 3275
diff changeset
133 /* Options related to audio out plugins */
d6ea11bed983 Commandline interface to ao_plugin updated according to mplayers complex parameter format and plugin pl_format finished (alpha code needs testing)
anders
parents: 3275
diff changeset
134 struct config ao_plugin_conf[]={
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
135 {"list", &ao_plugin_cfg.plugin_list, CONF_TYPE_STRING, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
136 {"delay", &ao_plugin_cfg.pl_delay_len, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
137 {"format", &ao_plugin_cfg.pl_format_type, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
138 {"fout", &ao_plugin_cfg.pl_resample_fout, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
4859
c72b386debb4 Adding SW volume control
anders
parents: 4788
diff changeset
139 {"volume", &ao_plugin_cfg.pl_volume_volume, CONF_TYPE_INT, CONF_RANGE, 0, 255, NULL},
5306
4b32fe3758fa allow negative mul values
pl
parents: 5224
diff changeset
140 {"mul", &ao_plugin_cfg.pl_extrastereo_mul, CONF_TYPE_FLOAT, CONF_RANGE, -10.0, 10.0, NULL},
5063
be67d073f23b Added soft clipping for software volume control
anders
parents: 5055
diff changeset
141 {"softclip", &ao_plugin_cfg.pl_volume_softclip, CONF_TYPE_FLAG, 0, 0, 1, NULL},
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
142 {NULL, NULL, 0, 0, 0, 0, NULL}
3279
d6ea11bed983 Commandline interface to ao_plugin updated according to mplayers complex parameter format and plugin pl_format finished (alpha code needs testing)
anders
parents: 3275
diff changeset
143 };
d6ea11bed983 Commandline interface to ao_plugin updated according to mplayers complex parameter format and plugin pl_format finished (alpha code needs testing)
anders
parents: 3275
diff changeset
144
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
145 #ifdef HAVE_JPEG
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
146 struct config jpeg_conf[]={
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
147 {"progressiv", &jpeg_progressive_mode, CONF_TYPE_FLAG, 0, 0, 1, NULL},
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
148 {"noprogressiv", &jpeg_progressive_mode, CONF_TYPE_FLAG, 0, 1, 0, NULL},
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
149 {"baseline", &jpeg_baseline, CONF_TYPE_FLAG, 0, 0, 1, NULL},
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
150 {"nobaseline", &jpeg_baseline, CONF_TYPE_FLAG, 0, 1, 0, NULL},
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
151 {"optimize", &jpeg_optimize, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
152 {"smooth", &jpeg_smooth, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
153 {"quality", &jpeg_quality, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
154 {"outdir", &jpeg_outdir, CONF_TYPE_STRING, 0, 0, 0, NULL},
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
155 {NULL, NULL, 0, 0, 0, 0, NULL}
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
156 };
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
157 #endif
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5626
diff changeset
158
3272
7e4399d1eb65 horizontal up/downscale linear & cubic
michael
parents: 3257
diff changeset
159 extern int sws_flags;
3771
a14b3a600b81 new -pp options stuff (-npp ...)
michael
parents: 3754
diff changeset
160 extern int readPPOpt(void *conf, char *arg);
4256
bbaa26821fdf Added reverting support for -aa* -zr* -pp and -npp options
albeu
parents: 4249
diff changeset
161 extern void revertPPOpt(void *conf, char* opt);
3771
a14b3a600b81 new -pp options stuff (-npp ...)
michael
parents: 3754
diff changeset
162
3272
7e4399d1eb65 horizontal up/downscale linear & cubic
michael
parents: 3257
diff changeset
163
1536
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
164 /*
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
165 * CONF_TYPE_FUNC_FULL :
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
166 * allows own implemtations for passing the params
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
167 *
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
168 * the function receives parameter name and argument (if it does not start with - )
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
169 * useful with a conf.name like 'aa*' to parse several parameters to a function
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
170 * return 0 =ok, but we didn't need the param (could be the filename)
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
171 * return 1 =ok, we accepted the param
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
172 * negative values: see cfgparser.h, ERR_XXX
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
173 *
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
174 * by Folke
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
175 */
e89233dab4da New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents: 1518
diff changeset
176
4158
479c7828edbb GLOBAL flags and other changes for new config - patch by Alban Bedel <albeu@free.fr>
arpi
parents: 4157
diff changeset
177 static config_t mplayer_opts[]={
458
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
178 /* name, pointer, type, flags, min, max */
4158
479c7828edbb GLOBAL flags and other changes for new config - patch by Alban Bedel <albeu@free.fr>
arpi
parents: 4157
diff changeset
179 {"include", cfg_include, CONF_TYPE_FUNC_PARAM, CONF_NOSAVE, 0, 0, NULL}, /* this don't need anymore to be the first!!! */
2616
f96462d7453e common options moved out - for mencoder
arpi
parents: 2557
diff changeset
180
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
181 //---------------------- libao/libvo options ------------------------
458
49b0474b2e26 I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents: 457
diff changeset
182 {"o", "Option -o has been renamed to -vo (video-out), use -vo !\n",
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
183 CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
7562
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
184 {"vo", &video_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
185 {"ao", &audio_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
7677
33562a65e9e8 _EXPERIMENTAL_ option: -fixed-vo for libvo spec compliance testing
arpi
parents: 7664
diff changeset
186 {"fixed-vo", &fixed_vo, CONF_TYPE_FLAG, 0, 0, 1, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
187
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
188 {"aop", ao_plugin_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
7993
ea0680d87f3f Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents: 7946
diff changeset
189 {"af-adv", audio_filter_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
ea0680d87f3f Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
anders
parents: 7946
diff changeset
190 {"af", &af_cfg.list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
191 {"dsp", "Use -ao oss:dsp_path!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
192 {"mixer", &mixer_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
4859
c72b386debb4 Adding SW volume control
anders
parents: 4788
diff changeset
193 {"master", "Option -master has been removed, use -aop list=volume instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
194 // override audio buffer size (used only by -ao oss, anyway obsolete...)
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
195 {"abs", &ao_data.buffersize, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
196
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
197 // -ao pcm options:
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
198 {"aofile", &ao_outputfilename, CONF_TYPE_STRING, 0, 0, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
199 {"waveheader", &ao_pcm_waveheader, CONF_TYPE_FLAG, 0, 0, 1, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
200 {"nowaveheader", &ao_pcm_waveheader, CONF_TYPE_FLAG, 0, 1, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
201
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
202 {"alsa", "Option -alsa has been removed, new audio code doesn't need it! Remove it from your config file!\n",
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
203 CONF_TYPE_PRINT, 0, 0, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
204 {"noalsa", "Option -noalsa has been removed, new audio code doesn't need it! Remove it from your config file!\n",
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
205 CONF_TYPE_PRINT, 0, 0, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
206
922
db06ae8967eb Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents: 799
diff changeset
207 #ifdef HAVE_X11
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
208 {"display", &mDisplayName, CONF_TYPE_STRING, 0, 0, 0, NULL},
922
db06ae8967eb Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents: 799
diff changeset
209 #endif
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
210
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
211 // -vo png only:
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
212 #ifdef HAVE_PNG
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
213 {"z", &z_compression, CONF_TYPE_INT, CONF_RANGE, 0, 9, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
214 #endif
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
215 // -vo jpeg only:
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
216 #ifdef HAVE_JPEG
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
217 {"jpeg", jpeg_conf, CONF_TYPE_SUBCONFIG, 0,0,0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
218 #endif
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
219 // -vo sdl only:
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
220 #ifdef HAVE_SDL
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
221 {"sdl", "Use -vo sdl:driver instead of -vo sdl -sdl driver\n",
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
222 CONF_TYPE_PRINT, 0, 0, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
223 {"noxv", &sdl_noxv, CONF_TYPE_FLAG, 0, 0, 1, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
224 {"forcexv", &sdl_forcexv, CONF_TYPE_FLAG, 0, 0, 1, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
225 // -ao sdl only:
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
226 {"sdla", "Use -ao sdl:driver instead of -ao sdl -sdla driver\n",
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
227 CONF_TYPE_PRINT, 0, 0, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
228 #endif
2616
f96462d7453e common options moved out - for mencoder
arpi
parents: 2557
diff changeset
229
7359
7b929a5d753e GTF update: Fixes "known parametrs" even when fbdev unused
arpi
parents: 7069
diff changeset
230 #if defined(HAVE_FBDEV)||defined(HAVE_VESA)
7b929a5d753e GTF update: Fixes "known parametrs" even when fbdev unused
arpi
parents: 7069
diff changeset
231 {"monitor_hfreq", &monitor_hfreq_str, CONF_TYPE_STRING, 0, 0, 0, NULL},
7b929a5d753e GTF update: Fixes "known parametrs" even when fbdev unused
arpi
parents: 7069
diff changeset
232 {"monitor_vfreq", &monitor_vfreq_str, CONF_TYPE_STRING, 0, 0, 0, NULL},
7b929a5d753e GTF update: Fixes "known parametrs" even when fbdev unused
arpi
parents: 7069
diff changeset
233 {"monitor_dotclock", &monitor_dotclock_str, CONF_TYPE_STRING, 0, 0, 0, NULL},
7b929a5d753e GTF update: Fixes "known parametrs" even when fbdev unused
arpi
parents: 7069
diff changeset
234 #endif
7b929a5d753e GTF update: Fixes "known parametrs" even when fbdev unused
arpi
parents: 7069
diff changeset
235
225
62ec84961b27 vo_fbdev added
szabii
parents: 215
diff changeset
236 #ifdef HAVE_FBDEV
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
237 {"fb", &fb_dev_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
238 {"fbmode", &fb_mode_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
239 {"fbmodeconfig", &fb_mode_cfgfile, CONF_TYPE_STRING, 0, 0, 0, NULL},
3275
38344371432f vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents: 3272
diff changeset
240 #else
38344371432f vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents: 3272
diff changeset
241 #ifdef HAVE_DIRECTFB
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
242 {"fb", &fb_dev_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
3275
38344371432f vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents: 3272
diff changeset
243 #endif
225
62ec84961b27 vo_fbdev added
szabii
parents: 215
diff changeset
244 #endif
8137
530d1c5f0c78 Switch containing options for DirectFB library was renamed to dfbopts.
arpi
parents: 8028
diff changeset
245 #ifdef HAVE_DIRECTFB
530d1c5f0c78 Switch containing options for DirectFB library was renamed to dfbopts.
arpi
parents: 8028
diff changeset
246 #if DIRECTFBVERSION > 912
530d1c5f0c78 Switch containing options for DirectFB library was renamed to dfbopts.
arpi
parents: 8028
diff changeset
247 {"dfbopts", &dfb_params, CONF_TYPE_STRING, 0, 0, 0, NULL},
530d1c5f0c78 Switch containing options for DirectFB library was renamed to dfbopts.
arpi
parents: 8028
diff changeset
248 #endif
530d1c5f0c78 Switch containing options for DirectFB library was renamed to dfbopts.
arpi
parents: 8028
diff changeset
249 #endif
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
250
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
251 // force window width/height or resolution (with -vm)
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
252 {"x", &opt_screen_size_x, CONF_TYPE_INT, CONF_RANGE, 0, 4096, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
253 {"y", &opt_screen_size_y, CONF_TYPE_INT, CONF_RANGE, 0, 4096, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
254 // set screen dimensions (when not detectable or virtual!=visible)
8164
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents: 8137
diff changeset
255 {"screenw", &vo_screenwidth, CONF_TYPE_INT, CONF_RANGE|CONF_OLD, 0, 4096, NULL},
487cfc28525d New config system + cleanup of header inter dependency
albeu
parents: 8137
diff changeset
256 {"screenh", &vo_screenheight, CONF_TYPE_INT, CONF_RANGE|CONF_OLD, 0, 4096, NULL},
7866
732a8bfc7681 Added the -geometry option (supports fbdev and tdfxfb drivers)
mark
parents: 7864
diff changeset
257 // Geometry string
732a8bfc7681 Added the -geometry option (supports fbdev and tdfxfb drivers)
mark
parents: 7864
diff changeset
258 {"geometry", &vo_geometry, CONF_TYPE_STRING, 0, 0, 0, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
259 // set aspect ratio of monitor - usefull for 16:9 TVout
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
260 {"monitoraspect", &monitor_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.2, 3.0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
261 // video mode switching: (x11,xv,dga)
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
262 {"vm", &vidmode, CONF_TYPE_FLAG, 0, 0, 1, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
263 {"novm", &vidmode, CONF_TYPE_FLAG, 0, 1, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
264 // start in fullscreen mode:
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
265 {"fs", &fullscreen, CONF_TYPE_FLAG, 0, 0, 1, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
266 {"nofs", &fullscreen, CONF_TYPE_FLAG, 0, 1, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
267 // set fullscreen switch method (workaround for buggy WMs)
6065
1d792986b2a5 -fsmode accept 0..31 now
arpi
parents: 6021
diff changeset
268 {"fsmode", "option 'fsmode' is obsolete, avoid using it! if you really want it, try -fsmode-dontuse, but don't report bugs with this option used!", CONF_TYPE_PRINT, CONF_RANGE, 0, 31, NULL},
1d792986b2a5 -fsmode accept 0..31 now
arpi
parents: 6021
diff changeset
269 {"fsmode-dontuse", &vo_fsmode, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
270 // set bpp (x11+vm, dga, fbdev, vesa, svga?)
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
271 {"bpp", &vo_dbpp, CONF_TYPE_INT, CONF_RANGE, 0, 32, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
272 // double buffering: (mga/xmga, xv, vidix, vesa, fbdev)
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
273 {"double", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 0, 1, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
274 {"nodouble", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 1, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
275 // wait for v-sync (vesa)
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
276 {"vsync", &vo_vsync, CONF_TYPE_FLAG, 0, 0, 1, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
277 {"novsync", &vo_vsync, CONF_TYPE_FLAG, 0, 1, 0, NULL},
6304
ee65527096c2 pan&scan support with -vo xv by ?? <mplayer@svennevid.net>
arpi
parents: 6303
diff changeset
278 {"panscan", &vo_panscan, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
279
7539
56ea9db91251 -nograbpointer, based on old patch by Christian Ohm <chr.ohm@gmx.net>
arpi
parents: 7495
diff changeset
280 {"grabpointer", &vo_grabpointer, CONF_TYPE_FLAG, 0, 0, 1, NULL},
56ea9db91251 -nograbpointer, based on old patch by Christian Ohm <chr.ohm@gmx.net>
arpi
parents: 7495
diff changeset
281 {"nograbpointer", &vo_grabpointer, CONF_TYPE_FLAG, 0, 1, 0, NULL},
56ea9db91251 -nograbpointer, based on old patch by Christian Ohm <chr.ohm@gmx.net>
arpi
parents: 7495
diff changeset
282
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
283 #ifdef HAVE_X11
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
284 // x11,xv,xmga,xvidix
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
285 {"wid", &WinID, CONF_TYPE_INT, 0, 0, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
286 {"rootwin", &WinID, CONF_TYPE_FLAG, 0, -1, 0, NULL},
6202
1e275c6cabb2 new layer handling code under icewm from Attila
pontscho
parents: 6065
diff changeset
287 {"icelayer", &ice_layer, CONF_TYPE_INT, CONF_RANGE, 0, 15, NULL},
6303
ad98962908ac Activating/Deactivating of XScreenSaver
arpi
parents: 6209
diff changeset
288 {"stop_xscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 0, 1, NULL},
ad98962908ac Activating/Deactivating of XScreenSaver
arpi
parents: 6209
diff changeset
289 {"nostop_xscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 1, 0, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
290 #endif
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
291
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
292 #ifdef HAVE_XINERAMA
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
293 {"xineramascreen", &xinerama_screen, CONF_TYPE_INT, CONF_RANGE, 0, 32, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
294 #endif
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
295
6779
c5e08b7c048c eq handling reworked
alex
parents: 6671
diff changeset
296 {"brightness",&vo_gamma_brightness, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
c5e08b7c048c eq handling reworked
alex
parents: 6671
diff changeset
297 {"saturation",&vo_gamma_saturation, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
c5e08b7c048c eq handling reworked
alex
parents: 6671
diff changeset
298 {"contrast",&vo_gamma_contrast, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
c5e08b7c048c eq handling reworked
alex
parents: 6671
diff changeset
299 {"hue",&vo_gamma_hue, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
300
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
301 // direct rendering (decoding to video out buffer)
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
302 {"dr", &vo_directrendering, CONF_TYPE_FLAG, 0, 0, 1, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
303 {"nodr", &vo_directrendering, CONF_TYPE_FLAG, 0, 1, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
304 {"vaa_dr", "Use -dr, -vaa_dr was obsoleted\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
305 {"vaa_nodr", "Use -nodr, -vaa_nodr was obsoleted\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
306
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
307 // draw by slices or whole frame (usefull with libmpeg2/libavcodec)
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
308 {"slices", &vd_use_slices, CONF_TYPE_FLAG, 0, 0, 1, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
309 {"noslices", &vd_use_slices, CONF_TYPE_FLAG, 0, 1, 0, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
310
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
311 #ifdef HAVE_AA
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
312 // -vo aa
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
313 {"aa*", vo_aa_parseoption, CONF_TYPE_FUNC_FULL, 0, 0, 0 , &vo_aa_revertoption},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
314 #endif
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
315
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
316 #ifdef HAVE_ZR
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
317 // -vo zr
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
318 {"zr*", vo_zr_parseoption, CONF_TYPE_FUNC_FULL, 0, 0, 0, &vo_zr_revertoption },
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
319 #endif
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
320
7867
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7866
diff changeset
321 #ifdef HAVE_DXR2
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7866
diff changeset
322 {"dxr2", &dxr2_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7866
diff changeset
323 #endif
3dc0b71630ff cleanup config option handling in libmpdemux.
arpi
parents: 7866
diff changeset
324
6910
1a747aee653b applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents: 6779
diff changeset
325 #ifdef STREAMING_LIVE_DOT_COM
1a747aee653b applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents: 6779
diff changeset
326 // -sdp option, specifying that the source is a SDP file
1a747aee653b applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents: 6779
diff changeset
327 {"sdp", &isSDPFile, CONF_TYPE_FLAG, 0, 0, 1, NULL},
7664
b10d6345f2a6 Added support for RTSP stream over TCP.
bertrand
parents: 7614
diff changeset
328 // -rtsp-stream-over-tcp option, specifying TCP streaming of RTP/RTCP
b10d6345f2a6 Added support for RTSP stream over TCP.
bertrand
parents: 7614
diff changeset
329 {"rtsp-stream-over-tcp", &rtspStreamOverTCP, CONF_TYPE_FLAG, 0, 0, 1, NULL},
6910
1a747aee653b applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents: 6779
diff changeset
330 #else
7664
b10d6345f2a6 Added support for RTSP stream over TCP.
bertrand
parents: 7614
diff changeset
331 {"sdp", "SDP file support requires the \"LIVE.COM Streaming Media\" libraries!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
b10d6345f2a6 Added support for RTSP stream over TCP.
bertrand
parents: 7614
diff changeset
332 {"rtsp-stream-over-tcp", "RTSP support requires the \"LIVE.COM Streaming Media\" libraries!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
6910
1a747aee653b applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents: 6779
diff changeset
333 #endif
1a747aee653b applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents: 6779
diff changeset
334
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
335 //---------------------- mplayer-only options ------------------------
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
336
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
337 {"osdlevel", &osd_level, CONF_TYPE_INT, CONF_RANGE, 0, 2 , NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
338
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
339 // these should be moved to -common, and suppot in mencoder too
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
340 {"vobsub", &vobsub_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
341 {"vobsubid", &vobsub_id, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},
5669
391931fa79a6 enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents: 5648
diff changeset
342
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
343 {"sstep", &step_sec, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
1211
e21c61b2313e alsa/noalsa message
arpi_esp
parents: 1187
diff changeset
344
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
345 // set a-v distance, should be moved to -common and support in mencoder
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
346 {"delay", &audio_delay, CONF_TYPE_FLOAT, CONF_RANGE, -100.0, 100.0, NULL},
1211
e21c61b2313e alsa/noalsa message
arpi_esp
parents: 1187
diff changeset
347
7605
c3bbe602aff3 new option -speed, to set playback speed rate (examples: -speed 1:3 or -speed 5)
arpi
parents: 7604
diff changeset
348 {"speed", &playback_speed, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 100.0, NULL},
c3bbe602aff3 new option -speed, to set playback speed rate (examples: -speed 1:3 or -speed 5)
arpi
parents: 7604
diff changeset
349
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
350 {"framedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 0, 1, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
351 {"hardframedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 0, 2, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
352 {"noframedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 1, 0, NULL},
1124
0e95f30ffd4c -frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents: 1112
diff changeset
353
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
354 {"autoq", &auto_quality, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
2616
f96462d7453e common options moved out - for mencoder
arpi
parents: 2557
diff changeset
355
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
356 {"benchmark", &benchmark, CONF_TYPE_FLAG, 0, 0, 1, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
357
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
358 // dump some stream out instead of playing the file
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
359 // this really should be in mencoder instead of mplayer... -> TODO
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
360 {"dumpfile", &stream_dump_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
361 {"dumpaudio", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 1, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
362 {"dumpvideo", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 2, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
363 {"dumpsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 3, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
364 {"dumpmpsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 4, NULL},
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
365 {"dumpstream", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 5, NULL},
6209
e46b3bf16df5 added -dumpsrtsub option for SubRip format
iive
parents: 6202
diff changeset
366 {"dumpsrtsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 6, NULL},
7460
fdf31bb0450f New option for mplayer: -dumpmicrodvdsub
kmkaplan
parents: 7451
diff changeset
367 {"dumpmicrodvdsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 7, NULL},
2178
e509abdbf195 MPsub read/write support 0.5 (-dumpmpsub switch)
laaz
parents: 2151
diff changeset
368
1149
6a0f937b52e6 - new config option -lircconfig (config file for lirc)
acki2
parents: 1124
diff changeset
369 #ifdef HAVE_LIRC
7946
f483ab704252 postprocessing cleanup:
michael
parents: 7867
diff changeset
370 {"lircconf", &lirc_configfile, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
1149
6a0f937b52e6 - new config option -lircconfig (config file for lirc)
acki2
parents: 1124
diff changeset
371 #endif
1518
e0ceb814471d vo_aa: configurable now
folke
parents: 1501
diff changeset
372
7019
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 6910
diff changeset
373 {"gui", &use_gui, CONF_TYPE_FLAG, CONF_GLOBAL|CONF_NOCMD, 0, 1, NULL},
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 6910
diff changeset
374 // {"nogui", &use_gui, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
1518
e0ceb814471d vo_aa: configurable now
folke
parents: 1501
diff changeset
375
1866
32b1bb50a0e8 some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents: 1709
diff changeset
376 #ifdef HAVE_NEW_GUI
4158
479c7828edbb GLOBAL flags and other changes for new config - patch by Alban Bedel <albeu@free.fr>
arpi
parents: 4157
diff changeset
377 {"skin", &skinName, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
1866
32b1bb50a0e8 some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents: 1709
diff changeset
378 #endif
2616
f96462d7453e common options moved out - for mencoder
arpi
parents: 2557
diff changeset
379
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
380 {"noloop", &loop_times, CONF_TYPE_FLAG, 0, 0, -1, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
381 {"loop", &loop_times, CONF_TYPE_INT, CONF_RANGE, -1, 10000, NULL},
4158
479c7828edbb GLOBAL flags and other changes for new config - patch by Alban Bedel <albeu@free.fr>
arpi
parents: 4157
diff changeset
382 {"playlist", NULL, CONF_TYPE_STRING, 0, 0, 0, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
383
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
384 // a-v sync stuff:
7576
c135f7646036 new opt: -autosync, controls ao->get_delay() smoothing (default: disabled)
arpi
parents: 7562
diff changeset
385 {"noautosync", &autosync, CONF_TYPE_FLAG, 0, 0, -1, NULL},
c135f7646036 new opt: -autosync, controls ao->get_delay() smoothing (default: disabled)
arpi
parents: 7562
diff changeset
386 {"autosync", &autosync, CONF_TYPE_INT, CONF_RANGE, 0, 10000, NULL},
7495
12b2c735ad07 removed -dapsync (obsolete code)
arpi
parents: 7460
diff changeset
387 // {"dapsync", &dapsync, CONF_TYPE_FLAG, 0, 0, 1, NULL},
12b2c735ad07 removed -dapsync (obsolete code)
arpi
parents: 7460
diff changeset
388 // {"nodapsync", &dapsync, CONF_TYPE_FLAG, 0, 1, 0, NULL},
12b2c735ad07 removed -dapsync (obsolete code)
arpi
parents: 7460
diff changeset
389
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
390 {"softsleep", &softsleep, CONF_TYPE_FLAG, 0, 0, 1, NULL},
5974
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
391 #ifdef HAVE_RTC
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
392 {"nortc", &nortc, CONF_TYPE_FLAG, 0, 0, 1, NULL},
4396ead317d3 re-ordering options, add comemnts
arpi
parents: 5904
diff changeset
393 #endif
2889
0d8553a47d1a RTC support, softsleep and optional new timing code by Dap
arpi
parents: 2790
diff changeset
394
4158
479c7828edbb GLOBAL flags and other changes for new config - patch by Alban Bedel <albeu@free.fr>
arpi
parents: 4157
diff changeset
395 {"slave", &slave_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL},
4891
30798db9527f New option use-stdin
albeu
parents: 4859
diff changeset
396 {"use-stdin", &use_stdin, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
3831
9926017e5efd -rootwin option (x11/xv only, x11 doesn't work for me)
arpi
parents: 3771
diff changeset
397
2790
98769cea155c added tv subsystem
alex
parents: 2647
diff changeset
398 #define MAIN_CONF
2616
f96462d7453e common options moved out - for mencoder
arpi
parents: 2557
diff changeset
399 #include "cfg-common.h"
2790
98769cea155c added tv subsystem
alex
parents: 2647
diff changeset
400 #undef MAIN_CONF
565
6e747808386e changed behavior or -idx/-noidx
arpi_esp
parents: 552
diff changeset
401
7864
dacc35bc92c7 add -identify switch
ranma
parents: 7677
diff changeset
402 {"identify", &identify, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
4158
479c7828edbb GLOBAL flags and other changes for new config - patch by Alban Bedel <albeu@free.fr>
arpi
parents: 4157
diff changeset
403 {"quiet", &quiet, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
4446
d2808c58e633 added -noquiet option to complement -quiet (request/patch by Alexander Werth)
rfelker
parents: 4355
diff changeset
404 {"noquiet", &quiet, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
8028
c06fa0b05c1c -really-quiet
arpi
parents: 7998
diff changeset
405 {"really-quiet", &verbose, CONF_TYPE_FLAG, CONF_GLOBAL, 0, -10, NULL},
4158
479c7828edbb GLOBAL flags and other changes for new config - patch by Alban Bedel <albeu@free.fr>
arpi
parents: 4157
diff changeset
406 {"verbose", &verbose, CONF_TYPE_INT, CONF_RANGE|CONF_GLOBAL, 0, 100, NULL},
479c7828edbb GLOBAL flags and other changes for new config - patch by Alban Bedel <albeu@free.fr>
arpi
parents: 4157
diff changeset
407 {"v", cfg_inc_verbose, CONF_TYPE_FUNC, CONF_GLOBAL|CONF_NOSAVE, 0, 0, NULL},
479c7828edbb GLOBAL flags and other changes for new config - patch by Alban Bedel <albeu@free.fr>
arpi
parents: 4157
diff changeset
408 {"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
479c7828edbb GLOBAL flags and other changes for new config - patch by Alban Bedel <albeu@free.fr>
arpi
parents: 4157
diff changeset
409 {"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
479c7828edbb GLOBAL flags and other changes for new config - patch by Alban Bedel <albeu@free.fr>
arpi
parents: 4157
diff changeset
410 {"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
4157
9ff9f6ce6799 extra NULL field appended
arpi
parents: 4080
diff changeset
411 {NULL, NULL, 0, 0, 0, 0, NULL}
147
0a0d7dd8fb51 new command line/config file parser
szabii
parents:
diff changeset
412 };