Mercurial > mplayer.hg
annotate cfg-mplayer.h @ 2654:ad3a6bcad1d7
vo_format_name prototype added
author | alex |
---|---|
date | Sat, 03 Nov 2001 21:01:12 +0000 |
parents | 679d3b21bedb |
children | 98769cea155c |
rev | line source |
---|---|
147 | 1 /* |
2 * config for cfgparser | |
3 */ | |
4 | |
2647
679d3b21bedb
-playlist option patch by Panagiotis Issaris <takis@lumumba.luc.ac.be>
arpi
parents:
2643
diff
changeset
|
5 extern char *playlist_file; |
1536
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
6 |
378 | 7 #ifdef HAVE_FBDEV |
8 extern char *fb_dev_name; | |
9 extern char *fb_mode_cfgfile; | |
10 extern char *fb_mode_name; | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
445
diff
changeset
|
11 extern char *monitor_hfreq_str; |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
445
diff
changeset
|
12 extern char *monitor_vfreq_str; |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
445
diff
changeset
|
13 extern char *monitor_dotclock_str; |
378 | 14 #endif |
526 | 15 #ifdef HAVE_PNG |
16 extern int z_compression; | |
17 #endif | |
636 | 18 #ifdef HAVE_SDL |
1187 | 19 //extern char *sdl_driver; |
636 | 20 extern int sdl_noxv; |
21 extern int sdl_forcexv; | |
1187 | 22 //extern char *sdl_adriver; |
636 | 23 #endif |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
725
diff
changeset
|
24 #ifdef USE_FAKE_MONO |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
725
diff
changeset
|
25 extern int fakemono; // defined in dec_audio.c |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
725
diff
changeset
|
26 #endif |
636 | 27 |
1149
6a0f937b52e6
- new config option -lircconfig (config file for lirc)
acki2
parents:
1124
diff
changeset
|
28 #ifdef HAVE_LIRC |
6a0f937b52e6
- new config option -lircconfig (config file for lirc)
acki2
parents:
1124
diff
changeset
|
29 extern char *lirc_configfile; |
6a0f937b52e6
- new config option -lircconfig (config file for lirc)
acki2
parents:
1124
diff
changeset
|
30 #endif |
6a0f937b52e6
- new config option -lircconfig (config file for lirc)
acki2
parents:
1124
diff
changeset
|
31 |
1422 | 32 #ifndef USE_LIBVO2 |
1149
6a0f937b52e6
- new config option -lircconfig (config file for lirc)
acki2
parents:
1124
diff
changeset
|
33 extern int vo_doublebuffering; |
1267 | 34 extern int vo_fsmode; |
585 | 35 extern int vo_dbpp; |
1422 | 36 #endif |
37 | |
38 #ifdef USE_SUB | |
39 extern int sub_unicode; | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1448
diff
changeset
|
40 extern int sub_utf8; |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2053
diff
changeset
|
41 #ifdef USE_ICONV |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2053
diff
changeset
|
42 extern char *sub_cp; |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2053
diff
changeset
|
43 #endif |
1422 | 44 #endif |
45 | |
46 #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
|
47 extern int osd_level; |
1422 | 48 #endif |
378 | 49 |
1112
b1cf1087ec33
Added support for writing wave files and specifying filename to write to.
atmosfear
parents:
1038
diff
changeset
|
50 extern char *ao_outputfilename; |
b1cf1087ec33
Added support for writing wave files and specifying filename to write to.
atmosfear
parents:
1038
diff
changeset
|
51 extern int ao_pcm_waveheader; |
b1cf1087ec33
Added support for writing wave files and specifying filename to write to.
atmosfear
parents:
1038
diff
changeset
|
52 |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
799
diff
changeset
|
53 #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
|
54 extern char *mDisplayName; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
799
diff
changeset
|
55 #endif |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
799
diff
changeset
|
56 |
1518 | 57 #ifdef HAVE_AA |
1536
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
58 extern int vo_aa_parseoption(struct config * conf, char *opt, char * param); |
1518 | 59 #endif |
60 | |
1866
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1709
diff
changeset
|
61 #ifdef HAVE_NEW_GUI |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1709
diff
changeset
|
62 extern char * skinName; |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1709
diff
changeset
|
63 #endif |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1709
diff
changeset
|
64 |
2188 | 65 #ifdef HAVE_ODIVX_POSTPROCESS |
66 extern int use_old_pp; | |
67 #endif | |
68 | |
69 | |
2053 | 70 /* from libvo/aspect.c */ |
71 extern float monitor_aspect; | |
72 | |
1536
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
73 /* |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
74 * CONF_TYPE_FUNC_FULL : |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
75 * allows own implemtations for passing the params |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
76 * |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
77 * 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
|
78 * 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
|
79 * 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
|
80 * return 1 =ok, we accepted the param |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
81 * negative values: see cfgparser.h, ERR_XXX |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
82 * |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
83 * by Folke |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
84 */ |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
85 |
147 | 86 struct config conf[]={ |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
87 /* name, pointer, type, flags, min, max */ |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
88 {"include", cfg_include, CONF_TYPE_FUNC_PARAM, 0, 0, 0}, /* this must be the first!!! */ |
2616 | 89 |
90 //---------------------- libao/libvo/mplayer options ------------------------ | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
91 {"o", "Option -o has been renamed to -vo (video-out), use -vo !\n", |
153 | 92 CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
93 {"vo", &video_driver, CONF_TYPE_STRING, 0, 0, 0}, |
956
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
94 {"ao", &audio_driver, CONF_TYPE_STRING, 0, 0, 0}, |
1255
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1211
diff
changeset
|
95 // {"dsp", &dsp, CONF_TYPE_STRING, CONF_NOCFG, 0, 0}, |
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1211
diff
changeset
|
96 {"dsp", "Use -ao oss:dsp_path!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, |
460 | 97 {"mixer", &mixer_device, CONF_TYPE_STRING, 0, 0, 0}, |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1018
diff
changeset
|
98 {"master", &mixer_usemaster, CONF_TYPE_FLAG, 0, 0, 1}, |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
799
diff
changeset
|
99 #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
|
100 {"display", &mDisplayName, CONF_TYPE_STRING, 0, 0, 0}, |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
799
diff
changeset
|
101 #endif |
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
|
102 {"osdlevel", &osd_level, CONF_TYPE_INT, CONF_RANGE, 0, 2 }, |
2616 | 103 |
225 | 104 #ifdef HAVE_FBDEV |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
445
diff
changeset
|
105 {"fb", &fb_dev_name, CONF_TYPE_STRING, 0, 0, 0}, |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
445
diff
changeset
|
106 {"fbmode", &fb_mode_name, CONF_TYPE_STRING, 0, 0, 0}, |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
445
diff
changeset
|
107 {"fbmodeconfig", &fb_mode_cfgfile, CONF_TYPE_STRING, 0, 0, 0}, |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
445
diff
changeset
|
108 {"monitor_hfreq", &monitor_hfreq_str, CONF_TYPE_STRING, 0, 0, 0}, |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
445
diff
changeset
|
109 {"monitor_vfreq", &monitor_vfreq_str, CONF_TYPE_STRING, 0, 0, 0}, |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
445
diff
changeset
|
110 {"monitor_dotclock", &monitor_dotclock_str, CONF_TYPE_STRING, 0, 0, 0}, |
225 | 111 #endif |
2530 | 112 // {"encode", &encode_name, CONF_TYPE_STRING, 0, 0, 0}, |
1422 | 113 #ifdef USE_SUB |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
114 {"sub", &sub_name, CONF_TYPE_STRING, 0, 0, 0}, |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2053
diff
changeset
|
115 #ifdef USE_ICONV |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2053
diff
changeset
|
116 {"subcp", &sub_cp, CONF_TYPE_STRING, 0, 0, 0}, |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2053
diff
changeset
|
117 #endif |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
118 {"subdelay", &sub_delay, CONF_TYPE_FLOAT, 0, 0.0, 10.0}, |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
119 {"subfps", &sub_fps, CONF_TYPE_FLOAT, 0, 0.0, 10.0}, |
515 | 120 {"noautosub", &sub_auto, CONF_TYPE_FLAG, 0, 1, 0}, |
725 | 121 {"unicode", &sub_unicode, CONF_TYPE_FLAG, 0, 0, 1}, |
122 {"nounicode", &sub_unicode, CONF_TYPE_FLAG, 0, 1, 0}, | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1448
diff
changeset
|
123 {"utf8", &sub_utf8, CONF_TYPE_FLAG, 0, 0, 1}, |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1448
diff
changeset
|
124 {"noutf8", &sub_utf8, CONF_TYPE_FLAG, 0, 1, 0}, |
1422 | 125 #endif |
126 #ifdef USE_OSD | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
127 {"font", &font_name, CONF_TYPE_STRING, 0, 0, 0}, |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
128 {"ffactor", &font_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 10.0}, |
1422 | 129 #endif |
2557 | 130 // {"bg", &play_in_bg, CONF_TYPE_FLAG, 0, 0, 1}, |
131 // {"nobg", &play_in_bg, CONF_TYPE_FLAG, 0, 1, 0}, | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
132 {"sb", &seek_to_byte, CONF_TYPE_INT, CONF_MIN, 0, 0}, |
937 | 133 {"ss", &seek_to_sec, CONF_TYPE_STRING, CONF_MIN, 0, 0}, |
2436 | 134 {"sstep", &step_sec, CONF_TYPE_INT, CONF_MIN, 0, 0}, |
2365 | 135 {"loop", &loop_times, CONF_TYPE_INT, CONF_RANGE, -1, 10000}, |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
136 {"sound", &has_audio, CONF_TYPE_FLAG, 0, 0, 1}, |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
137 {"nosound", &has_audio, CONF_TYPE_FLAG, 0, 1, 0}, |
955 | 138 {"abs", &ao_buffersize, CONF_TYPE_INT, CONF_MIN, 0, 0}, |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
139 {"delay", &audio_delay, CONF_TYPE_FLOAT, CONF_RANGE, -10.0, 10.0}, |
1211 | 140 |
2616 | 141 {"alsa", "Option -alsa has been removed, new audio code doesn't need it! Remove it from your config file!\n", |
1211 | 142 CONF_TYPE_PRINT, 0, 0, 0}, |
2616 | 143 {"noalsa", "Option -noalsa has been removed, new audio code doesn't need it! Remove it from your config file!\n", |
1211 | 144 CONF_TYPE_PRINT, 0, 0, 0}, |
145 | |
798 | 146 {"framedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 0, 1}, |
147 {"hardframedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 0, 2}, | |
799 | 148 {"noframedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 1, 0}, |
1124
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1112
diff
changeset
|
149 |
2616 | 150 {"autoq", &auto_quality, CONF_TYPE_INT, CONF_RANGE, 0, 100}, |
151 | |
1124
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1112
diff
changeset
|
152 {"benchmark", &benchmark, CONF_TYPE_FLAG, 0, 0, 1}, |
798 | 153 |
549 | 154 {"dumpfile", &stream_dump_name, CONF_TYPE_STRING, 0, 0, 0}, |
155 {"dumpaudio", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 1}, | |
156 {"dumpvideo", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 2}, | |
1211 | 157 {"dumpsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 3}, |
2178 | 158 {"dumpmpsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 4}, |
159 | |
1112
b1cf1087ec33
Added support for writing wave files and specifying filename to write to.
atmosfear
parents:
1038
diff
changeset
|
160 {"aofile", &ao_outputfilename, CONF_TYPE_STRING, 0, 0, 0}, |
b1cf1087ec33
Added support for writing wave files and specifying filename to write to.
atmosfear
parents:
1038
diff
changeset
|
161 {"waveheader", &ao_pcm_waveheader, CONF_TYPE_FLAG, 0, 0, 1}, |
b1cf1087ec33
Added support for writing wave files and specifying filename to write to.
atmosfear
parents:
1038
diff
changeset
|
162 {"nowaveheader", &ao_pcm_waveheader, CONF_TYPE_FLAG, 0, 1, 0}, |
549 | 163 |
1286
543a94b241a2
Replaced LGBs video codec forcing change with mine for audio and video codecs, which is IMHO more convenient cause codecs are selected by name instead of number, one unclearity is left to me, that's why audio_format is used once before codecs selection for MPEG_PS files, that's why I left -afm in for that one.
atmos4
parents:
1285
diff
changeset
|
164 {"dshow", &allow_dshow, CONF_TYPE_FLAG, 0, 0, 1}, // Is this still needed? atmos :: |
626 | 165 {"nodshow", &allow_dshow, CONF_TYPE_FLAG, 0, 1, 0}, |
2616 | 166 |
526 | 167 #ifdef HAVE_PNG |
1328 | 168 {"z", &z_compression, CONF_TYPE_INT, CONF_RANGE, 0, 9}, |
526 | 169 #endif |
636 | 170 #ifdef HAVE_SDL |
1187 | 171 {"sdl", "Use -vo sdl:driver instead of -vo sdl -sdl driver\n", |
172 CONF_TYPE_PRINT, 0, 0, 0}, | |
636 | 173 {"noxv", &sdl_noxv, CONF_TYPE_FLAG, 0, 0, 1}, |
174 {"forcexv", &sdl_forcexv, CONF_TYPE_FLAG, 0, 0, 1}, | |
1187 | 175 {"sdla", "Use -ao sdl:driver instead of -ao sdl -sdla driver\n", |
176 CONF_TYPE_PRINT, 0, 0, 0}, | |
636 | 177 #endif |
1328 | 178 {"x", &screen_size_x, CONF_TYPE_INT, CONF_RANGE, 0, 4096}, |
179 {"y", &screen_size_y, CONF_TYPE_INT, CONF_RANGE, 0, 4096}, | |
180 {"xy", &screen_size_xy, CONF_TYPE_INT, CONF_RANGE, 0, 4096}, | |
2317
1f1880196a1c
Aspect support for vo_mga, you need to use -screenw and -screenh to set your current screen res. Untested!
atmos4
parents:
2220
diff
changeset
|
181 {"screenw", &vo_screenwidth, CONF_TYPE_INT, CONF_RANGE, 0, 4096}, |
1f1880196a1c
Aspect support for vo_mga, you need to use -screenw and -screenh to set your current screen res. Untested!
atmos4
parents:
2220
diff
changeset
|
182 {"screenh", &vo_screenheight, CONF_TYPE_INT, CONF_RANGE, 0, 4096}, |
2031
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1930
diff
changeset
|
183 {"aspect", &movie_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.2, 3.0}, |
2043 | 184 {"noaspect", &movie_aspect, CONF_TYPE_FLAG, 0, 0, 0}, |
2053 | 185 {"monitoraspect", &monitor_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.2, 3.0}, |
207
8626c23f4a47
Addes a -vm option, which when used together with -fs and -vo x11 will
mgraffam
parents:
162
diff
changeset
|
186 {"vm", &vidmode, CONF_TYPE_FLAG, 0, 0, 1}, |
337 | 187 {"novm", &vidmode, CONF_TYPE_FLAG, 0, 1, 0}, |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
188 {"fs", &fullscreen, CONF_TYPE_FLAG, 0, 0, 1}, |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
189 {"nofs", &fullscreen, CONF_TYPE_FLAG, 0, 1, 0}, |
769 | 190 {"zoom", &softzoom, CONF_TYPE_FLAG, 0, 0, 1}, |
191 {"nozoom", &softzoom, CONF_TYPE_FLAG, 0, 1, 0}, | |
777 | 192 {"flip", &flip, CONF_TYPE_FLAG, 0, -1, 1}, |
193 {"noflip", &flip, CONF_TYPE_FLAG, 0, -1, 0}, | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
194 |
1422 | 195 #ifndef USE_LIBVO2 |
388 | 196 {"bpp", &vo_dbpp, CONF_TYPE_INT, CONF_RANGE, 0, 32}, |
1414 | 197 {"fsmode", &vo_fsmode, CONF_TYPE_INT, CONF_RANGE, 0, 15}, |
1149
6a0f937b52e6
- new config option -lircconfig (config file for lirc)
acki2
parents:
1124
diff
changeset
|
198 {"double", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 0, 1}, |
6a0f937b52e6
- new config option -lircconfig (config file for lirc)
acki2
parents:
1124
diff
changeset
|
199 {"nodouble", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 1, 0}, |
1422 | 200 #endif |
201 | |
2616 | 202 #ifdef HAVE_AA |
203 {"aa*", vo_aa_parseoption, CONF_TYPE_FUNC_FULL, 0, 0, 0 }, | |
204 #endif | |
205 | |
1149
6a0f937b52e6
- new config option -lircconfig (config file for lirc)
acki2
parents:
1124
diff
changeset
|
206 #ifdef HAVE_LIRC |
6a0f937b52e6
- new config option -lircconfig (config file for lirc)
acki2
parents:
1124
diff
changeset
|
207 {"lircconf", &lirc_configfile, CONF_TYPE_STRING, 0, 0, 0}, |
6a0f937b52e6
- new config option -lircconfig (config file for lirc)
acki2
parents:
1124
diff
changeset
|
208 #endif |
1518 | 209 |
1709 | 210 {"gui", &use_gui, CONF_TYPE_FLAG, 0, 0, 1}, |
211 {"nogui", &use_gui, CONF_TYPE_FLAG, 0, 1, 0}, | |
1518 | 212 |
1866
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1709
diff
changeset
|
213 #ifdef HAVE_NEW_GUI |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1709
diff
changeset
|
214 {"skin", &skinName, CONF_TYPE_STRING, 0, 0, 0}, |
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1709
diff
changeset
|
215 #endif |
2616 | 216 |
217 #include "cfg-common.h" | |
565 | 218 |
1448 | 219 {"quiet", &quiet, CONF_TYPE_FLAG, 0, 0, 1}, |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
220 {"verbose", &verbose, CONF_TYPE_INT, CONF_RANGE, 0, 100}, |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
221 {"v", cfg_inc_verbose, CONF_TYPE_FUNC, 0, 0, 0}, |
737 | 222 {"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, |
223 {"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, | |
224 {"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, | |
2647
679d3b21bedb
-playlist option patch by Panagiotis Issaris <takis@lumumba.luc.ac.be>
arpi
parents:
2643
diff
changeset
|
225 {"playlist", &playlist_file, CONF_TYPE_STRING, 0, 0, 0}, |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
457
diff
changeset
|
226 {NULL, NULL, 0, 0, 0, 0} |
147 | 227 }; |