keep nav highlight event in dvdnav priv structure
[mplayer/glamo.git] / cfg-mplayer.h
blob497e0187685bb78e1c72c891ca0f730c4617f6ee
1 /*
2 * config for cfgparser
3 */
5 #include "cfg-common.h"
7 extern int noconsolecontrols;
9 #if defined(HAVE_FBDEV)||defined(HAVE_VESA)
10 extern char *monitor_hfreq_str;
11 extern char *monitor_vfreq_str;
12 extern char *monitor_dotclock_str;
13 #endif
15 #ifdef HAVE_FBDEV
16 extern char *fb_mode_cfgfile;
17 extern char *fb_mode_name;
18 #endif
19 #ifdef HAVE_DIRECTFB
20 extern char *dfb_params;
21 #endif
22 #ifdef USE_FAKE_MONO
23 extern int fakemono; // defined in dec_audio.c
24 #endif
26 extern int volstep;
28 #ifdef HAVE_LIRC
29 extern char *lirc_configfile;
30 #endif
32 extern int vo_doublebuffering;
33 extern int vo_vsync;
34 extern int vo_fsmode;
35 extern int vo_dbpp;
36 extern int vo_directrendering;
37 extern float vo_panscan;
38 extern float vo_panscanrange;
39 /* only used at startup (setting these values from configfile) */
40 extern int vo_gamma_brightness;
41 extern int vo_gamma_saturation;
42 extern int vo_gamma_contrast;
43 extern int vo_gamma_hue;
44 extern char *vo_geometry;
45 extern int vo_ontop;
46 extern int vo_border;
47 extern int vo_keepaspect;
48 extern int vo_rootwin;
50 extern int opt_screen_size_x;
51 extern int opt_screen_size_y;
52 extern int fullscreen;
53 extern int vidmode;
55 extern int osd_level;
57 extern char *ao_outputfilename;
58 extern int ao_pcm_waveheader;
60 #ifdef HAVE_X11
61 extern char *mDisplayName;
62 extern int fs_layer;
63 extern int stop_xscreensaver;
64 extern char **vo_fstype_list;
65 extern int vo_nomouse_input;
66 #endif
67 extern int WinID;
69 #ifdef HAVE_MENU
70 extern int menu_startup;
71 #endif
73 #ifdef HAVE_ZR
74 extern int vo_zr_parseoption(m_option_t* conf, char *opt, char * param);
75 extern void vo_zr_revertoption(m_option_t* opt,char* pram);
76 #endif
78 #ifdef HAVE_DXR2
79 extern m_option_t dxr2_opts[];
80 #endif
82 #ifdef HAVE_NEW_GUI
83 extern char * skinName;
84 extern int enqueue;
85 extern int guiWinID;
86 #endif
88 #ifdef HAVE_XINERAMA
89 extern int xinerama_screen;
90 #endif
92 /* from libvo/aspect.c */
93 extern float monitor_aspect;
94 extern float monitor_pixel_aspect;
96 extern int sws_flags;
97 extern int readPPOpt(void *conf, char *arg);
98 extern void revertPPOpt(void *conf, char* opt);
99 extern char* pp_help;
100 extern int enable_mouse_movements;
101 extern int use_filedir_conf;
103 m_option_t vd_conf[]={
104 {"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},
105 {NULL, NULL, 0, 0, 0, 0, NULL}
109 * CONF_TYPE_FUNC_FULL :
110 * allows own implementations for passing the params
112 * the function receives parameter name and argument (if it does not start with - )
113 * useful with a conf.name like 'aa*' to parse several parameters to a function
114 * return 0 =ok, but we didn't need the param (could be the filename)
115 * return 1 =ok, we accepted the param
116 * negative values: see cfgparser.h, ERR_XXX
118 * by Folke
121 m_option_t mplayer_opts[]={
122 /* name, pointer, type, flags, min, max */
124 //---------------------- libao/libvo options ------------------------
125 {"o", "Option -o has been renamed to -vo (video-out), use -vo.\n",
126 CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
127 {"vo", &video_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
128 {"ao", &audio_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
129 {"fixed-vo", &fixed_vo, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL},
130 {"nofixed-vo", &fixed_vo, CONF_TYPE_FLAG,CONF_GLOBAL, 0, 0, NULL},
131 {"ontop", &vo_ontop, CONF_TYPE_FLAG, 0, 0, 1, NULL},
132 {"noontop", &vo_ontop, CONF_TYPE_FLAG, 0, 1, 0, NULL},
133 {"rootwin", &vo_rootwin, CONF_TYPE_FLAG, 0, 0, 1, NULL},
134 {"border", &vo_border, CONF_TYPE_FLAG, 0, 0, 1, NULL},
135 {"noborder", &vo_border, CONF_TYPE_FLAG, 0, 1, 0, NULL},
137 {"aop", "-aop has been removed, use -af instead.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
138 {"dsp", "-dsp has been removed. Use -ao oss:dsp_path instead.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
139 {"mixer", &mixer_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
140 {"mixer-channel", &mixer_channel, CONF_TYPE_STRING, 0, 0, 0, NULL},
141 {"softvol", &soft_vol, CONF_TYPE_FLAG, 0, 0, 1, NULL},
142 {"nosoftvol", &soft_vol, CONF_TYPE_FLAG, 0, 1, 0, NULL},
143 {"softvol-max", &soft_vol_max, CONF_TYPE_FLOAT, CONF_RANGE, 10, 10000, NULL},
144 {"volstep", &volstep, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
145 {"master", "Option -master has been removed, use -af volume instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
146 // override audio buffer size (used only by -ao oss, anyway obsolete...)
147 {"abs", &ao_data.buffersize, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
149 // -ao pcm options:
150 {"aofile", "-aofile has been removed. Use -ao pcm:file=<filename> instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
151 {"waveheader", "-waveheader has been removed. Use -ao pcm:waveheader instead.\n", CONF_TYPE_PRINT, 0, 0, 1, NULL},
152 {"nowaveheader", "-nowaveheader has been removed. Use -ao pcm:nowaveheader instead.\n", CONF_TYPE_PRINT, 0, 1, 0, NULL},
154 {"alsa", "-alsa has been removed. Remove it from your config file.\n",
155 CONF_TYPE_PRINT, 0, 0, 0, NULL},
156 {"noalsa", "-noalsa has been removed. Remove it from your config file.\n",
157 CONF_TYPE_PRINT, 0, 0, 0, NULL},
158 {"edlout", &edl_output_filename, CONF_TYPE_STRING, 0, 0, 0, NULL},
160 #ifdef HAVE_X11
161 {"display", &mDisplayName, CONF_TYPE_STRING, 0, 0, 0, NULL},
162 #endif
164 // -vo png only:
165 #ifdef HAVE_PNG
166 {"z", "-z has been removed. Use -vo png:z=<0-9> instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
167 #endif
168 // -vo jpeg only:
169 #ifdef HAVE_JPEG
170 {"jpeg", "-jpeg has been removed. Use -vo jpeg:<options> instead.\n",
171 CONF_TYPE_PRINT, 0, 0, 0, NULL},
172 #endif
173 // -vo sdl only:
174 {"sdl", "Use -vo sdl:driver=<driver> instead of -vo sdl -sdl driver.\n",
175 CONF_TYPE_PRINT, 0, 0, 0, NULL},
176 {"noxv", "-noxv has been removed. Use -vo sdl:nohwaccel instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
177 {"forcexv", "-forcexv has been removed. Use -vo sdl:forcexv instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
178 // -ao sdl only:
179 {"sdla", "Use -ao sdl:driver instead of -ao sdl -sdla driver.\n",
180 CONF_TYPE_PRINT, 0, 0, 0, NULL},
182 #if defined(HAVE_FBDEV)||defined(HAVE_VESA)
183 {"monitor-hfreq", &monitor_hfreq_str, CONF_TYPE_STRING, 0, 0, 0, NULL},
184 {"monitor-vfreq", &monitor_vfreq_str, CONF_TYPE_STRING, 0, 0, 0, NULL},
185 {"monitor-dotclock", &monitor_dotclock_str, CONF_TYPE_STRING, 0, 0, 0, NULL},
186 #endif
188 #ifdef HAVE_FBDEV
189 {"fbmode", &fb_mode_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
190 {"fbmodeconfig", &fb_mode_cfgfile, CONF_TYPE_STRING, 0, 0, 0, NULL},
191 #endif
192 #ifdef HAVE_DIRECTFB
193 #if DIRECTFBVERSION > 912
194 {"dfbopts", "-dfbopts has been removed. Use -vf directfb:dfbopts=... instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
195 #endif
196 #endif
198 // force window width/height or resolution (with -vm)
199 {"x", &opt_screen_size_x, CONF_TYPE_INT, CONF_RANGE, 0, 4096, NULL},
200 {"y", &opt_screen_size_y, CONF_TYPE_INT, CONF_RANGE, 0, 4096, NULL},
201 // set screen dimensions (when not detectable or virtual!=visible)
202 {"screenw", &vo_screenwidth, CONF_TYPE_INT, CONF_RANGE|CONF_OLD, 0, 4096, NULL},
203 {"screenh", &vo_screenheight, CONF_TYPE_INT, CONF_RANGE|CONF_OLD, 0, 4096, NULL},
204 // Geometry string
205 {"geometry", &vo_geometry, CONF_TYPE_STRING, 0, 0, 0, NULL},
206 // set aspect ratio of monitor - useful for 16:9 TVout
207 {"monitoraspect", &monitor_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.2, 9.0, NULL},
208 {"monitorpixelaspect", &monitor_pixel_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 9.0, NULL},
209 // video mode switching: (x11,xv,dga)
210 {"vm", &vidmode, CONF_TYPE_FLAG, 0, 0, 1, NULL},
211 {"novm", &vidmode, CONF_TYPE_FLAG, 0, 1, 0, NULL},
212 // start in fullscreen mode:
213 {"fs", &fullscreen, CONF_TYPE_FLAG, 0, 0, 1, NULL},
214 {"nofs", &fullscreen, CONF_TYPE_FLAG, 0, 1, 0, NULL},
215 // set fullscreen switch method (workaround for buggy WMs)
216 {"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},
217 {"fsmode-dontuse", &vo_fsmode, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},
218 // set bpp (x11+vm, dga, fbdev, vesa, svga?)
219 {"bpp", &vo_dbpp, CONF_TYPE_INT, CONF_RANGE, 0, 32, NULL},
220 {"colorkey", &vo_colorkey, CONF_TYPE_INT, 0, 0, 0, NULL},
221 {"nocolorkey", &vo_colorkey, CONF_TYPE_FLAG, 0, 0, 0x1000000, NULL},
222 // double buffering: (mga/xmga, xv, vidix, vesa, fbdev)
223 {"double", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 0, 1, NULL},
224 {"nodouble", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 1, 0, NULL},
225 // wait for v-sync (vesa)
226 {"vsync", &vo_vsync, CONF_TYPE_FLAG, 0, 0, 1, NULL},
227 {"novsync", &vo_vsync, CONF_TYPE_FLAG, 0, 1, 0, NULL},
228 {"panscan", &vo_panscan, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL},
229 {"panscanrange", &vo_panscanrange, CONF_TYPE_FLOAT, CONF_RANGE, -19.0, 99.0, NULL},
231 {"grabpointer", &vo_grabpointer, CONF_TYPE_FLAG, 0, 0, 1, NULL},
232 {"nograbpointer", &vo_grabpointer, CONF_TYPE_FLAG, 0, 1, 0, NULL},
234 {"adapter", &vo_adapter_num, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL},
235 {"refreshrate",&vo_refresh_rate,CONF_TYPE_INT,CONF_RANGE, 0,100, NULL},
236 {"wid", &WinID, CONF_TYPE_INT, 0, 0, 0, NULL},
237 #ifdef HAVE_X11
238 // x11,xv,xmga,xvidix
239 {"icelayer", "-icelayer has been removed. Use -fstype layer:<number> instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
240 {"stop-xscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 0, 1, NULL},
241 {"nostop-xscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 1, 0, NULL},
242 {"stop_xscreensaver", "Use -stop-xscreensaver instead, options with _ have been obsoleted.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
243 {"fstype", &vo_fstype_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
244 {"nomouseinput", &vo_nomouse_input, CONF_TYPE_FLAG,0,0,-1,NULL},
245 #endif
247 {"xineramascreen", &xinerama_screen, CONF_TYPE_INT, CONF_RANGE, -2, 32, NULL},
249 {"brightness",&vo_gamma_brightness, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
250 {"saturation",&vo_gamma_saturation, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
251 {"contrast",&vo_gamma_contrast, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
252 {"hue",&vo_gamma_hue, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
253 {"keepaspect", &vo_keepaspect, CONF_TYPE_FLAG, 0, 0, 1, NULL},
254 {"nokeepaspect", &vo_keepaspect, CONF_TYPE_FLAG, 0, 1, 0, NULL},
256 // direct rendering (decoding to video out buffer)
257 {"dr", &vo_directrendering, CONF_TYPE_FLAG, 0, 0, 1, NULL},
258 {"nodr", &vo_directrendering, CONF_TYPE_FLAG, 0, 1, 0, NULL},
259 {"vaa_dr", "-vaa_dr has been removed, use -dr.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
260 {"vaa_nodr", "-vaa_nodr has been removed, use -nodr.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
262 #ifdef HAVE_AA
263 // -vo aa
264 {"aa*", "-aa* has been removed. Use -vo aa:suboption instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
265 #endif
267 #ifdef HAVE_ZR
268 // -vo zr
269 {"zr*", vo_zr_parseoption, CONF_TYPE_FUNC_FULL, 0, 0, 0, &vo_zr_revertoption },
270 #endif
272 #ifdef HAVE_DXR2
273 {"dxr2", &dxr2_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
274 #endif
277 //---------------------- mplayer-only options ------------------------
279 {"use-filedir-conf", &use_filedir_conf, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
280 {"nouse-filedir-conf", &use_filedir_conf, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
281 #ifdef CRASH_DEBUG
282 {"crash-debug", &crash_debug, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
283 {"nocrash-debug", &crash_debug, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
284 #endif
285 {"osdlevel", &osd_level, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL},
286 {"osd-duration", &osd_duration, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
287 #ifdef HAVE_MENU
288 {"menu", &use_menu, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
289 {"nomenu", &use_menu, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
290 {"menu-root", &menu_root, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
291 {"menu-cfg", &menu_cfg, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
292 {"menu-startup", &menu_startup, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
293 #else
294 {"menu", "OSD menu support was not compiled in.\n", CONF_TYPE_PRINT,0, 0, 0, NULL},
295 #endif
297 // these should be moved to -common, and supported in MEncoder
298 {"vobsub", &vobsub_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
299 {"vobsubid", &vobsub_id, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},
301 {"sstep", &step_sec, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
303 {"framedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 0, 1, NULL},
304 {"hardframedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 0, 2, NULL},
305 {"noframedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 1, 0, NULL},
307 {"autoq", &auto_quality, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
309 {"benchmark", &benchmark, CONF_TYPE_FLAG, 0, 0, 1, NULL},
311 // dump some stream out instead of playing the file
312 // this really should be in MEncoder instead of MPlayer... -> TODO
313 {"dumpfile", &stream_dump_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
314 {"dumpaudio", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 1, NULL},
315 {"dumpvideo", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 2, NULL},
316 {"dumpsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 3, NULL},
317 {"dumpmpsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 4, NULL},
318 {"dumpstream", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 5, NULL},
319 {"dumpsrtsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 6, NULL},
320 {"dumpmicrodvdsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 7, NULL},
321 {"dumpjacosub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 8, NULL},
322 {"dumpsami", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 9, NULL},
324 #ifdef HAVE_LIRC
325 {"lircconf", &lirc_configfile, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
326 #endif
328 {"gui", "The -gui option will only work as the first command line argument.\n", CONF_TYPE_PRINT, 0, 0, 0, (void *)1},
329 {"nogui", "The -nogui option will only work as the first command line argument.\n", CONF_TYPE_PRINT, 0, 0, 0, (void *)1},
331 #ifdef HAVE_NEW_GUI
332 {"skin", &skinName, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
333 {"enqueue", &enqueue, CONF_TYPE_FLAG, 0, 0, 1, NULL},
334 {"noenqueue", &enqueue, CONF_TYPE_FLAG, 0, 0, 0, NULL},
335 {"guiwid", &guiWinID, CONF_TYPE_INT, 0, 0, 0, NULL},
336 #endif
338 {"noloop", &loop_times, CONF_TYPE_FLAG, 0, 0, -1, NULL},
339 {"loop", &loop_times, CONF_TYPE_INT, CONF_RANGE, -1, 10000, NULL},
340 {"playlist", NULL, CONF_TYPE_STRING, 0, 0, 0, NULL},
342 // a-v sync stuff:
343 {"correct-pts", &correct_pts, CONF_TYPE_FLAG, 0, 0, 1, NULL},
344 {"no-correct-pts", &correct_pts, CONF_TYPE_FLAG, 0, 1, 0, NULL},
345 {"noautosync", &autosync, CONF_TYPE_FLAG, 0, 0, -1, NULL},
346 {"autosync", &autosync, CONF_TYPE_INT, CONF_RANGE, 0, 10000, NULL},
347 // {"dapsync", &dapsync, CONF_TYPE_FLAG, 0, 0, 1, NULL},
348 // {"nodapsync", &dapsync, CONF_TYPE_FLAG, 0, 1, 0, NULL},
350 {"softsleep", &softsleep, CONF_TYPE_FLAG, 0, 0, 1, NULL},
351 #ifdef HAVE_RTC
352 {"nortc", &nortc, CONF_TYPE_FLAG, 0, 0, 1, NULL},
353 {"rtc", &nortc, CONF_TYPE_FLAG, 0, 0, 0, NULL},
354 {"rtc-device", &rtc_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
355 #endif
357 {"term-osd", &term_osd, CONF_TYPE_FLAG, 0, 0, 1, NULL},
358 {"noterm-osd", &term_osd, CONF_TYPE_FLAG, 0, 0, 0, NULL},
359 {"term-osd-esc", &term_osd_esc, CONF_TYPE_STRING, 0, 0, 1, NULL},
360 {"playing-msg", &playing_msg, CONF_TYPE_STRING, 0, 0, 0, NULL},
362 {"slave", &slave_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL},
363 {"idle", &player_idle_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL},
364 {"noidle", &player_idle_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 0, NULL},
365 {"use-stdin", "-use-stdin has been renamed to -noconsolecontrols, use that instead.", CONF_TYPE_PRINT, 0, 0, 0, NULL},
366 {"key-fifo-size", &key_fifo_size, CONF_TYPE_INT, CONF_RANGE, 2, 65000, NULL},
367 {"noconsolecontrols", &noconsolecontrols, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
368 {"consolecontrols", &noconsolecontrols, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 0, NULL},
369 {"mouse-movements", &enable_mouse_movements, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
370 {"nomouse-movements", &enable_mouse_movements, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 0, NULL},
372 #define MAIN_CONF
373 #include "cfg-common.h"
374 #undef MAIN_CONF
376 {"list-properties", &list_properties, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
377 {"identify", &mp_msg_levels[MSGT_IDENTIFY], CONF_TYPE_FLAG, CONF_GLOBAL, 0, MSGL_V, NULL},
378 {"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
379 {"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
380 {"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
382 {"vd", vd_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
383 {NULL, NULL, 0, 0, 0, 0, NULL}