Mercurial > mplayer.hg
annotate cfg-mplayer.h @ 31945:0e720002f853
100l, we need to search for SetDllDirectoryA instead of SetDllDirectory
author | reimar |
---|---|
date | Fri, 27 Aug 2010 19:48:39 +0000 |
parents | b6c2b541e1a6 |
children | 49848f9a8f30 |
rev | line source |
---|---|
30429
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
1 /* |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
2 * This file is part of MPlayer. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
3 * |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or modify |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
5 * it under the terms of the GNU General Public License as published by |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
6 * the Free Software Foundation; either version 2 of the License, or |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
7 * (at your option) any later version. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
8 * |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
12 * GNU General Public License for more details. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
13 * |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
14 * You should have received a copy of the GNU General Public License along |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
17 */ |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
29862
diff
changeset
|
18 |
26029 | 19 #ifndef MPLAYER_CFG_MPLAYER_H |
20 #define MPLAYER_CFG_MPLAYER_H | |
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
25361
diff
changeset
|
21 |
147 | 22 /* |
23 * config for cfgparser | |
24 */ | |
25 | |
2790 | 26 #include "cfg-common.h" |
31388 | 27 #include "gui/interface.h" |
31382
f7b0ceac5aae
Move LIRC-related extern variable declarations to lirc.h.
diego
parents:
31381
diff
changeset
|
28 #include "input/lirc.h" |
30653
3d23e24c5c60
Declare externally used variables from vd.c as extern in vd.h.
diego
parents:
30633
diff
changeset
|
29 #include "libmpcodecs/vd.h" |
31380
1c540767767e
Move menu-related extern variable declarations to menu.h.
diego
parents:
31379
diff
changeset
|
30 #include "libmenu/menu.h" |
31378
23e5b1a28984
Move force_monitor_aspect and monitor_pixel_aspect declarations to aspect.h.
diego
parents:
31369
diff
changeset
|
31 #include "libvo/aspect.h" |
31384
ec5f9f87e77b
Add #include for geometry.h instead of declaring vo_geometry variable extern.
diego
parents:
31383
diff
changeset
|
32 #include "libvo/geometry.h" |
31389
1d9bda52a78b
Add header file for externally used dxr2_opts array.
diego
parents:
31388
diff
changeset
|
33 #include "libvo/vo_dxr2.h" |
31379
82fce4fb5049
Add header file for externally used variables from vo_fbdev.c.
diego
parents:
31378
diff
changeset
|
34 #include "libvo/vo_fbdev.h" |
30593
8fccdda74db0
Add header for functions exported from vo_zr.c and use it appropriately.
diego
parents:
30592
diff
changeset
|
35 #include "libvo/vo_zr.h" |
31381
21da5b5c9842
Move extern variable declarations for mp_fifo.c to mp_fifo.h.
diego
parents:
31380
diff
changeset
|
36 #include "mp_fifo.h" |
31386
2c34afe8f37f
Add #include for unrar_exec.h instead of declaring unrar_executable extern.
diego
parents:
31385
diff
changeset
|
37 #include "unrar_exec.h" |
25361
f95cd1391ea0
Support using unrar executable to access rar-compressed vobsub files.
ulion
parents:
25233
diff
changeset
|
38 |
4017 | 39 |
25233 | 40 const m_option_t vd_conf[]={ |
31077 | 41 {"help", "Use MPlayer with an appropriate video file instead of live partners to avoid vd.\n", CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL}, |
42 {NULL, NULL, 0, 0, 0, 0, NULL} | |
14776 | 43 }; |
44 | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26810
diff
changeset
|
45 #ifdef CONFIG_TV |
25233 | 46 const m_option_t tvscan_conf[]={ |
31077 | 47 {"autostart", &stream_tv_defaults.scan, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
48 {"threshold", &stream_tv_defaults.scan_threshold, CONF_TYPE_INT, CONF_RANGE, 1, 100, NULL}, | |
49 {"period", &stream_tv_defaults.scan_period, CONF_TYPE_FLOAT, CONF_RANGE, 0.1, 2.0, NULL}, | |
50 {NULL, NULL, 0, 0, 0, 0, NULL} | |
24105
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
23877
diff
changeset
|
51 }; |
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
23877
diff
changeset
|
52 #endif |
1536
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
53 /* |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
54 * CONF_TYPE_FUNC_FULL : |
12407
574b1ed2f9a3
spelling, wording, consistency in comments and printed messages
diego
parents:
12371
diff
changeset
|
55 * allows own implementations for passing the params |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28760
diff
changeset
|
56 * |
1536
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
57 * 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
|
58 * 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
|
59 * 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
|
60 * return 1 =ok, we accepted the param |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
61 * negative values: see cfgparser.h, ERR_XXX |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
62 * |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
63 * by Folke |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
64 */ |
e89233dab4da
New feature for option processing: CONF_TYPE_FUNC_FULL
folke
parents:
1518
diff
changeset
|
65 |
25233 | 66 const m_option_t mplayer_opts[]={ |
31077 | 67 /* name, pointer, type, flags, min, max */ |
2616 | 68 |
5974 | 69 //---------------------- libao/libvo options ------------------------ |
31077 | 70 {"o", "Option -o has been renamed to -vo (video-out), use -vo.\n", |
71 CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, | |
72 {"vo", &video_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL}, | |
73 {"ao", &audio_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL}, | |
74 {"fixed-vo", &fixed_vo, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL}, | |
75 {"nofixed-vo", &fixed_vo, CONF_TYPE_FLAG,CONF_GLOBAL, 1, 0, NULL}, | |
76 {"ontop", &vo_ontop, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
77 {"noontop", &vo_ontop, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
78 {"rootwin", &vo_rootwin, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
79 {"border", &vo_border, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
80 {"noborder", &vo_border, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
5974 | 81 |
31077 | 82 {"aop", "-aop has been removed, use -af instead.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, |
83 {"dsp", "-dsp has been removed. Use -ao oss:dsp_path instead.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, | |
84 {"mixer", &mixer_device, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
85 {"mixer-channel", &mixer_channel, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
86 {"softvol", &soft_vol, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
87 {"nosoftvol", &soft_vol, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
88 {"softvol-max", &soft_vol_max, CONF_TYPE_FLOAT, CONF_RANGE, 10, 10000, NULL}, | |
89 {"volstep", &volstep, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL}, | |
90 {"volume", &start_volume, CONF_TYPE_FLOAT, CONF_RANGE, -1, 10000, NULL}, | |
91 {"master", "Option -master has been removed, use -af volume instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
92 // override audio buffer size (used only by -ao oss, anyway obsolete...) | |
93 {"abs", &ao_data.buffersize, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL}, | |
5974 | 94 |
31077 | 95 // -ao pcm options: |
96 {"aofile", "-aofile has been removed. Use -ao pcm:file=<filename> instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
97 {"waveheader", "-waveheader has been removed. Use -ao pcm:waveheader instead.\n", CONF_TYPE_PRINT, 0, 0, 1, NULL}, | |
98 {"nowaveheader", "-nowaveheader has been removed. Use -ao pcm:nowaveheader instead.\n", CONF_TYPE_PRINT, 0, 1, 0, NULL}, | |
5974 | 99 |
31077 | 100 {"alsa", "-alsa has been removed. Remove it from your config file.\n", |
101 CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
102 {"noalsa", "-noalsa has been removed. Remove it from your config file.\n", | |
103 CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
104 {"edlout", &edl_output_filename, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
31580
b6c2b541e1a6
Implement edl-backward-delay to avoid jumping right over an
reynaldo
parents:
31397
diff
changeset
|
105 {"edl-backward-delay", &edl_backward_delay, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL}, |
5974 | 106 |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27370
diff
changeset
|
107 #ifdef CONFIG_X11 |
31077 | 108 {"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
|
109 #endif |
5974 | 110 |
31077 | 111 // -vo png only: |
27385
2113bd9c6bd9
Rename preprocessor directives related to image libraries.
diego
parents:
27377
diff
changeset
|
112 #ifdef CONFIG_PNG |
31077 | 113 {"z", "-z has been removed. Use -vo png:z=<0-9> instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, |
5974 | 114 #endif |
31077 | 115 // -vo jpeg only: |
27385
2113bd9c6bd9
Rename preprocessor directives related to image libraries.
diego
parents:
27377
diff
changeset
|
116 #ifdef CONFIG_JPEG |
31077 | 117 {"jpeg", "-jpeg has been removed. Use -vo jpeg:<options> instead.\n", |
118 CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
5974 | 119 #endif |
31077 | 120 // -vo sdl only: |
121 {"sdl", "Use -vo sdl:driver=<driver> instead of -vo sdl -sdl driver.\n", | |
122 CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
123 {"noxv", "-noxv has been removed. Use -vo sdl:nohwaccel instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
124 {"forcexv", "-forcexv has been removed. Use -vo sdl:forcexv instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
125 // -ao sdl only: | |
126 {"sdla", "Use -ao sdl:driver instead of -ao sdl -sdla driver.\n", | |
127 CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
2616 | 128 |
27365
13c920fdf7f5
Change a bunch of video-output-specific preprocessor directives from a HAVE_
diego
parents:
27359
diff
changeset
|
129 #if defined(CONFIG_FBDEV) || defined(CONFIG_VESA) |
31077 | 130 {"monitor-hfreq", &monitor_hfreq_str, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
131 {"monitor-vfreq", &monitor_vfreq_str, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
132 {"monitor-dotclock", &monitor_dotclock_str, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28760
diff
changeset
|
133 #endif |
7359
7b929a5d753e
GTF update: Fixes "known parametrs" even when fbdev unused
arpi
parents:
7069
diff
changeset
|
134 |
27365
13c920fdf7f5
Change a bunch of video-output-specific preprocessor directives from a HAVE_
diego
parents:
27359
diff
changeset
|
135 #ifdef CONFIG_FBDEV |
31077 | 136 {"fbmode", &fb_mode_name, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
137 {"fbmodeconfig", &fb_mode_cfgfile, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
225 | 138 #endif |
27365
13c920fdf7f5
Change a bunch of video-output-specific preprocessor directives from a HAVE_
diego
parents:
27359
diff
changeset
|
139 #ifdef CONFIG_DIRECTFB |
8137
530d1c5f0c78
Switch containing options for DirectFB library was renamed to dfbopts.
arpi
parents:
8028
diff
changeset
|
140 #if DIRECTFBVERSION > 912 |
31077 | 141 {"dfbopts", "-dfbopts has been removed. Use -vf directfb:dfbopts=... instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, |
8137
530d1c5f0c78
Switch containing options for DirectFB library was renamed to dfbopts.
arpi
parents:
8028
diff
changeset
|
142 #endif |
530d1c5f0c78
Switch containing options for DirectFB library was renamed to dfbopts.
arpi
parents:
8028
diff
changeset
|
143 #endif |
5974 | 144 |
31077 | 145 // force window width/height or resolution (with -vm) |
146 {"x", &opt_screen_size_x, CONF_TYPE_INT, CONF_RANGE, 0, 4096, NULL}, | |
147 {"y", &opt_screen_size_y, CONF_TYPE_INT, CONF_RANGE, 0, 4096, NULL}, | |
148 // set screen dimensions (when not detectable or virtual!=visible) | |
149 {"screenw", &vo_screenwidth, CONF_TYPE_INT, CONF_RANGE|CONF_OLD, 0, 4096, NULL}, | |
150 {"screenh", &vo_screenheight, CONF_TYPE_INT, CONF_RANGE|CONF_OLD, 0, 4096, NULL}, | |
151 // Geometry string | |
152 {"geometry", &vo_geometry, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
153 // vo name (X classname) and window title strings | |
154 {"name", &vo_winname, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
155 {"title", &vo_wintitle, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
156 // set aspect ratio of monitor - useful for 16:9 TV-out | |
157 {"monitoraspect", &force_monitor_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 9.0, NULL}, | |
158 {"monitorpixelaspect", &monitor_pixel_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.2, 9.0, NULL}, | |
159 // video mode switching: (x11,xv,dga) | |
160 {"vm", &vidmode, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
161 {"novm", &vidmode, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
162 // start in fullscreen mode: | |
163 {"fs", &fullscreen, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
164 {"nofs", &fullscreen, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
165 // set fullscreen switch method (workaround for buggy WMs) | |
166 {"fsmode", "-fsmode is obsolete, avoid it and use -fstype instead.\nIf you really want it, try -fsmode-dontuse, but don't report bugs!\n", CONF_TYPE_PRINT, CONF_RANGE, 0, 31, NULL}, | |
167 {"fsmode-dontuse", &vo_fsmode, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL}, | |
168 // set bpp (x11+vm, dga, fbdev, vesa, svga?) | |
169 {"bpp", &vo_dbpp, CONF_TYPE_INT, CONF_RANGE, 0, 32, NULL}, | |
170 {"colorkey", &vo_colorkey, CONF_TYPE_INT, 0, 0, 0, NULL}, | |
171 {"nocolorkey", &vo_colorkey, CONF_TYPE_FLAG, 0, 0, 0x1000000, NULL}, | |
172 {"double", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
173 {"nodouble", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
174 // wait for v-sync (vesa) | |
175 {"vsync", &vo_vsync, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
176 {"novsync", &vo_vsync, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
177 {"panscan", &vo_panscan, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
178 {"panscanrange", &vo_panscanrange, CONF_TYPE_FLOAT, CONF_RANGE, -19.0, 99.0, NULL}, | |
5974 | 179 |
31077 | 180 {"grabpointer", &vo_grabpointer, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
181 {"nograbpointer", &vo_grabpointer, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28760
diff
changeset
|
182 |
12021
cd33d1e3b709
move refreshrate and adapter_num variables to video_out because they might be usefull for other drivers, too
faust3
parents:
12005
diff
changeset
|
183 {"adapter", &vo_adapter_num, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL}, |
cd33d1e3b709
move refreshrate and adapter_num variables to video_out because they might be usefull for other drivers, too
faust3
parents:
12005
diff
changeset
|
184 {"refreshrate",&vo_refresh_rate,CONF_TYPE_INT,CONF_RANGE, 0,100, NULL}, |
31077 | 185 {"wid", &WinID, CONF_TYPE_INT64, 0, 0, 0, NULL}, |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27370
diff
changeset
|
186 #ifdef CONFIG_X11 |
31077 | 187 // x11,xv,xmga,xvidix |
188 {"icelayer", "-icelayer has been removed. Use -fstype layer:<number> instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
189 {"stop-xscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
190 {"nostop-xscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
191 {"stop_xscreensaver", "Use -stop-xscreensaver instead, options with _ have been obsoleted.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
192 {"fstype", &vo_fstype_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL}, | |
22424
dacfc7692083
nomouseinput option should not depend on HAVE_X11.
reimar
parents:
21941
diff
changeset
|
193 #endif |
31077 | 194 {"heartbeat-cmd", &heartbeat_cmd, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
195 {"mouseinput", &vo_nomouse_input, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
196 {"nomouseinput", &vo_nomouse_input, CONF_TYPE_FLAG,0, 0, 1, NULL}, | |
12887 | 197 |
31077 | 198 {"xineramascreen", &xinerama_screen, CONF_TYPE_INT, CONF_RANGE, -2, 32, NULL}, |
5974 | 199 |
31077 | 200 {"brightness",&vo_gamma_brightness, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL}, |
201 {"saturation",&vo_gamma_saturation, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL}, | |
202 {"contrast",&vo_gamma_contrast, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL}, | |
203 {"hue",&vo_gamma_hue, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL}, | |
204 {"keepaspect", &vo_keepaspect, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
205 {"nokeepaspect", &vo_keepaspect, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
5974 | 206 |
31077 | 207 // direct rendering (decoding to video out buffer) |
208 {"dr", &vo_directrendering, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
209 {"nodr", &vo_directrendering, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
210 {"vaa_dr", "-vaa_dr has been removed, use -dr.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
211 {"vaa_nodr", "-vaa_nodr has been removed, use -nodr.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
5974 | 212 |
27365
13c920fdf7f5
Change a bunch of video-output-specific preprocessor directives from a HAVE_
diego
parents:
27359
diff
changeset
|
213 #ifdef CONFIG_AA |
31077 | 214 // -vo aa |
215 {"aa*", "-aa* has been removed. Use -vo aa:suboption instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
5974 | 216 #endif |
217 | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27365
diff
changeset
|
218 #ifdef CONFIG_ZR |
31077 | 219 // -vo zr |
220 {"zr*", vo_zr_parseoption, CONF_TYPE_FUNC_FULL, 0, 0, 0, &vo_zr_revertoption }, | |
5974 | 221 #endif |
222 | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27365
diff
changeset
|
223 #ifdef CONFIG_DXR2 |
31077 | 224 {"dxr2", &dxr2_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
7867 | 225 #endif |
226 | |
6910
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6779
diff
changeset
|
227 |
5974 | 228 //---------------------- mplayer-only options ------------------------ |
229 | |
31077 | 230 {"use-filedir-conf", &use_filedir_conf, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL}, |
231 {"nouse-filedir-conf", &use_filedir_conf, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL}, | |
232 {"use-filename-title", &use_filename_title, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL}, | |
233 {"nouse-filename-title", &use_filename_title, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL}, | |
27397
d47744b95b78
Give a CONFIG_ prefix to preprocessor directives that lacked one and
diego
parents:
27393
diff
changeset
|
234 #ifdef CONFIG_CRASH_DEBUG |
31077 | 235 {"crash-debug", &crash_debug, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL}, |
236 {"nocrash-debug", &crash_debug, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL}, | |
13794 | 237 #endif |
31077 | 238 {"osdlevel", &osd_level, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL}, |
239 {"osd-duration", &osd_duration, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL}, | |
27345
b597fd2924b4
Rename preprocessor directive HAVE_MENU --> CONFIG_MENU.
diego
parents:
27343
diff
changeset
|
240 #ifdef CONFIG_MENU |
31077 | 241 {"menu", &use_menu, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL}, |
242 {"nomenu", &use_menu, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL}, | |
243 {"menu-root", &menu_root, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL}, | |
244 {"menu-cfg", &menu_cfg, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL}, | |
245 {"menu-startup", &menu_startup, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL}, | |
246 {"menu-keepdir", &menu_keepdir, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL}, | |
247 {"menu-chroot", &menu_chroot, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
27393 | 248 #ifdef CONFIG_FRIBIDI |
31077 | 249 {"menu-fribidi-charset", &menu_fribidi_charset, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
250 {"menu-flip-hebrew", &menu_flip_hebrew, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
251 {"menu-noflip-hebrew", &menu_flip_hebrew, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
252 {"menu-flip-hebrew-commas", &menu_fribidi_flip_commas, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
253 {"menu-noflip-hebrew-commas", &menu_fribidi_flip_commas, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
27393 | 254 #endif /* CONFIG_FRIBIDI */ |
8198 | 255 #else |
31077 | 256 {"menu", "OSD menu support was not compiled in.\n", CONF_TYPE_PRINT,0, 0, 0, NULL}, |
27345
b597fd2924b4
Rename preprocessor directive HAVE_MENU --> CONFIG_MENU.
diego
parents:
27343
diff
changeset
|
257 #endif /* CONFIG_MENU */ |
5974 | 258 |
31077 | 259 // these should be moved to -common, and supported in MEncoder |
260 {"vobsub", &vobsub_name, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
261 {"vobsubid", &vobsub_id, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL}, | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26810
diff
changeset
|
262 #ifdef CONFIG_UNRAR_EXEC |
31077 | 263 {"unrarexec", &unrar_executable, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
25361
f95cd1391ea0
Support using unrar executable to access rar-compressed vobsub files.
ulion
parents:
25233
diff
changeset
|
264 #endif |
5669
391931fa79a6
enabled new OSD code in -vop expand, subtitles rendering support to mencoder
arpi
parents:
5648
diff
changeset
|
265 |
31077 | 266 {"sstep", &step_sec, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL}, |
1211 | 267 |
31077 | 268 {"framedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
269 {"hardframedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 0, 2, NULL}, | |
270 {"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
|
271 |
31077 | 272 {"autoq", &auto_quality, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL}, |
2616 | 273 |
31077 | 274 {"benchmark", &benchmark, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
5974 | 275 |
31077 | 276 // dump some stream out instead of playing the file |
277 // this really should be in MEncoder instead of MPlayer... -> TODO | |
278 {"dumpfile", &stream_dump_name, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
279 {"dumpaudio", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
280 {"dumpvideo", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 2, NULL}, | |
281 {"dumpsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 3, NULL}, | |
282 {"dumpmpsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 4, NULL}, | |
283 {"dumpstream", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 5, NULL}, | |
284 {"dumpsrtsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 6, NULL}, | |
285 {"dumpmicrodvdsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 7, NULL}, | |
286 {"dumpjacosub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 8, NULL}, | |
287 {"dumpsami", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 9, NULL}, | |
2178 | 288 |
27391
1d2faa1020fb
Rename a bunch of miscellaneous preprocessor directives.
diego
parents:
27385
diff
changeset
|
289 #ifdef CONFIG_LIRC |
31077 | 290 {"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
|
291 #endif |
1518 | 292 |
31077 | 293 {"gui", "The -gui option will only work as the first command line argument.\n", CONF_TYPE_PRINT, 0, 0, 0, (void *)1}, |
294 {"nogui", "The -nogui option will only work as the first command line argument.\n", CONF_TYPE_PRINT, 0, 0, 0, (void *)1}, | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28760
diff
changeset
|
295 |
27343 | 296 #ifdef CONFIG_GUI |
31077 | 297 {"skin", &skinName, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL}, |
298 {"enqueue", &enqueue, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
299 {"noenqueue", &enqueue, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
300 {"guiwid", &guiWinID, CONF_TYPE_INT, 0, 0, 0, NULL}, | |
1866
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1709
diff
changeset
|
301 #endif |
2616 | 302 |
31077 | 303 {"noloop", &mpctx_s.loop_times, CONF_TYPE_FLAG, 0, 0, -1, NULL}, |
304 {"loop", &mpctx_s.loop_times, CONF_TYPE_INT, CONF_RANGE, -1, 10000, NULL}, | |
305 {"playlist", NULL, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
5974 | 306 |
31077 | 307 // a-v sync stuff: |
308 {"correct-pts", &user_correct_pts, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
309 {"nocorrect-pts", &user_correct_pts, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
310 {"noautosync", &autosync, CONF_TYPE_FLAG, 0, 0, -1, NULL}, | |
311 {"autosync", &autosync, CONF_TYPE_INT, CONF_RANGE, 0, 10000, NULL}, | |
7495 | 312 |
31077 | 313 {"softsleep", &softsleep, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
5974 | 314 #ifdef HAVE_RTC |
31077 | 315 {"nortc", &nortc, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
316 {"rtc", &nortc, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
317 {"rtc-device", &rtc_device, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
5974 | 318 #endif |
2889
0d8553a47d1a
RTC support, softsleep and optional new timing code by Dap
arpi
parents:
2790
diff
changeset
|
319 |
31077 | 320 {"term-osd", &term_osd, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
321 {"noterm-osd", &term_osd, CONF_TYPE_FLAG, 0, 1, 0, NULL}, | |
322 {"term-osd-esc", &term_osd_esc, CONF_TYPE_STRING, 0, 0, 1, NULL}, | |
323 {"playing-msg", &playing_msg, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
324 |
31077 | 325 {"slave", &slave_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL}, |
326 {"idle", &player_idle_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL}, | |
327 {"noidle", &player_idle_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 1, 0, NULL}, | |
328 {"use-stdin", "-use-stdin has been renamed to -noconsolecontrols, use that instead.", CONF_TYPE_PRINT, 0, 0, 0, NULL}, | |
329 {"key-fifo-size", &key_fifo_size, CONF_TYPE_INT, CONF_RANGE, 2, 65000, NULL}, | |
330 {"noconsolecontrols", &noconsolecontrols, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL}, | |
331 {"consolecontrols", &noconsolecontrols, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL}, | |
332 {"mouse-movements", &enable_mouse_movements, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL}, | |
333 {"nomouse-movements", &enable_mouse_movements, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL}, | |
334 {"doubleclick-time", &doubleclick_time, CONF_TYPE_INT, CONF_RANGE, 0, 1000, NULL}, | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26810
diff
changeset
|
335 #ifdef CONFIG_TV |
31077 | 336 {"tvscan", tvscan_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
24105
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
23877
diff
changeset
|
337 #else |
31077 | 338 {"tvscan", "MPlayer was compiled without TV interface support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26810
diff
changeset
|
339 #endif /* CONFIG_TV */ |
3831
9926017e5efd
-rootwin option (x11/xv only, x11 doesn't work for me)
arpi
parents:
3771
diff
changeset
|
340 |
31077 | 341 {"list-properties", &list_properties, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL}, |
342 {"identify", &mp_msg_levels[MSGT_IDENTIFY], CONF_TYPE_FLAG, CONF_GLOBAL, 0, MSGL_V, NULL}, | |
343 {"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL}, | |
344 {"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL}, | |
345 {"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL}, | |
14776 | 346 |
31077 | 347 {"vd", vd_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |
348 {NULL, NULL, 0, 0, 0, 0, NULL} | |
147 | 349 }; |
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
25361
diff
changeset
|
350 |
26029 | 351 #endif /* MPLAYER_CFG_MPLAYER_H */ |