Fix subtitle display for http://samples.mplayerhq.hu/sub/largeres_vobsub.mkv
[mplayer/glamo.git] / cfg-mplayer.h
blob85b65bc135935be1d74fc84b36e17f216f171d20
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #ifndef MPLAYER_CFG_MPLAYER_H
20 #define MPLAYER_CFG_MPLAYER_H
23 * config for cfgparser
26 #include "cfg-common.h"
27 #include "libmpcodecs/vd.h"
28 #include "libmpdemux/demux_ts.h"
29 #include "libvo/vo_zr.h"
31 extern int key_fifo_size;
32 extern unsigned doubleclick_time;
34 extern char *fb_mode_cfgfile;
35 extern char *fb_mode_name;
36 extern char *dfb_params;
38 extern char *lirc_configfile;
40 extern float vo_panscanrange;
41 /* only used at startup (setting these values from configfile) */
42 extern char *vo_geometry;
44 extern char *ao_outputfilename;
45 extern int ao_pcm_waveheader;
47 extern int fs_layer;
48 extern int stop_xscreensaver;
50 extern int menu_startup;
51 extern int menu_keepdir;
52 extern char *menu_chroot;
53 extern char *menu_fribidi_charset;
54 extern int menu_flip_hebrew;
55 extern int menu_fribidi_flip_commas;
57 extern char *unrar_executable;
59 extern const m_option_t dxr2_opts[];
61 extern char * skinName;
62 extern int guiWinID;
65 /* from libvo/aspect.c */
66 extern float force_monitor_aspect;
67 extern float monitor_pixel_aspect;
69 extern int sws_flags;
70 extern char* pp_help;
72 const m_option_t vd_conf[]={
73 {"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},
74 {NULL, NULL, 0, 0, 0, 0, NULL}
77 #ifdef CONFIG_TV
78 const m_option_t tvscan_conf[]={
79 {"autostart", &stream_tv_defaults.scan, CONF_TYPE_FLAG, 0, 0, 1, NULL},
80 {"threshold", &stream_tv_defaults.scan_threshold, CONF_TYPE_INT, CONF_RANGE, 1, 100, NULL},
81 {"period", &stream_tv_defaults.scan_period, CONF_TYPE_FLOAT, CONF_RANGE, 0.1, 2.0, NULL},
82 {NULL, NULL, 0, 0, 0, 0, NULL}
84 #endif
86 * CONF_TYPE_FUNC_FULL :
87 * allows own implementations for passing the params
89 * the function receives parameter name and argument (if it does not start with - )
90 * useful with a conf.name like 'aa*' to parse several parameters to a function
91 * return 0 =ok, but we didn't need the param (could be the filename)
92 * return 1 =ok, we accepted the param
93 * negative values: see cfgparser.h, ERR_XXX
95 * by Folke
98 const m_option_t mplayer_opts[]={
99 /* name, pointer, type, flags, min, max */
101 //---------------------- libao/libvo options ------------------------
102 {"o", "Option -o has been renamed to -vo (video-out), use -vo.\n",
103 CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
104 {"vo", &video_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
105 {"ao", &audio_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
106 {"fixed-vo", &fixed_vo, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL},
107 {"nofixed-vo", &fixed_vo, CONF_TYPE_FLAG,CONF_GLOBAL, 1, 0, NULL},
108 {"ontop", &vo_ontop, CONF_TYPE_FLAG, 0, 0, 1, NULL},
109 {"noontop", &vo_ontop, CONF_TYPE_FLAG, 0, 1, 0, NULL},
110 {"rootwin", &vo_rootwin, CONF_TYPE_FLAG, 0, 0, 1, NULL},
111 {"border", &vo_border, CONF_TYPE_FLAG, 0, 0, 1, NULL},
112 {"noborder", &vo_border, CONF_TYPE_FLAG, 0, 1, 0, NULL},
114 {"aop", "-aop has been removed, use -af instead.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
115 {"dsp", "-dsp has been removed. Use -ao oss:dsp_path instead.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
116 {"mixer", &mixer_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
117 {"mixer-channel", &mixer_channel, CONF_TYPE_STRING, 0, 0, 0, NULL},
118 {"softvol", &soft_vol, CONF_TYPE_FLAG, 0, 0, 1, NULL},
119 {"nosoftvol", &soft_vol, CONF_TYPE_FLAG, 0, 1, 0, NULL},
120 {"softvol-max", &soft_vol_max, CONF_TYPE_FLOAT, CONF_RANGE, 10, 10000, NULL},
121 {"volstep", &volstep, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
122 {"volume", &start_volume, CONF_TYPE_FLOAT, CONF_RANGE, -1, 10000, NULL},
123 {"master", "Option -master has been removed, use -af volume instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
124 // override audio buffer size (used only by -ao oss, anyway obsolete...)
125 {"abs", &ao_data.buffersize, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
127 // -ao pcm options:
128 {"aofile", "-aofile has been removed. Use -ao pcm:file=<filename> instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
129 {"waveheader", "-waveheader has been removed. Use -ao pcm:waveheader instead.\n", CONF_TYPE_PRINT, 0, 0, 1, NULL},
130 {"nowaveheader", "-nowaveheader has been removed. Use -ao pcm:nowaveheader instead.\n", CONF_TYPE_PRINT, 0, 1, 0, NULL},
132 {"alsa", "-alsa has been removed. Remove it from your config file.\n",
133 CONF_TYPE_PRINT, 0, 0, 0, NULL},
134 {"noalsa", "-noalsa has been removed. Remove it from your config file.\n",
135 CONF_TYPE_PRINT, 0, 0, 0, NULL},
136 {"edlout", &edl_output_filename, CONF_TYPE_STRING, 0, 0, 0, NULL},
138 #ifdef CONFIG_X11
139 {"display", &mDisplayName, CONF_TYPE_STRING, 0, 0, 0, NULL},
140 #endif
142 // -vo png only:
143 #ifdef CONFIG_PNG
144 {"z", "-z has been removed. Use -vo png:z=<0-9> instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
145 #endif
146 // -vo jpeg only:
147 #ifdef CONFIG_JPEG
148 {"jpeg", "-jpeg has been removed. Use -vo jpeg:<options> instead.\n",
149 CONF_TYPE_PRINT, 0, 0, 0, NULL},
150 #endif
151 // -vo sdl only:
152 {"sdl", "Use -vo sdl:driver=<driver> instead of -vo sdl -sdl driver.\n",
153 CONF_TYPE_PRINT, 0, 0, 0, NULL},
154 {"noxv", "-noxv has been removed. Use -vo sdl:nohwaccel instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
155 {"forcexv", "-forcexv has been removed. Use -vo sdl:forcexv instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
156 // -ao sdl only:
157 {"sdla", "Use -ao sdl:driver instead of -ao sdl -sdla driver.\n",
158 CONF_TYPE_PRINT, 0, 0, 0, NULL},
160 #if defined(CONFIG_FBDEV) || defined(CONFIG_VESA)
161 {"monitor-hfreq", &monitor_hfreq_str, CONF_TYPE_STRING, 0, 0, 0, NULL},
162 {"monitor-vfreq", &monitor_vfreq_str, CONF_TYPE_STRING, 0, 0, 0, NULL},
163 {"monitor-dotclock", &monitor_dotclock_str, CONF_TYPE_STRING, 0, 0, 0, NULL},
164 #endif
166 #ifdef CONFIG_FBDEV
167 {"fbmode", &fb_mode_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
168 {"fbmodeconfig", &fb_mode_cfgfile, CONF_TYPE_STRING, 0, 0, 0, NULL},
169 #endif
170 #ifdef CONFIG_DIRECTFB
171 #if DIRECTFBVERSION > 912
172 {"dfbopts", "-dfbopts has been removed. Use -vf directfb:dfbopts=... instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
173 #endif
174 #endif
176 // force window width/height or resolution (with -vm)
177 {"x", &opt_screen_size_x, CONF_TYPE_INT, CONF_RANGE, 0, 4096, NULL},
178 {"y", &opt_screen_size_y, CONF_TYPE_INT, CONF_RANGE, 0, 4096, NULL},
179 // set screen dimensions (when not detectable or virtual!=visible)
180 {"screenw", &vo_screenwidth, CONF_TYPE_INT, CONF_RANGE|CONF_OLD, 0, 4096, NULL},
181 {"screenh", &vo_screenheight, CONF_TYPE_INT, CONF_RANGE|CONF_OLD, 0, 4096, NULL},
182 // Geometry string
183 {"geometry", &vo_geometry, CONF_TYPE_STRING, 0, 0, 0, NULL},
184 // vo name (X classname) and window title strings
185 {"name", &vo_winname, CONF_TYPE_STRING, 0, 0, 0, NULL},
186 {"title", &vo_wintitle, CONF_TYPE_STRING, 0, 0, 0, NULL},
187 // set aspect ratio of monitor - useful for 16:9 TV-out
188 {"monitoraspect", &force_monitor_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 9.0, NULL},
189 {"monitorpixelaspect", &monitor_pixel_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.2, 9.0, NULL},
190 // video mode switching: (x11,xv,dga)
191 {"vm", &vidmode, CONF_TYPE_FLAG, 0, 0, 1, NULL},
192 {"novm", &vidmode, CONF_TYPE_FLAG, 0, 1, 0, NULL},
193 // start in fullscreen mode:
194 {"fs", &fullscreen, CONF_TYPE_FLAG, 0, 0, 1, NULL},
195 {"nofs", &fullscreen, CONF_TYPE_FLAG, 0, 1, 0, NULL},
196 // set fullscreen switch method (workaround for buggy WMs)
197 {"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},
198 {"fsmode-dontuse", &vo_fsmode, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},
199 // set bpp (x11+vm, dga, fbdev, vesa, svga?)
200 {"bpp", &vo_dbpp, CONF_TYPE_INT, CONF_RANGE, 0, 32, NULL},
201 {"colorkey", &vo_colorkey, CONF_TYPE_INT, 0, 0, 0, NULL},
202 {"nocolorkey", &vo_colorkey, CONF_TYPE_FLAG, 0, 0, 0x1000000, NULL},
203 {"double", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 0, 1, NULL},
204 {"nodouble", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 1, 0, NULL},
205 // wait for v-sync (vesa)
206 {"vsync", &vo_vsync, CONF_TYPE_FLAG, 0, 0, 1, NULL},
207 {"novsync", &vo_vsync, CONF_TYPE_FLAG, 0, 1, 0, NULL},
208 {"panscan", &vo_panscan, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL},
209 {"panscanrange", &vo_panscanrange, CONF_TYPE_FLOAT, CONF_RANGE, -19.0, 99.0, NULL},
211 {"grabpointer", &vo_grabpointer, CONF_TYPE_FLAG, 0, 0, 1, NULL},
212 {"nograbpointer", &vo_grabpointer, CONF_TYPE_FLAG, 0, 1, 0, NULL},
214 {"adapter", &vo_adapter_num, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL},
215 {"refreshrate",&vo_refresh_rate,CONF_TYPE_INT,CONF_RANGE, 0,100, NULL},
216 {"wid", &WinID, CONF_TYPE_INT64, 0, 0, 0, NULL},
217 #ifdef CONFIG_X11
218 // x11,xv,xmga,xvidix
219 {"icelayer", "-icelayer has been removed. Use -fstype layer:<number> instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
220 {"stop-xscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 0, 1, NULL},
221 {"nostop-xscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 1, 0, NULL},
222 {"stop_xscreensaver", "Use -stop-xscreensaver instead, options with _ have been obsoleted.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
223 {"fstype", &vo_fstype_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
224 #endif
225 {"heartbeat-cmd", &heartbeat_cmd, CONF_TYPE_STRING, 0, 0, 0, NULL},
226 {"mouseinput", &vo_nomouse_input, CONF_TYPE_FLAG, 0, 1, 0, NULL},
227 {"nomouseinput", &vo_nomouse_input, CONF_TYPE_FLAG,0, 0, 1, NULL},
229 {"xineramascreen", &xinerama_screen, CONF_TYPE_INT, CONF_RANGE, -2, 32, NULL},
231 {"brightness",&vo_gamma_brightness, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
232 {"saturation",&vo_gamma_saturation, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
233 {"contrast",&vo_gamma_contrast, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
234 {"hue",&vo_gamma_hue, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
235 {"keepaspect", &vo_keepaspect, CONF_TYPE_FLAG, 0, 0, 1, NULL},
236 {"nokeepaspect", &vo_keepaspect, CONF_TYPE_FLAG, 0, 1, 0, NULL},
238 // direct rendering (decoding to video out buffer)
239 {"dr", &vo_directrendering, CONF_TYPE_FLAG, 0, 0, 1, NULL},
240 {"nodr", &vo_directrendering, CONF_TYPE_FLAG, 0, 1, 0, NULL},
241 {"vaa_dr", "-vaa_dr has been removed, use -dr.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
242 {"vaa_nodr", "-vaa_nodr has been removed, use -nodr.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
244 #ifdef CONFIG_AA
245 // -vo aa
246 {"aa*", "-aa* has been removed. Use -vo aa:suboption instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
247 #endif
249 #ifdef CONFIG_ZR
250 // -vo zr
251 {"zr*", vo_zr_parseoption, CONF_TYPE_FUNC_FULL, 0, 0, 0, &vo_zr_revertoption },
252 #endif
254 #ifdef CONFIG_DXR2
255 {"dxr2", &dxr2_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
256 #endif
259 //---------------------- mplayer-only options ------------------------
261 {"use-filedir-conf", &use_filedir_conf, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
262 {"nouse-filedir-conf", &use_filedir_conf, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
263 {"use-filename-title", &use_filename_title, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
264 {"nouse-filename-title", &use_filename_title, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
265 #ifdef CONFIG_CRASH_DEBUG
266 {"crash-debug", &crash_debug, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
267 {"nocrash-debug", &crash_debug, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
268 #endif
269 {"osdlevel", &osd_level, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL},
270 {"osd-duration", &osd_duration, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
271 #ifdef CONFIG_MENU
272 {"menu", &use_menu, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
273 {"nomenu", &use_menu, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
274 {"menu-root", &menu_root, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
275 {"menu-cfg", &menu_cfg, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
276 {"menu-startup", &menu_startup, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
277 {"menu-keepdir", &menu_keepdir, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
278 {"menu-chroot", &menu_chroot, CONF_TYPE_STRING, 0, 0, 0, NULL},
279 #ifdef CONFIG_FRIBIDI
280 {"menu-fribidi-charset", &menu_fribidi_charset, CONF_TYPE_STRING, 0, 0, 0, NULL},
281 {"menu-flip-hebrew", &menu_flip_hebrew, CONF_TYPE_FLAG, 0, 0, 1, NULL},
282 {"menu-noflip-hebrew", &menu_flip_hebrew, CONF_TYPE_FLAG, 0, 1, 0, NULL},
283 {"menu-flip-hebrew-commas", &menu_fribidi_flip_commas, CONF_TYPE_FLAG, 0, 1, 0, NULL},
284 {"menu-noflip-hebrew-commas", &menu_fribidi_flip_commas, CONF_TYPE_FLAG, 0, 0, 1, NULL},
285 #endif /* CONFIG_FRIBIDI */
286 #else
287 {"menu", "OSD menu support was not compiled in.\n", CONF_TYPE_PRINT,0, 0, 0, NULL},
288 #endif /* CONFIG_MENU */
290 // these should be moved to -common, and supported in MEncoder
291 {"vobsub", &vobsub_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
292 {"vobsubid", &vobsub_id, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},
293 #ifdef CONFIG_UNRAR_EXEC
294 {"unrarexec", &unrar_executable, CONF_TYPE_STRING, 0, 0, 0, NULL},
295 #endif
297 {"sstep", &step_sec, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
299 {"framedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 0, 1, NULL},
300 {"hardframedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 0, 2, NULL},
301 {"noframedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 1, 0, NULL},
303 {"autoq", &auto_quality, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
305 {"benchmark", &benchmark, CONF_TYPE_FLAG, 0, 0, 1, NULL},
307 // dump some stream out instead of playing the file
308 // this really should be in MEncoder instead of MPlayer... -> TODO
309 {"dumpfile", &stream_dump_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
310 {"dumpaudio", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 1, NULL},
311 {"dumpvideo", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 2, NULL},
312 {"dumpsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 3, NULL},
313 {"dumpmpsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 4, NULL},
314 {"dumpstream", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 5, NULL},
315 {"dumpsrtsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 6, NULL},
316 {"dumpmicrodvdsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 7, NULL},
317 {"dumpjacosub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 8, NULL},
318 {"dumpsami", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 9, NULL},
320 #ifdef CONFIG_LIRC
321 {"lircconf", &lirc_configfile, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
322 #endif
324 {"gui", "The -gui option will only work as the first command line argument.\n", CONF_TYPE_PRINT, 0, 0, 0, (void *)1},
325 {"nogui", "The -nogui option will only work as the first command line argument.\n", CONF_TYPE_PRINT, 0, 0, 0, (void *)1},
327 #ifdef CONFIG_GUI
328 {"skin", &skinName, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
329 {"enqueue", &enqueue, CONF_TYPE_FLAG, 0, 0, 1, NULL},
330 {"noenqueue", &enqueue, CONF_TYPE_FLAG, 0, 1, 0, NULL},
331 {"guiwid", &guiWinID, CONF_TYPE_INT, 0, 0, 0, NULL},
332 #endif
334 {"noloop", &mpctx_s.loop_times, CONF_TYPE_FLAG, 0, 0, -1, NULL},
335 {"loop", &mpctx_s.loop_times, CONF_TYPE_INT, CONF_RANGE, -1, 10000, NULL},
336 {"playlist", NULL, CONF_TYPE_STRING, 0, 0, 0, NULL},
338 // a-v sync stuff:
339 {"correct-pts", &user_correct_pts, CONF_TYPE_FLAG, 0, 0, 1, NULL},
340 {"nocorrect-pts", &user_correct_pts, CONF_TYPE_FLAG, 0, 1, 0, NULL},
341 {"noautosync", &autosync, CONF_TYPE_FLAG, 0, 0, -1, NULL},
342 {"autosync", &autosync, CONF_TYPE_INT, CONF_RANGE, 0, 10000, NULL},
344 {"softsleep", &softsleep, CONF_TYPE_FLAG, 0, 0, 1, NULL},
345 #ifdef HAVE_RTC
346 {"nortc", &nortc, CONF_TYPE_FLAG, 0, 0, 1, NULL},
347 {"rtc", &nortc, CONF_TYPE_FLAG, 0, 1, 0, NULL},
348 {"rtc-device", &rtc_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
349 #endif
351 {"term-osd", &term_osd, CONF_TYPE_FLAG, 0, 0, 1, NULL},
352 {"noterm-osd", &term_osd, CONF_TYPE_FLAG, 0, 1, 0, NULL},
353 {"term-osd-esc", &term_osd_esc, CONF_TYPE_STRING, 0, 0, 1, NULL},
354 {"playing-msg", &playing_msg, CONF_TYPE_STRING, 0, 0, 0, NULL},
356 {"slave", &slave_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL},
357 {"idle", &player_idle_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL},
358 {"noidle", &player_idle_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 1, 0, NULL},
359 {"use-stdin", "-use-stdin has been renamed to -noconsolecontrols, use that instead.", CONF_TYPE_PRINT, 0, 0, 0, NULL},
360 {"key-fifo-size", &key_fifo_size, CONF_TYPE_INT, CONF_RANGE, 2, 65000, NULL},
361 {"noconsolecontrols", &noconsolecontrols, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
362 {"consolecontrols", &noconsolecontrols, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
363 {"mouse-movements", &enable_mouse_movements, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
364 {"nomouse-movements", &enable_mouse_movements, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
365 {"doubleclick-time", &doubleclick_time, CONF_TYPE_INT, CONF_RANGE, 0, 1000, NULL},
366 #ifdef CONFIG_TV
367 {"tvscan", tvscan_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
368 #else
369 {"tvscan", "MPlayer was compiled without TV interface support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
370 #endif /* CONFIG_TV */
372 #include "cfg-common-opts.h"
374 {"list-properties", &list_properties, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
375 {"identify", &mp_msg_levels[MSGT_IDENTIFY], CONF_TYPE_FLAG, CONF_GLOBAL, 0, MSGL_V, NULL},
376 {"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
377 {"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
378 {"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
380 {"vd", vd_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
381 {NULL, NULL, 0, 0, 0, 0, NULL}
384 #endif /* MPLAYER_CFG_MPLAYER_H */