]> git.sesse.net Git - vlc/blob - src/libvlc-module.c
Added sout-mux-caching option. It allow to set the initial muxer cache value
[vlc] / src / libvlc-module.c
1 /*****************************************************************************
2  * libvlc.h: Options for the main (libvlc itself) module
3  *****************************************************************************
4  * Copyright (C) 1998-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@videolan.org>
10  *          Jean-Paul Saman <jpsaman #_at_# m2x.nl>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 // Pretend we are a builtin module
28 #define MODULE_NAME main
29 #define MODULE_PATH main
30 #define __BUILTIN__
31
32
33 #include <vlc/vlc.h>
34 #include "libvlc.h"
35
36 //#define Nothing here, this is just to prevent update-po from being stupid
37 #include "vlc_keys.h"
38 #include "vlc_meta.h"
39
40 #if defined (WIN32) || defined (__APPLE__)
41 static const char *ppsz_language[] =
42 {
43     "auto",
44     "en",
45     "ar",
46     "pt_BR",
47     "en_GB",
48     "ca",
49     "zh_TW",
50     "cs",
51     "da",
52     "nl",
53     "fi",
54     "fr",
55     "gl",
56     "ka",
57     "de",
58     "he",
59     "hu",
60     "it",
61     "ja",
62     "ko",
63     "ms",
64     "oc",
65     "fa",
66     "pl",
67     "ro",
68     "ru",
69     "zh_CN",
70     "sk",
71     "sl",
72     "es",
73     "sv",
74     "tr"
75 };
76
77 static const char *ppsz_language_text[] =
78 {
79     N_("Auto"),
80     N_("American English"),
81     N_("Arabic"),
82     N_("Brazilian Portuguese"),
83     N_("British English"),
84     N_("Catalan"),
85     N_("Chinese Traditional"),
86     N_("Czech"),
87     N_("Danish"),
88     N_("Dutch"),
89     N_("Finnish"),
90     N_("French"),
91     N_("Galician"),
92     N_("Georgian"),
93     N_("German"),
94     N_("Hebrew"),
95     N_("Hungarian"),
96     N_("Italian"),
97     N_("Japanese"),
98     N_("Korean"),
99     N_("Malay"),
100     N_("Occitan"),
101     N_("Persian"),
102     N_("Polish"),
103     N_("Romanian"),
104     N_("Russian"),
105     N_("Simplified Chinese"),
106     N_("Slovak"),
107     N_("Slovenian"),
108     N_("Spanish"),
109     N_("Swedish"),
110     N_("Turkish")
111 };
112 #endif
113
114 static const char *ppsz_snap_formats[] =
115 { "png", "jpg" };
116
117 /*****************************************************************************
118  * Configuration options for the main program. Each module will also separatly
119  * define its own configuration options.
120  * Look into configuration.h if you need to know more about the following
121  * macros.
122  *****************************************************************************/
123
124 /*****************************************************************************
125  * Intf
126  ****************************************************************************/
127
128 // DEPRECATED
129 #define INTF_CAT_LONGTEXT N_( \
130     "These options allow you to configure the interfaces used by VLC. " \
131     "You can select the main interface, additional " \
132     "interface modules, and define various related options." )
133
134 #define INTF_TEXT N_("Interface module")
135 #define INTF_LONGTEXT N_( \
136     "This is the main interface used by VLC. " \
137     "The default behavior is to automatically select the best module " \
138     "available.")
139
140 #define EXTRAINTF_TEXT N_("Extra interface modules")
141 #define EXTRAINTF_LONGTEXT N_( \
142     "You can select \"additional interfaces\" for VLC. " \
143     "They will be launched in the background in addition to the default " \
144     "interface. Use a comma separated list of interface modules. (common " \
145     "values are \"rc\" (remote control), \"http\", \"gestures\" ...)")
146
147 #define CONTROL_TEXT N_("Control interfaces")
148 #define CONTROL_LONGTEXT N_( \
149     "You can select control interfaces for VLC.")
150
151 #define VERBOSE_TEXT N_("Verbosity (0,1,2)")
152 #define VERBOSE_LONGTEXT N_( \
153     "This is the verbosity level (0=only errors and " \
154     "standard messages, 1=warnings, 2=debug).")
155
156 #define QUIET_TEXT N_("Be quiet")
157 #define QUIET_LONGTEXT N_( \
158     "Turn off all warning and information messages.")
159
160 #define OPEN_TEXT N_("Default stream")
161 #define OPEN_LONGTEXT N_( \
162     "This stream will always be opened at VLC startup." )
163
164 #define LANGUAGE_TEXT N_("Language")
165 #define LANGUAGE_LONGTEXT N_( "You can manually select a language for the " \
166     "interface. The system language is auto-detected if \"auto\" is " \
167     "specified here." )
168
169 #define COLOR_TEXT N_("Color messages")
170 #define COLOR_LONGTEXT N_( \
171     "This enables colorization of the messages sent to the console " \
172     "Your terminal needs Linux color support for this to work.")
173
174 #define ADVANCED_TEXT N_("Show advanced options")
175 #define ADVANCED_LONGTEXT N_( \
176     "When this is enabled, the preferences and/or interfaces will " \
177     "show all available options, including those that most users should " \
178     "never touch.")
179
180 #define SHOWINTF_TEXT N_("Show interface with mouse")
181 #define SHOWINTF_LONGTEXT N_( \
182     "When this is enabled, the interface is shown when you move the mouse to "\
183     "the edge of the screen in fullscreen mode." )
184
185 #define INTERACTION_TEXT N_("Interface interaction")
186 #define INTERACTION_LONGTEXT N_( \
187     "When this is enabled, the interface will show a dialog box each time " \
188     "some user input is required." )
189
190
191 /*****************************************************************************
192  * Audio
193  ****************************************************************************/
194
195 // DEPRECATED
196 #define AOUT_CAT_LONGTEXT N_( \
197     "These options allow you to modify the behavior of the audio " \
198     "subsystem, and to add audio filters which can be used for " \
199     "post processing or visual effects (spectrum analyzer, etc.). " \
200     "Enable these filters here, and configure them in the \"audio filters\" " \
201     "modules section.")
202
203 #define AOUT_TEXT N_("Audio output module")
204 #define AOUT_LONGTEXT N_( \
205     "This is the audio output method used by VLC. " \
206     "The default behavior is to automatically select the best method " \
207     "available.")
208
209 #define AUDIO_TEXT N_("Enable audio")
210 #define AUDIO_LONGTEXT N_( \
211     "You can completely disable the audio output. The audio " \
212     "decoding stage will not take place, thus saving some processing power.")
213
214 #define MONO_TEXT N_("Force mono audio")
215 #define MONO_LONGTEXT N_("This will force a mono audio output.")
216
217 #define VOLUME_TEXT N_("Default audio volume")
218 #define VOLUME_LONGTEXT N_( \
219     "You can set the default audio output volume here, in a range from 0 to " \
220     "1024.")
221
222 #define VOLUME_SAVE_TEXT N_("Audio output saved volume")
223 #define VOLUME_SAVE_LONGTEXT N_( \
224     "This saves the audio output volume when you use the mute function. " \
225     "You should not change this option manually.")
226
227 #define VOLUME_STEP_TEXT N_("Audio output volume step")
228 #define VOLUME_STEP_LONGTEXT N_( \
229     "The step size of the volume is adjustable using this option, " \
230     "in a range from 0 to 1024." )
231
232 #define AOUT_RATE_TEXT N_("Audio output frequency (Hz)")
233 #define AOUT_RATE_LONGTEXT N_( \
234     "You can force the audio output frequency here. Common values are " \
235     "-1 (default), 48000, 44100, 32000, 22050, 16000, 11025, 8000.")
236
237 #if !defined( __APPLE__ )
238 #define AOUT_RESAMP_TEXT N_("High quality audio resampling")
239 #define AOUT_RESAMP_LONGTEXT N_( \
240     "This uses a high quality audio resampling algorithm. High quality "\
241     "audio resampling can be processor intensive so you can " \
242     "disable it and a cheaper resampling algorithm will be used instead.")
243 #endif
244
245 #define DESYNC_TEXT N_("Audio desynchronization compensation")
246 #define DESYNC_LONGTEXT N_( \
247     "This delays the audio output. The delay must be given in milliseconds." \
248     "This can be handy if you notice a lag between the video and the audio.")
249
250 #define MULTICHA_TEXT N_("Audio output channels mode")
251 #define MULTICHA_LONGTEXT N_( \
252     "This sets the audio output channels mode that will " \
253     "be used by default when possible (ie. if your hardware supports it as " \
254     "well as the audio stream being played).")
255
256 #define SPDIF_TEXT N_("Use S/PDIF when available")
257 #define SPDIF_LONGTEXT N_( \
258     "S/PDIF can be used by default when " \
259     "your hardware supports it as well as the audio stream being played.")
260
261 #define FORCE_DOLBY_TEXT N_("Force detection of Dolby Surround")
262 #define FORCE_DOLBY_LONGTEXT N_( \
263     "Use this when you know your stream is (or is not) encoded with Dolby "\
264     "Surround but fails to be detected as such. Even if the stream is "\
265     "not actually encoded with Dolby Surround, turning on this option might "\
266     "enhance your experience, especially when combined with the Headphone "\
267     "Channel Mixer." )
268 static int pi_force_dolby_values[] = { 0, 1, 2 };
269 static const char *ppsz_force_dolby_descriptions[] = { N_("Auto"), N_("On"), N_("Off") };
270
271
272 #define AUDIO_FILTER_TEXT N_("Audio filters")
273 #define AUDIO_FILTER_LONGTEXT N_( \
274     "This adds audio post processing filters, to modify " \
275     "the sound rendering." )
276
277 #define AUDIO_VISUAL_TEXT N_("Audio visualizations ")
278 #define AUDIO_VISUAL_LONGTEXT N_( \
279     "This adds visualization modules (spectrum analyzer, etc.).")
280
281
282 #define AUDIO_REPLAY_GAIN_MODE_TEXT N_( \
283     "Replay gain mode" )
284 #define AUDIO_REPLAY_GAIN_MODE_LONGTEXT N_( \
285     "Select the replay gain mode" )
286 #define AUDIO_REPLAY_GAIN_PREAMP_TEXT N_( \
287     "Replay preamp" )
288 #define AUDIO_REPLAY_GAIN_PREAMP_LONGTEXT N_( \
289     "This allows you to change the default target level (89 dB) " \
290     "for stream with replay gain information" )
291 #define AUDIO_REPLAY_GAIN_DEFAULT_TEXT N_( \
292     "Default replay gain" )
293 #define AUDIO_REPLAY_GAIN_DEFAULT_LONGTEXT N_( \
294     "This is the gain used for stream without replay gain information" )
295 #define AUDIO_REPLAY_GAIN_PEAK_PROTECTION_TEXT N_( \
296     "Peak protection" )
297 #define AUDIO_REPLAY_GAIN_PEAK_PROTECTION_LONGTEXT N_( \
298     "Protect against sound clipping" )
299
300 static const char *ppsz_replay_gain_mode[] = { "none", "track", "album" };
301 static const char *ppsz_replay_gain_mode_text[] = { N_("None"), N_("Track"), N_("Album") };
302
303 /*****************************************************************************
304  * Video
305  ****************************************************************************/
306
307 // DEPRECATED
308 #define VOUT_CAT_LONGTEXT N_( \
309     "These options allow you to modify the behavior of the video output " \
310     "subsystem. You can for example enable video filters (deinterlacing, " \
311     "image adjusting, etc.). Enable these filters here and configure " \
312     "them in the \"video filters\" modules section. You can also set many " \
313     "miscellaneous video options." )
314
315 #define VOUT_TEXT N_("Video output module")
316 #define VOUT_LONGTEXT N_( \
317     "This is the the video output method used by VLC. " \
318     "The default behavior is to automatically select the best method available.")
319
320 #define VIDEO_TEXT N_("Enable video")
321 #define VIDEO_LONGTEXT N_( \
322     "You can completely disable the video output. The video " \
323     "decoding stage will not take place, thus saving some processing power.")
324
325 #define WIDTH_TEXT N_("Video width")
326 #define WIDTH_LONGTEXT N_( \
327     "You can enforce the video width. By default (-1) VLC will " \
328     "adapt to the video characteristics.")
329
330 #define HEIGHT_TEXT N_("Video height")
331 #define HEIGHT_LONGTEXT N_( \
332     "You can enforce the video height. By default (-1) VLC will " \
333     "adapt to the video characteristics.")
334
335 #define VIDEOX_TEXT N_("Video X coordinate")
336 #define VIDEOX_LONGTEXT N_( \
337     "You can enforce the position of the top left corner of the video window "\
338     "(X coordinate).")
339
340 #define VIDEOY_TEXT N_("Video Y coordinate")
341 #define VIDEOY_LONGTEXT N_( \
342     "You can enforce the position of the top left corner of the video window "\
343     "(Y coordinate).")
344
345 #define VIDEO_TITLE_TEXT N_("Video title")
346 #define VIDEO_TITLE_LONGTEXT N_( \
347     "Custom title for the video window (in case the video is not embedded in "\
348     "the interface).")
349
350 #define ALIGN_TEXT N_("Video alignment")
351 #define ALIGN_LONGTEXT N_( \
352     "Enforce the alignment of the video in its window. By default (0) it " \
353     "will be centered (0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \
354     "also use combinations of these values, like 6=4+2 meaning top-right).")
355 static int pi_align_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };
356 static const char *ppsz_align_descriptions[] =
357 { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),
358   N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };
359
360 #define ZOOM_TEXT N_("Zoom video")
361 #define ZOOM_LONGTEXT N_( \
362     "You can zoom the video by the specified factor.")
363
364 #define GRAYSCALE_TEXT N_("Grayscale video output")
365 #define GRAYSCALE_LONGTEXT N_( \
366     "Output video in grayscale. As the color information aren't decoded, " \
367     "this can save some processing power." )
368
369 #define EMBEDDED_TEXT N_("Embedded video")
370 #define EMBEDDED_LONGTEXT N_( \
371     "Embed the video output in the main interface." )
372
373 #define FULLSCREEN_TEXT N_("Fullscreen video output")
374 #define FULLSCREEN_LONGTEXT N_( \
375     "Start video in fullscreen mode" )
376
377 #define OVERLAY_TEXT N_("Overlay video output")
378 #define OVERLAY_LONGTEXT N_( \
379     "Overlay is the hardware acceleration capability of your video card " \
380     "(ability to render video directly). VLC will try to use it by default." )
381
382 #define VIDEO_ON_TOP_TEXT N_("Always on top")
383 #define VIDEO_ON_TOP_LONGTEXT N_( \
384     "Always place the video window on top of other windows." )
385
386 #define VIDEO_TITLE_SHOW_TEXT N_("Show media title on video.")
387 #define VIDEO_TITLE_SHOW_LONGTEXT N_( \
388     "Display the title of the video on top of the movie.")
389
390 #define VIDEO_TITLE_TIMEOUT_TEXT N_("Show video title for x miliseconds.")
391 #define VIDEO_TITLE_TIMEOUT_LONGTEXT N_( \
392     "Show the video title for n miliseconds, default is 5000 ms (5 sec.)")
393
394 #define VIDEO_TITLE_POSITION_TEXT N_("Position of video title.")
395 #define VIDEO_TITLE_POSITION_LONGTEXT N_( \
396     "Place on video where to display the title (default bottom center).")
397
398 static int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };
399 static const char *ppsz_pos_descriptions[] =
400 { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),
401   N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };
402
403 #define SS_TEXT N_("Disable screensaver")
404 #define SS_LONGTEXT N_("Disable the screensaver during video playback." )
405
406 #define VIDEO_DECO_TEXT N_("Window decorations")
407 #define VIDEO_DECO_LONGTEXT N_( \
408     "VLC can avoid creating window caption, frames, etc... around the video" \
409     ", giving a \"minimal\" window.")
410
411 #define VOUT_FILTER_TEXT N_("Video output filter module")
412 #define VOUT_FILTER_LONGTEXT N_( \
413     "This adds post-processing filters to enhance the " \
414     "picture quality, for instance deinterlacing, or to clone or distort " \
415     "the video window.")
416
417 #define VIDEO_FILTER_TEXT N_("Video filter module")
418 #define VIDEO_FILTER_LONGTEXT N_( \
419     "This adds post-processing filters to enhance the " \
420     "picture quality, for instance deinterlacing, or distort" \
421     "the video.")
422
423 #define SNAP_PATH_TEXT N_("Video snapshot directory (or filename)")
424 #define SNAP_PATH_LONGTEXT N_( \
425     "Directory where the video snapshots will be stored.")
426
427 #define SNAP_PREFIX_TEXT N_("Video snapshot file prefix")
428 #define SNAP_PREFIX_LONGTEXT N_( \
429     "Video snapshot file prefix" )
430
431 #define SNAP_FORMAT_TEXT N_("Video snapshot format")
432 #define SNAP_FORMAT_LONGTEXT N_( \
433     "Image format which will be used to store the video snapshots" )
434
435 #define SNAP_PREVIEW_TEXT N_("Display video snapshot preview")
436 #define SNAP_PREVIEW_LONGTEXT N_( \
437     "Display the snapshot preview in the screen's top-left corner.")
438
439 #define SNAP_SEQUENTIAL_TEXT N_("Use sequential numbers instead of timestamps")
440 #define SNAP_SEQUENTIAL_LONGTEXT N_( \
441     "Use sequential numbers instead of timestamps for snapshot numbering")
442
443 #define CROP_TEXT N_("Video cropping")
444 #define CROP_LONGTEXT N_( \
445     "This forces the cropping of the source video. " \
446     "Accepted formats are x:y (4:3, 16:9, etc.) expressing the global image " \
447     "aspect.")
448
449 #define ASPECT_RATIO_TEXT N_("Source aspect ratio")
450 #define ASPECT_RATIO_LONGTEXT N_( \
451     "This forces the source aspect ratio. For instance, some DVDs claim " \
452     "to be 16:9 while they are actually 4:3. This can also be used as a " \
453     "hint for VLC when a movie does not have aspect ratio information. " \
454     "Accepted formats are x:y (4:3, 16:9, etc.) expressing the global image " \
455     "aspect, or a float value (1.25, 1.3333, etc.) expressing pixel " \
456     "squareness.")
457
458 #define CUSTOM_CROP_RATIOS_TEXT N_("Custom crop ratios list")
459 #define CUSTOM_CROP_RATIOS_LONGTEXT N_( \
460     "Comma seperated list of crop ratios which will be added in the " \
461     "interface's crop ratios list.")
462
463 #define CUSTOM_ASPECT_RATIOS_TEXT N_("Custom aspect ratios list")
464 #define CUSTOM_ASPECT_RATIOS_LONGTEXT N_( \
465     "Comma seperated list of aspect ratios which will be added in the " \
466     "interface's aspect ratio list.")
467
468 #define HDTV_FIX_TEXT N_("Fix HDTV height")
469 #define HDTV_FIX_LONGTEXT N_( \
470     "This allows proper handling of HDTV-1080 video format " \
471     "even if broken encoder incorrectly sets height to 1088 lines. " \
472     "You should only disable this option if your video has a " \
473     "non-standard format requiring all 1088 lines.")
474
475 #define MASPECT_RATIO_TEXT N_("Monitor pixel aspect ratio")
476 #define MASPECT_RATIO_LONGTEXT N_( \
477     "This forces the monitor aspect ratio. Most monitors have square " \
478     "pixels (1:1). If you have a 16:9 screen, you might need to change this " \
479     "to 4:3 in order to keep proportions.")
480
481 #define SKIP_FRAMES_TEXT N_("Skip frames")
482 #define SKIP_FRAMES_LONGTEXT N_( \
483     "Enables framedropping on MPEG2 stream. Framedropping " \
484     "occurs when your computer is not powerful enough" )
485
486 #define DROP_LATE_FRAMES_TEXT N_("Drop late frames")
487 #define DROP_LATE_FRAMES_LONGTEXT N_( \
488     "This drops frames that are late (arrive to the video output after " \
489     "their intended display date)." )
490
491 #define QUIET_SYNCHRO_TEXT N_("Quiet synchro")
492 #define QUIET_SYNCHRO_LONGTEXT N_( \
493     "This avoids flooding the message log with debug output from the " \
494     "video output synchronization mechanism.")
495
496 /*****************************************************************************
497  * Input
498  ****************************************************************************/
499
500 // Deprecated
501 #define INPUT_CAT_LONGTEXT N_( \
502     "These options allow you to modify the behavior of the input " \
503     "subsystem, such as the DVD or VCD device, the network interface " \
504     "settings or the subtitle channel.")
505
506 #define FRANCE_LONGTEXT N_( \
507     "If you live in France, it is not allowed to workaround any Digital " \
508     "Restrictions Management measure." )
509
510 #define CR_AVERAGE_TEXT N_("Clock reference average counter")
511 #define CR_AVERAGE_LONGTEXT N_( \
512     "When using the PVR input (or a very irregular source), you should " \
513     "set this to 10000.")
514
515 #define CLOCK_SYNCHRO_TEXT N_("Clock synchronisation")
516 #define CLOCK_SYNCHRO_LONGTEXT N_( \
517     "It is possible to disable the input clock synchronisation for " \
518     "real-time sources. Use this if you experience jerky playback of " \
519     "network streams.")
520
521 #define NETSYNC_TEXT N_("Network synchronisation" )
522 #define NETSYNC_LONGTEXT N_( "This allows you to remotely " \
523         "synchronise clocks for server and client. The detailed settings " \
524         "are available in Advanced / Network Sync." )
525
526 static int pi_clock_values[] = { -1, 0, 1 };
527 static const char *ppsz_clock_descriptions[] =
528 { N_("Default"), N_("Disable"), N_("Enable") };
529
530 #define SERVER_PORT_TEXT N_("UDP port")
531 #define SERVER_PORT_LONGTEXT N_( \
532     "This is the default port used for UDP streams. Default is 1234." )
533
534 #define MTU_TEXT N_("MTU of the network interface")
535 #define MTU_LONGTEXT N_( \
536     "This is the maximum application-layer packet size that can be " \
537     "transmitted over the network (in bytes).")
538 /* Should be less than 1500 - 8[ppp] - 40[ip6] - 8[udp] in any case. */
539 #define MTU_DEFAULT 1400
540
541 #define TTL_TEXT N_("Hop limit (TTL)")
542 #define TTL_LONGTEXT N_( \
543     "This is the hop limit (also known as \"Time-To-Live\" or TTL) of " \
544     "the multicast packets sent by the stream output (-1 = use operating " \
545     "system built-in default).")
546
547 #define MIFACE_TEXT N_("Multicast output interface")
548 #define MIFACE_LONGTEXT N_( \
549     "Default multicast interface. This overrides the routing table.")
550
551 #define MIFACE_ADDR_TEXT N_("IPv4 multicast output interface address")
552 #define MIFACE_ADDR_LONGTEXT N_( \
553     "IPv4 adress for the default multicast interface. This overrides " \
554     "the routing table.")
555
556 #define DSCP_TEXT N_("DiffServ Code Point")
557 #define DSCP_LONGTEXT N_("Differentiated Services Code Point " \
558     "for outgoing UDP streams (or IPv4 Type Of Service, " \
559     "or IPv6 Traffic Class). This is used for network Quality of Service.")
560
561 #define INPUT_PROGRAM_TEXT N_("Program")
562 #define INPUT_PROGRAM_LONGTEXT N_( \
563     "Choose the program to select by giving its Service ID. " \
564     "Only use this option if you want to read a multi-program stream " \
565     "(like DVB streams for example)." )
566
567 #define INPUT_PROGRAMS_TEXT N_("Programs")
568 #define INPUT_PROGRAMS_LONGTEXT N_( \
569     "Choose the programs to select by giving a comma-separated list of " \
570     "Service IDs (SIDs). " \
571     "Only use this option if you want to read a multi-program stream " \
572     "(like DVB streams for example)." )
573
574 /// \todo Document how to find it
575 #define INPUT_AUDIOTRACK_TEXT N_("Audio track")
576 #define INPUT_AUDIOTRACK_LONGTEXT N_( \
577     "Stream number of the audio track to use " \
578     "(from 0 to n).")
579
580 #define INPUT_SUBTRACK_TEXT N_("Subtitles track")
581 #define INPUT_SUBTRACK_LONGTEXT N_( \
582     "Stream number of the subtitle track to use " \
583     "(from 0 to n).")
584
585 #define INPUT_AUDIOTRACK_LANG_TEXT N_("Audio language")
586 #define INPUT_AUDIOTRACK_LANG_LONGTEXT N_( \
587     "Language of the audio track you want to use " \
588     "(comma separated, two or three letter country code).")
589
590 #define INPUT_SUBTRACK_LANG_TEXT N_("Subtitle language")
591 #define INPUT_SUBTRACK_LANG_LONGTEXT N_( \
592     "Language of the subtitle track you want to use " \
593     "(comma separated, two or tree letter country code).")
594
595 /// \todo Document how to find it
596 #define INPUT_AUDIOTRACK_ID_TEXT N_("Audio track ID")
597 #define INPUT_AUDIOTRACK_ID_LONGTEXT N_( \
598     "Stream ID of the audio track to use.")
599
600 #define INPUT_SUBTRACK_ID_TEXT N_("Subtitles track ID")
601 #define INPUT_SUBTRACK_ID_LONGTEXT N_( \
602     "Stream ID of the subtitle track to use.")
603
604 #define INPUT_REPEAT_TEXT N_("Input repetitions")
605 #define INPUT_REPEAT_LONGTEXT N_( \
606     "Number of time the same input will be repeated")
607
608 #define START_TIME_TEXT N_("Start time")
609 #define START_TIME_LONGTEXT N_( \
610     "The stream will start at this position (in seconds)." )
611
612 #define STOP_TIME_TEXT N_("Stop time")
613 #define STOP_TIME_LONGTEXT N_( \
614     "The stream will stop at this position (in seconds)." )
615
616 #define RUN_TIME_TEXT N_("Run time")
617 #define RUN_TIME_LONGTEXT N_( \
618     "The stream will run this duration (in seconds)." )
619
620 #define INPUT_LIST_TEXT N_("Input list")
621 #define INPUT_LIST_LONGTEXT N_( \
622     "You can give a comma-separated list " \
623     "of inputs that will be concatenated together after the normal one.")
624
625 #define INPUT_SLAVE_TEXT N_("Input slave (experimental)")
626 #define INPUT_SLAVE_LONGTEXT N_( \
627     "This allows you to play from several inputs at " \
628     "the same time. This feature is experimental, not all formats " \
629     "are supported. Use a '#' separated list of inputs.")
630
631 #define BOOKMARKS_TEXT N_("Bookmarks list for a stream")
632 #define BOOKMARKS_LONGTEXT N_( \
633     "You can manually give a list of bookmarks for a stream in " \
634     "the form \"{name=bookmark-name,time=optional-time-offset," \
635     "bytes=optional-byte-offset},{...}\"")
636
637 // DEPRECATED
638 #define SUB_CAT_LONGTEXT N_( \
639     "These options allow you to modify the behavior of the subpictures " \
640     "subsystem. You can for example enable subpictures filters (logo, etc.). " \
641     "Enable these filters here and configure them in the " \
642     "\"subpictures filters\" modules section. You can also set many " \
643     "miscellaneous subpictures options." )
644
645 #define SUB_MARGIN_TEXT N_("Force subtitle position")
646 #define SUB_MARGIN_LONGTEXT N_( \
647     "You can use this option to place the subtitles under the movie, " \
648     "instead of over the movie. Try several positions.")
649
650 #define SPU_TEXT N_("Enable sub-pictures")
651 #define SPU_LONGTEXT N_( \
652     "You can completely disable the sub-picture processing.")
653
654 #define OSD_TEXT N_("On Screen Display")
655 #define OSD_LONGTEXT N_( \
656     "VLC can display messages on the video. This is called OSD (On Screen " \
657     "Display).")
658
659 #define TEXTRENDERER_TEXT N_("Text rendering module")
660 #define TEXTRENDERER_LONGTEXT N_( \
661     "VLC normally uses Freetype for rendering, but this allows you to use svg for instance.")
662
663 #define SUB_FILTER_TEXT N_("Subpictures filter module")
664 #define SUB_FILTER_LONGTEXT N_( \
665     "This adds so-called \"subpicture filters\". These filters overlay " \
666     "some images or text over the video (like a logo, arbitrary text...)." )
667
668 #define SUB_AUTO_TEXT N_("Autodetect subtitle files")
669 #define SUB_AUTO_LONGTEXT N_( \
670     "Automatically detect a subtitle file, if no subtitle filename is " \
671     "specified (based on the filename of the movie).")
672
673 #define SUB_FUZZY_TEXT N_("Subtitle autodetection fuzziness")
674 #define SUB_FUZZY_LONGTEXT N_( \
675     "This determines how fuzzy subtitle and movie filename matching " \
676     "will be. Options are:\n" \
677     "0 = no subtitles autodetected\n" \
678     "1 = any subtitle file\n" \
679     "2 = any subtitle file containing the movie name\n" \
680     "3 = subtitle file matching the movie name with additional chars\n" \
681     "4 = subtitle file matching the movie name exactly")
682
683 #define SUB_PATH_TEXT N_("Subtitle autodetection paths")
684 #define SUB_PATH_LONGTEXT N_( \
685     "Look for a subtitle file in those paths too, if your subtitle " \
686     "file was not found in the current directory.")
687
688 #define SUB_FILE_TEXT N_("Use subtitle file")
689 #define SUB_FILE_LONGTEXT N_( \
690     "Load this subtitle file. To be used when autodetect cannot detect " \
691     "your subtitle file.")
692
693 #define DVD_DEV_TEXT N_("DVD device")
694 #ifdef WIN32
695 #define DVD_DEV_LONGTEXT N_( \
696     "This is the default DVD drive (or file) to use. Don't forget the colon " \
697     "after the drive letter (eg. D:)")
698 #else
699 #define DVD_DEV_LONGTEXT N_( \
700     "This is the default DVD device to use.")
701 #endif
702
703 #define VCD_DEV_TEXT N_("VCD device")
704 #ifdef HAVE_VCDX
705 #define VCD_DEV_LONGTEXT N_( \
706     "This is the default VCD device to use. " \
707     "If you don't specify anything, we'll scan for a suitable CD-ROM device." )
708 #else
709 #define VCD_DEV_LONGTEXT N_( \
710     "This is the default VCD device to use." )
711 #endif
712
713 #define CDAUDIO_DEV_TEXT N_("Audio CD device")
714 #ifdef HAVE_CDDAX
715 #define CDAUDIO_DEV_LONGTEXT N_( \
716     "This is the default Audio CD device to use. " \
717     "If you don't specify anything, we'll scan for a suitable CD-ROM device." )
718 #else
719 #define CDAUDIO_DEV_LONGTEXT N_( \
720     "This is the default Audio CD device to use." )
721 #endif
722
723 #define IPV6_TEXT N_("Force IPv6")
724 #define IPV6_LONGTEXT N_( \
725     "IPv6 will be used by default for all connections.")
726
727 #define IPV4_TEXT N_("Force IPv4")
728 #define IPV4_LONGTEXT N_( \
729     "IPv4 will be used by default for all connections.")
730
731 #define TIMEOUT_TEXT N_("TCP connection timeout")
732 #define TIMEOUT_LONGTEXT N_( \
733     "Default TCP connection timeout (in milliseconds). " )
734
735 #define SOCKS_SERVER_TEXT N_("SOCKS server")
736 #define SOCKS_SERVER_LONGTEXT N_( \
737     "SOCKS proxy server to use. This must be of the form " \
738     "address:port. It will be used for all TCP connections" )
739
740 #define SOCKS_USER_TEXT N_("SOCKS user name")
741 #define SOCKS_USER_LONGTEXT N_( \
742     "User name to be used for connection to the SOCKS proxy." )
743
744 #define SOCKS_PASS_TEXT N_("SOCKS password")
745 #define SOCKS_PASS_LONGTEXT N_( \
746     "Password to be used for connection to the SOCKS proxy." )
747
748 #define META_TITLE_TEXT N_("Title metadata")
749 #define META_TITLE_LONGTEXT N_( \
750      "Allows you to specify a \"title\" metadata for an input.")
751
752 #define META_AUTHOR_TEXT N_("Author metadata")
753 #define META_AUTHOR_LONGTEXT N_( \
754      "Allows you to specify an \"author\" metadata for an input.")
755
756 #define META_ARTIST_TEXT N_("Artist metadata")
757 #define META_ARTIST_LONGTEXT N_( \
758      "Allows you to specify an \"artist\" metadata for an input.")
759
760 #define META_GENRE_TEXT N_("Genre metadata")
761 #define META_GENRE_LONGTEXT N_( \
762      "Allows you to specify a \"genre\" metadata for an input.")
763
764 #define META_CPYR_TEXT N_("Copyright metadata")
765 #define META_CPYR_LONGTEXT N_( \
766      "Allows you to specify a \"copyright\" metadata for an input.")
767
768 #define META_DESCR_TEXT N_("Description metadata")
769 #define META_DESCR_LONGTEXT N_( \
770      "Allows you to specify a \"description\" metadata for an input.")
771
772 #define META_DATE_TEXT N_("Date metadata")
773 #define META_DATE_LONGTEXT N_( \
774      "Allows you to specify a \"date\" metadata for an input.")
775
776 #define META_URL_TEXT N_("URL metadata")
777 #define META_URL_LONGTEXT N_( \
778      "Allows you to specify a \"url\" metadata for an input.")
779
780 // DEPRECATED
781 #define CODEC_CAT_LONGTEXT N_( \
782     "This option can be used to alter the way VLC selects " \
783     "its codecs (decompression methods). Only advanced users should " \
784     "alter this option as it can break playback of all your streams." )
785
786 #define CODEC_TEXT N_("Preferred decoders list")
787 #define CODEC_LONGTEXT N_( \
788     "List of codecs that VLC will use in " \
789     "priority. For instance, 'dummy,a52' will try the dummy and a52 codecs " \
790     "before trying the other ones. Only advanced users should " \
791     "alter this option as it can break playback of all your streams." )
792
793 #define ENCODER_TEXT N_("Preferred encoders list")
794 #define ENCODER_LONGTEXT N_( \
795     "This allows you to select a list of encoders that VLC will use in " \
796     "priority.")
797
798 #define SYSTEM_CODEC_TEXT N_("Prefer system plugins over vlc")
799 #define SYSTEM_CODEC_LONGTEXT N_( \
800     "Indicates whether VLC will prefer native plugins installed " \
801     "on system over VLC owns plugins whenever a choice is available." )
802
803 /*****************************************************************************
804  * Sout
805  ****************************************************************************/
806
807 // DEPRECATED
808 #define SOUT_CAT_LONGTEXT N_( \
809     "These options allow you to set default global options for the " \
810     "stream output subsystem." )
811
812 #define SOUT_TEXT N_("Default stream output chain")
813 #define SOUT_LONGTEXT N_( \
814     "You can enter here a default stream output chain. Refer to "\
815     "the documentation to learn how to build such chains." \
816     "Warning: this chain will be enabled for all streams." )
817
818 #define SOUT_ALL_TEXT N_("Enable streaming of all ES")
819 #define SOUT_ALL_LONGTEXT N_( \
820     "Stream all elementary streams (video, audio and subtitles)")
821
822 #define SOUT_DISPLAY_TEXT N_("Display while streaming")
823 #define SOUT_DISPLAY_LONGTEXT N_( \
824     "Play locally the stream while streaming it.")
825
826 #define SOUT_VIDEO_TEXT N_("Enable video stream output")
827 #define SOUT_VIDEO_LONGTEXT N_( \
828     "Choose whether the video stream should be redirected to " \
829     "the stream output facility when this last one is enabled.")
830
831 #define SOUT_AUDIO_TEXT N_("Enable audio stream output")
832 #define SOUT_AUDIO_LONGTEXT N_( \
833     "Choose whether the audio stream should be redirected to " \
834     "the stream output facility when this last one is enabled.")
835
836 #define SOUT_SPU_TEXT N_("Enable SPU stream output")
837 #define SOUT_SPU_LONGTEXT N_( \
838     "Choose whether the SPU streams should be redirected to " \
839     "the stream output facility when this last one is enabled.")
840
841 #define SOUT_KEEP_TEXT N_("Keep stream output open" )
842 #define SOUT_KEEP_LONGTEXT N_( \
843     "This allows you to keep an unique stream output instance across " \
844     "multiple playlist item (automatically insert the gather stream output " \
845     "if not specified)" )
846
847 #define SOUT_MUX_CACHING_TEXT N_("Stream output muxer caching (ms)")
848 #define SOUT_MUX_CACHING_LONGTEXT N_( \
849     "This allow you to configure the initial caching amount for stream output " \
850     " muxer. This value should be set in milliseconds." )
851
852 #define PACKETIZER_TEXT N_("Preferred packetizer list")
853 #define PACKETIZER_LONGTEXT N_( \
854     "This allows you to select the order in which VLC will choose its " \
855     "packetizers."  )
856
857 #define MUX_TEXT N_("Mux module")
858 #define MUX_LONGTEXT N_( \
859     "This is a legacy entry to let you configure mux modules")
860
861 #define ACCESS_OUTPUT_TEXT N_("Access output module")
862 #define ACCESS_OUTPUT_LONGTEXT N_( \
863     "This is a legacy entry to let you configure access output modules")
864
865 #define ANN_SAPCTRL_TEXT N_("Control SAP flow")
866 #define ANN_SAPCTRL_LONGTEXT N_( \
867     "If this option is enabled, the flow on " \
868     "the SAP multicast address will be controlled. This is needed if you " \
869     "want to make announcements on the MBone." )
870
871 #define ANN_SAPINTV_TEXT N_("SAP announcement interval")
872 #define ANN_SAPINTV_LONGTEXT N_( \
873     "When the SAP flow control is disabled, " \
874     "this lets you set the fixed interval between SAP announcements." )
875
876 /*****************************************************************************
877  * Advanced
878  ****************************************************************************/
879
880 // DEPRECATED
881 #define CPU_CAT_LONGTEXT N_( \
882     "These options allow you to enable special CPU optimizations. " \
883     "You should always leave all these enabled." )
884
885 #define FPU_TEXT N_("Enable FPU support")
886 #define FPU_LONGTEXT N_( \
887     "If your processor has a floating point calculation unit, VLC can take " \
888     "advantage of it.")
889
890 #define MMX_TEXT N_("Enable CPU MMX support")
891 #define MMX_LONGTEXT N_( \
892     "If your processor supports the MMX instructions set, VLC can take " \
893     "advantage of them.")
894
895 #define THREE_DN_TEXT N_("Enable CPU 3D Now! support")
896 #define THREE_DN_LONGTEXT N_( \
897     "If your processor supports the 3D Now! instructions set, VLC can take " \
898     "advantage of them.")
899
900 #define MMXEXT_TEXT N_("Enable CPU MMX EXT support")
901 #define MMXEXT_LONGTEXT N_( \
902     "If your processor supports the MMX EXT instructions set, VLC can take " \
903     "advantage of them.")
904
905 #define SSE_TEXT N_("Enable CPU SSE support")
906 #define SSE_LONGTEXT N_( \
907     "If your processor supports the SSE instructions set, VLC can take " \
908     "advantage of them.")
909
910 #define SSE2_TEXT N_("Enable CPU SSE2 support")
911 #define SSE2_LONGTEXT N_( \
912     "If your processor supports the SSE2 instructions set, VLC can take " \
913     "advantage of them.")
914
915 #define ALTIVEC_TEXT N_("Enable CPU AltiVec support")
916 #define ALTIVEC_LONGTEXT N_( \
917     "If your processor supports the AltiVec instructions set, VLC can take " \
918     "advantage of them.")
919
920 // DEPRECATED
921 #define MISC_CAT_LONGTEXT N_( \
922     "These options allow you to select default modules. Leave these " \
923     "alone unless you really know what you are doing." )
924
925 #define MEMCPY_TEXT N_("Memory copy module")
926 #define MEMCPY_LONGTEXT N_( \
927     "You can select which memory copy module you want to use. By default " \
928     "VLC will select the fastest one supported by your hardware.")
929
930 #define ACCESS_TEXT N_("Access module")
931 #define ACCESS_LONGTEXT N_( \
932     "This allows you to force an access module. You can use it if " \
933     "the correct access is not automatically detected. You should not "\
934     "set this as a global option unless you really know what you are doing." )
935
936 #define ACCESS_FILTER_TEXT N_("Access filter module")
937 #define ACCESS_FILTER_LONGTEXT N_( \
938     "Access filters are used to modify the stream that is being read. " \
939     "This is used for instance for timeshifting.")
940
941 #define DEMUX_TEXT N_("Demux module")
942 #define DEMUX_LONGTEXT N_( \
943     "Demultiplexers are used to separate the \"elementary\" streams " \
944     "(like audio and video streams). You can use it if " \
945     "the correct demuxer is not automatically detected. You should not "\
946     "set this as a global option unless you really know what you are doing." )
947
948 #define RT_PRIORITY_TEXT N_("Allow real-time priority")
949 #define RT_PRIORITY_LONGTEXT N_( \
950     "Running VLC in real-time priority will allow for much more precise " \
951     "scheduling and yield better, especially when streaming content. " \
952     "It can however lock up your whole machine, or make it very very " \
953     "slow. You should only activate this if you know what you're " \
954     "doing.")
955
956 #define RT_OFFSET_TEXT N_("Adjust VLC priority")
957 #define RT_OFFSET_LONGTEXT N_( \
958     "This option adds an offset (positive or negative) to VLC default " \
959     "priorities. You can use it to tune VLC priority against other " \
960     "programs, or against other VLC instances.")
961
962 #define MINIMIZE_THREADS_TEXT N_("Minimize number of threads")
963 #define MINIMIZE_THREADS_LONGTEXT N_( \
964      "This option minimizes the number of threads needed to run VLC.")
965
966 #define PLUGIN_PATH_TEXT N_("Modules search path")
967 #define PLUGIN_PATH_LONGTEXT N_( \
968     "Additional path for VLC to look for its modules.")
969
970 #define VLM_CONF_TEXT N_("VLM configuration file")
971 #define VLM_CONF_LONGTEXT N_( \
972     "Read a VLM configuration file as soon as VLM is started." )
973
974 #define PLUGINS_CACHE_TEXT N_("Use a plugins cache")
975 #define PLUGINS_CACHE_LONGTEXT N_( \
976     "Use a plugins cache which will greatly improve the startup time of VLC.")
977
978 #define STATS_TEXT N_("Collect statistics")
979 #define STATS_LONGTEXT N_( \
980      "Collect miscellaneous statistics.")
981
982 #define DAEMON_TEXT N_("Run as daemon process")
983 #define DAEMON_LONGTEXT N_( \
984      "Runs VLC as a background daemon process.")
985
986 #define PIDFILE_TEXT N_("Write process id to file")
987 #define PIDFILE_LONGTEXT N_( \
988        "Writes process id into specified file.")
989
990 #define FILE_LOG_TEXT N_( "Log to file" )
991 #define FILE_LOG_LONGTEXT N_( \
992     "Log all VLC messages to a text file." )
993
994 #define SYSLOG_TEXT N_( "Log to syslog" )
995 #define SYSLOG_LONGTEXT N_( \
996     "Log all VLC messages to syslog (UNIX systems)." )
997
998 #define ONEINSTANCE_WIN_TEXT N_("Allow only one running instance")
999 #define ONEINSTANCE_WIN_LONGTEXT N_( \
1000     "Allowing only one running instance of VLC can sometimes be useful, " \
1001     "for example if you associated VLC with some media types and you " \
1002     "don't want a new instance of VLC to be opened each time you " \
1003     "double-click on a file in the explorer. This option will allow you " \
1004     "to play the file with the already running instance or enqueue it.")
1005
1006 #define ONEINSTANCE_DBUS_TEXT ONEINSTANCE_WIN_TEXT
1007 #define ONEINSTANCE_DBUS_LONGTEXT N_( \
1008     "Allowing only one running instance of VLC can sometimes be useful, " \
1009     "for example if you associated VLC with some media types and you " \
1010     "don't want a new instance of VLC to be opened each time you " \
1011     "open a file in your file manager. This option will allow you " \
1012     "to play the file with the already running instance or enqueue it. " \
1013     "This option require the D-Bus session daemon to be active " \
1014     "and the running instance of VLC to use D-Bus control interface.")
1015
1016 #define STARTEDFROMFILE_TEXT N_("VLC is started from file association")
1017 #define STARTEDFROMFILE_LONGTEXT N_( \
1018     "Tell VLC that it is being launched due to a file association in the OS" )
1019
1020 #define ONEINSTANCEWHENSTARTEDFROMFILE_TEXT N_( \
1021     "One instance when started from file")
1022 #define ONEINSTANCEWHENSTARTEDFROMFILE_LONGTEXT N_( \
1023     "Allow only one running instance when started from file.")
1024
1025 #define HPRIORITY_TEXT N_("Increase the priority of the process")
1026 #define HPRIORITY_LONGTEXT N_( \
1027     "Increasing the priority of the process will very likely improve your " \
1028     "playing experience as it allows VLC not to be disturbed by other " \
1029     "applications that could otherwise take too much processor time. " \
1030     "However be advised that in certain circumstances (bugs) VLC could take " \
1031     "all the processor time and render the whole system unresponsive which " \
1032     "might require a reboot of your machine.")
1033
1034 #define PLAYLISTENQUEUE_TEXT N_( \
1035     "Enqueue items to playlist when in one instance mode")
1036 #define PLAYLISTENQUEUE_LONGTEXT N_( \
1037     "When using the one instance only option, enqueue items to playlist " \
1038     "and keep playing current item.")
1039
1040 /*****************************************************************************
1041  * Playlist
1042  ****************************************************************************/
1043
1044 // DEPRECATED
1045 #define PLAYLIST_CAT_LONGTEXT N_( \
1046      "These options define the behavior of the playlist. Some " \
1047      "of them can be overridden in the playlist dialog box." )
1048
1049 #define PREPARSE_TEXT N_( "Automatically preparse files")
1050 #define PREPARSE_LONGTEXT N_( \
1051     "Automatically preparse files added to the playlist " \
1052     "(to retrieve some metadata)." )
1053
1054 #define ALBUM_ART_TEXT N_( "Album art policy" )
1055 #define ALBUM_ART_LONGTEXT N_( \
1056     "Choose how album art will be downloaded." );
1057
1058 static int pi_albumart_values[] = { ALBUM_ART_WHEN_ASKED,
1059                                     ALBUM_ART_WHEN_PLAYED,
1060                                     ALBUM_ART_ALL };
1061 static const char *ppsz_albumart_descriptions[] =
1062     { N_("Manual download only"),
1063       N_("When track starts playing"),
1064       N_("As soon as track is added") };
1065
1066 #define SD_TEXT N_( "Services discovery modules")
1067 #define SD_LONGTEXT N_( \
1068      "Specifies the services discovery modules to load, separated by " \
1069      "semi-colons. Typical values are sap, hal, ..." )
1070
1071 #define RANDOM_TEXT N_("Play files randomly forever")
1072 #define RANDOM_LONGTEXT N_( \
1073     "VLC will randomly play files in the playlist until interrupted.")
1074
1075 #define LOOP_TEXT N_("Repeat all")
1076 #define LOOP_LONGTEXT N_( \
1077     "VLC will keep playing the playlist indefinitely." )
1078
1079 #define REPEAT_TEXT N_("Repeat current item")
1080 #define REPEAT_LONGTEXT N_( \
1081     "VLC will keep playing the current playlist item." )
1082
1083 #define PAS_TEXT N_("Play and stop")
1084 #define PAS_LONGTEXT N_( \
1085     "Stop the playlist after each played playlist item." )
1086
1087 #define PAE_TEXT N_("Play and exit")
1088 #define PAE_LONGTEXT N_( \
1089                 "Exit if there are no more items in the playlist." )
1090
1091 #define ML_TEXT N_("Use media library")
1092 #define ML_LONGTEXT N_( \
1093     "The media library is automatically saved and reloaded each time you " \
1094     "start VLC." )
1095
1096 #define PLTREE_TEXT N_("Use playlist tree")
1097 #define PLTREE_LONGTEXT N_( \
1098     "The playlist can use a tree to categorize some items, like the " \
1099     "contents of a directory. \"Default\" means that the tree will only " \
1100     "be used when really needed." )
1101 static int pi_pltree_values[] = { 0, 1, 2 };
1102 static const char *ppsz_pltree_descriptions[] = { N_("Default"), N_("Always"), N_("Never") };
1103
1104
1105
1106 /*****************************************************************************
1107  * Hotkeys
1108  ****************************************************************************/
1109
1110 // DEPRECATED
1111 #define HOTKEY_CAT_LONGTEXT N_( "These settings are the global VLC key " \
1112     "bindings, known as \"hotkeys\"." )
1113
1114 #define TOGGLE_FULLSCREEN_KEY_TEXT N_("Fullscreen")
1115 #define TOGGLE_FULLSCREEN_KEY_LONGTEXT N_("Select the hotkey to use to swap fullscreen state.")
1116 #define LEAVE_FULLSCREEN_KEY_TEXT N_("Leave fullscreen")
1117 #define LEAVE_FULLSCREEN_KEY_LONGTEXT N_("Select the hotkey to use to leave fullscreen state.")
1118 #define PLAY_PAUSE_KEY_TEXT N_("Play/Pause")
1119 #define PLAY_PAUSE_KEY_LONGTEXT N_("Select the hotkey to use to swap paused state.")
1120 #define PAUSE_KEY_TEXT N_("Pause only")
1121 #define PAUSE_KEY_LONGTEXT N_("Select the hotkey to use to pause.")
1122 #define PLAY_KEY_TEXT N_("Play only")
1123 #define PLAY_KEY_LONGTEXT N_("Select the hotkey to use to play.")
1124 #define FASTER_KEY_TEXT N_("Faster")
1125 #define FASTER_KEY_LONGTEXT N_("Select the hotkey to use for fast forward playback.")
1126 #define SLOWER_KEY_TEXT N_("Slower")
1127 #define SLOWER_KEY_LONGTEXT N_("Select the hotkey to use for slow motion playback.")
1128 #define NEXT_KEY_TEXT N_("Next")
1129 #define NEXT_KEY_LONGTEXT N_("Select the hotkey to use to skip to the next item in the playlist.")
1130 #define PREV_KEY_TEXT N_("Previous")
1131 #define PREV_KEY_LONGTEXT N_("Select the hotkey to use to skip to the previous item in the playlist.")
1132 #define STOP_KEY_TEXT N_("Stop")
1133 #define STOP_KEY_LONGTEXT N_("Select the hotkey to stop playback.")
1134 #define POSITION_KEY_TEXT N_("Position")
1135 #define POSITION_KEY_LONGTEXT N_("Select the hotkey to display the position.")
1136
1137 #define JBEXTRASHORT_KEY_TEXT N_("Very short backwards jump")
1138 #define JBEXTRASHORT_KEY_LONGTEXT \
1139     N_("Select the hotkey to make a very short backwards jump.")
1140 #define JBSHORT_KEY_TEXT N_("Short backwards jump")
1141 #define JBSHORT_KEY_LONGTEXT \
1142     N_("Select the hotkey to make a short backwards jump.")
1143 #define JBMEDIUM_KEY_TEXT N_("Medium backwards jump")
1144 #define JBMEDIUM_KEY_LONGTEXT \
1145     N_("Select the hotkey to make a medium backwards jump.")
1146 #define JBLONG_KEY_TEXT N_("Long backwards jump")
1147 #define JBLONG_KEY_LONGTEXT \
1148     N_("Select the hotkey to make a long backwards jump.")
1149
1150 #define JFEXTRASHORT_KEY_TEXT N_("Very short forward jump")
1151 #define JFEXTRASHORT_KEY_LONGTEXT \
1152     N_("Select the hotkey to make a very short forward jump.")
1153 #define JFSHORT_KEY_TEXT N_("Short forward jump")
1154 #define JFSHORT_KEY_LONGTEXT \
1155     N_("Select the hotkey to make a short forward jump.")
1156 #define JFMEDIUM_KEY_TEXT N_("Medium forward jump")
1157 #define JFMEDIUM_KEY_LONGTEXT \
1158     N_("Select the hotkey to make a medium forward jump.")
1159 #define JFLONG_KEY_TEXT N_("Long forward jump")
1160 #define JFLONG_KEY_LONGTEXT \
1161     N_("Select the hotkey to make a long forward jump.")
1162
1163 #define JIEXTRASHORT_TEXT N_("Very short jump length")
1164 #define JIEXTRASHORT_LONGTEXT N_("Very short jump length, in seconds.")
1165 #define JISHORT_TEXT N_("Short jump length")
1166 #define JISHORT_LONGTEXT N_("Short jump length, in seconds.")
1167 #define JIMEDIUM_TEXT N_("Medium jump length")
1168 #define JIMEDIUM_LONGTEXT N_("Medium jump length, in seconds.")
1169 #define JILONG_TEXT N_("Long jump length")
1170 #define JILONG_LONGTEXT N_("Long jump length, in seconds.")
1171
1172 #define QUIT_KEY_TEXT N_("Quit")
1173 #define QUIT_KEY_LONGTEXT N_("Select the hotkey to quit the application.")
1174 #define NAV_UP_KEY_TEXT N_("Navigate up")
1175 #define NAV_UP_KEY_LONGTEXT N_("Select the key to move the selector up in DVD menus.")
1176 #define NAV_DOWN_KEY_TEXT N_("Navigate down")
1177 #define NAV_DOWN_KEY_LONGTEXT N_("Select the key to move the selector down in DVD menus.")
1178 #define NAV_LEFT_KEY_TEXT N_("Navigate left")
1179 #define NAV_LEFT_KEY_LONGTEXT N_("Select the key to move the selector left in DVD menus.")
1180 #define NAV_RIGHT_KEY_TEXT N_("Navigate right")
1181 #define NAV_RIGHT_KEY_LONGTEXT N_("Select the key to move the selector right in DVD menus.")
1182 #define NAV_ACTIVATE_KEY_TEXT N_("Activate")
1183 #define NAV_ACTIVATE_KEY_LONGTEXT N_("Select the key to activate selected item in DVD menus.")
1184 #define DISC_MENU_TEXT N_("Go to the DVD menu")
1185 #define DISC_MENU_LONGTEXT N_("Select the key to take you to the DVD menu")
1186 #define TITLE_PREV_TEXT N_("Select previous DVD title")
1187 #define TITLE_PREV_LONGTEXT N_("Select the key to choose the previous title from the DVD")
1188 #define TITLE_NEXT_TEXT N_("Select next DVD title")
1189 #define TITLE_NEXT_LONGTEXT N_("Select the key to choose the next title from the DVD")
1190 #define CHAPTER_PREV_TEXT N_("Select prev DVD chapter")
1191 #define CHAPTER_PREV_LONGTEXT N_("Select the key to choose the previous chapter from the DVD")
1192 #define CHAPTER_NEXT_TEXT N_("Select next DVD chapter")
1193 #define CHAPTER_NEXT_LONGTEXT N_("Select the key to choose the next chapter from the DVD")
1194 #define VOL_UP_KEY_TEXT N_("Volume up")
1195 #define VOL_UP_KEY_LONGTEXT N_("Select the key to increase audio volume.")
1196 #define VOL_DOWN_KEY_TEXT N_("Volume down")
1197 #define VOL_DOWN_KEY_LONGTEXT N_("Select the key to decrease audio volume.")
1198 #define VOL_MUTE_KEY_TEXT N_("Mute")
1199 #define VOL_MUTE_KEY_LONGTEXT N_("Select the key to mute audio.")
1200 #define SUBDELAY_UP_KEY_TEXT N_("Subtitle delay up")
1201 #define SUBDELAY_UP_KEY_LONGTEXT N_("Select the key to increase the subtitle delay.")
1202 #define SUBDELAY_DOWN_KEY_TEXT N_("Subtitle delay down")
1203 #define SUBDELAY_DOWN_KEY_LONGTEXT N_("Select the key to decrease the subtitle delay.")
1204 #define AUDIODELAY_UP_KEY_TEXT N_("Audio delay up")
1205 #define AUDIODELAY_UP_KEY_LONGTEXT N_("Select the key to increase the audio delay.")
1206 #define AUDIODELAY_DOWN_KEY_TEXT N_("Audio delay down")
1207 #define AUDIODELAY_DOWN_KEY_LONGTEXT N_("Select the key to decrease the audio delay.")
1208 #define PLAY_BOOKMARK1_KEY_TEXT N_("Play playlist bookmark 1")
1209 #define PLAY_BOOKMARK2_KEY_TEXT N_("Play playlist bookmark 2")
1210 #define PLAY_BOOKMARK3_KEY_TEXT N_("Play playlist bookmark 3")
1211 #define PLAY_BOOKMARK4_KEY_TEXT N_("Play playlist bookmark 4")
1212 #define PLAY_BOOKMARK5_KEY_TEXT N_("Play playlist bookmark 5")
1213 #define PLAY_BOOKMARK6_KEY_TEXT N_("Play playlist bookmark 6")
1214 #define PLAY_BOOKMARK7_KEY_TEXT N_("Play playlist bookmark 7")
1215 #define PLAY_BOOKMARK8_KEY_TEXT N_("Play playlist bookmark 8")
1216 #define PLAY_BOOKMARK9_KEY_TEXT N_("Play playlist bookmark 9")
1217 #define PLAY_BOOKMARK10_KEY_TEXT N_("Play playlist bookmark 10")
1218 #define PLAY_BOOKMARK_KEY_LONGTEXT N_("Select the key to play this bookmark.")
1219 #define SET_BOOKMARK1_KEY_TEXT N_("Set playlist bookmark 1")
1220 #define SET_BOOKMARK2_KEY_TEXT N_("Set playlist bookmark 2")
1221 #define SET_BOOKMARK3_KEY_TEXT N_("Set playlist bookmark 3")
1222 #define SET_BOOKMARK4_KEY_TEXT N_("Set playlist bookmark 4")
1223 #define SET_BOOKMARK5_KEY_TEXT N_("Set playlist bookmark 5")
1224 #define SET_BOOKMARK6_KEY_TEXT N_("Set playlist bookmark 6")
1225 #define SET_BOOKMARK7_KEY_TEXT N_("Set playlist bookmark 7")
1226 #define SET_BOOKMARK8_KEY_TEXT N_("Set playlist bookmark 8")
1227 #define SET_BOOKMARK9_KEY_TEXT N_("Set playlist bookmark 9")
1228 #define SET_BOOKMARK10_KEY_TEXT N_("Set playlist bookmark 10")
1229 #define SET_BOOKMARK_KEY_LONGTEXT N_("Select the key to set this playlist bookmark.")
1230
1231 #define BOOKMARK1_TEXT N_("Playlist bookmark 1")
1232 #define BOOKMARK2_TEXT N_("Playlist bookmark 2")
1233 #define BOOKMARK3_TEXT N_("Playlist bookmark 3")
1234 #define BOOKMARK4_TEXT N_("Playlist bookmark 4")
1235 #define BOOKMARK5_TEXT N_("Playlist bookmark 5")
1236 #define BOOKMARK6_TEXT N_("Playlist bookmark 6")
1237 #define BOOKMARK7_TEXT N_("Playlist bookmark 7")
1238 #define BOOKMARK8_TEXT N_("Playlist bookmark 8")
1239 #define BOOKMARK9_TEXT N_("Playlist bookmark 9")
1240 #define BOOKMARK10_TEXT N_("Playlist bookmark 10")
1241 #define BOOKMARK_LONGTEXT N_( \
1242       "This allows you to define playlist bookmarks.")
1243
1244 #define HISTORY_BACK_TEXT N_("Go back in browsing history")
1245 #define HISTORY_BACK_LONGTEXT N_("Select the key to go back (to the previous media item) in the browsing history.")
1246 #define HISTORY_FORWARD_TEXT N_("Go forward in browsing history")
1247 #define HISTORY_FORWARD_LONGTEXT N_("Select the key to go forward (to the next media item) in the browsing history.")
1248
1249 #define AUDIO_TRACK_KEY_TEXT N_("Cycle audio track")
1250 #define AUDIO_TRACK_KEY_LONGTEXT N_("Cycle through the available audio tracks(languages).")
1251 #define SUBTITLE_TRACK_KEY_TEXT N_("Cycle subtitle track")
1252 #define SUBTITLE_TRACK_KEY_LONGTEXT N_("Cycle through the available subtitle tracks.")
1253 #define ASPECT_RATIO_KEY_TEXT N_("Cycle source aspect ratio")
1254 #define ASPECT_RATIO_KEY_LONGTEXT N_("Cycle through a predefined list of source aspect ratios.")
1255 #define CROP_KEY_TEXT N_("Cycle video crop")
1256 #define CROP_KEY_LONGTEXT N_("Cycle through a predefined list of crop formats.")
1257 #define DEINTERLACE_KEY_TEXT N_("Cycle deinterlace modes")
1258 #define DEINTERLACE_KEY_LONGTEXT N_("Cycle through deinterlace modes.")
1259 #define INTF_SHOW_KEY_TEXT N_("Show interface")
1260 #define INTF_SHOW_KEY_LONGTEXT N_("Raise the interface above all other windows.")
1261 #define INTF_HIDE_KEY_TEXT N_("Hide interface")
1262 #define INTF_HIDE_KEY_LONGTEXT N_("Lower the interface below all other windows.")
1263 #define SNAP_KEY_TEXT N_("Take video snapshot")
1264 #define SNAP_KEY_LONGTEXT N_("Takes a video snapshot and writes it to disk.")
1265
1266 #define RECORD_KEY_TEXT N_("Record")
1267 #define RECORD_KEY_LONGTEXT N_("Record access filter start/stop.")
1268 #define DUMP_KEY_TEXT N_("Dump")
1269 #define DUMP_KEY_LONGTEXT N_("Media dump access filter trigger.")
1270
1271 #define LOOP_KEY_TEXT N_("Normal/Repeat/Loop")
1272 #define LOOP_KEY_LONGTEXT N_("Toggle Normal/Repeat/Loop playlist modes")
1273
1274 #define RANDOM_KEY_TEXT N_("Random")
1275 #define RANDOM_KEY_LONGTEXT N_("Toggle random playlist playback")
1276
1277 #define ZOOM_KEY_TEXT N_("Zoom")
1278 #define ZOOM_KEY_LONGTEXT N_("Zoom")
1279
1280 #define UNZOOM_KEY_TEXT N_("Un-Zoom")
1281 #define UNZOOM_KEY_LONGTEXT N_("Un-Zoom")
1282
1283 #define CROP_TOP_KEY_TEXT N_("Crop one pixel from the top of the video")
1284 #define CROP_TOP_KEY_LONGTEXT N_("Crop one pixel from the top of the video")
1285 #define UNCROP_TOP_KEY_TEXT N_("Uncrop one pixel from the top of the video")
1286 #define UNCROP_TOP_KEY_LONGTEXT N_("Uncrop one pixel from the top of the video")
1287
1288 #define CROP_LEFT_KEY_TEXT N_("Crop one pixel from the left of the video")
1289 #define CROP_LEFT_KEY_LONGTEXT N_("Crop one pixel from the left of the video")
1290 #define UNCROP_LEFT_KEY_TEXT N_("Uncrop one pixel from the left of the video")
1291 #define UNCROP_LEFT_KEY_LONGTEXT N_("Uncrop one pixel from the left of the video")
1292
1293 #define CROP_BOTTOM_KEY_TEXT N_("Crop one pixel from the bottom of the video")
1294 #define CROP_BOTTOM_KEY_LONGTEXT N_("Crop one pixel from the bottom of the video")
1295 #define UNCROP_BOTTOM_KEY_TEXT N_("Uncrop one pixel from the bottom of the video")
1296 #define UNCROP_BOTTOM_KEY_LONGTEXT N_("Uncrop one pixel from the bottom of the video")
1297
1298 #define CROP_RIGHT_KEY_TEXT N_("Crop one pixel from the right of the video")
1299 #define CROP_RIGHT_KEY_LONGTEXT N_("Crop one pixel from the right of the video")
1300 #define UNCROP_RIGHT_KEY_TEXT N_("Uncrop one pixel from the right of the video")
1301 #define UNCROP_RIGHT_KEY_LONGTEXT N_("Uncrop one pixel from the right of the video")
1302
1303 #define WALLPAPER_KEY_TEXT N_("Toggle wallpaper mode in video output")
1304 #define WALLPAPER_KEY_LONGTEXT N_( \
1305     "Toggle wallpaper mode in video output. Only works with the directx " \
1306     "video output for the time being." )
1307
1308 #define MENU_ON_KEY_TEXT N_("Display OSD menu on top of video output")
1309 #define MENU_ON_KEY_LONGTEXT N_("Display OSDmenu on top of video output")
1310 #define MENU_OFF_KEY_TEXT N_("Do not display OSD menu on video output")
1311 #define MENU_OFF_KEY_LONGTEXT N_("Do not display OSDmenu on top of video output")
1312 #define MENU_RIGHT_KEY_TEXT N_("Highlight widget on the right")
1313 #define MENU_RIGHT_KEY_LONGTEXT N_( \
1314         "Move OSD menu highlight to the widget on the right")
1315 #define MENU_LEFT_KEY_TEXT N_("Highlight widget on the left")
1316 #define MENU_LEFT_KEY_LONGTEXT N_( \
1317         "Move OSD menu highlight to the widget on the left")
1318 #define MENU_UP_KEY_TEXT N_("Highlight widget on top")
1319 #define MENU_UP_KEY_LONGTEXT N_( \
1320         "Move OSD menu highlight to the widget on top")
1321 #define MENU_DOWN_KEY_TEXT N_("Highlight widget below")
1322 #define MENU_DOWN_KEY_LONGTEXT N_( \
1323         "Move OSD menu highlight to the widget below")
1324 #define MENU_SELECT_KEY_TEXT N_("Select current widget")
1325 #define MENU_SELECT_KEY_LONGTEXT N_( \
1326         "Selecting current widget performs the associated action.")
1327
1328 const char vlc_usage[] = N_(
1329     "Usage: %s [options] [stream] ..."
1330     "\nYou can specify multiple streams on the commandline. They will be enqueued in the playlist."
1331     "\nThe first item specified will be played first."
1332     "\n"
1333     "\nOptions-styles:"
1334     "\n  --option  A global option that is set for the duration of the program."
1335     "\n   -option  A single letter version of a global --option."
1336     "\n   :option  An option that only applies to the stream directly before it"
1337     "\n            and that overrides previous settings."
1338     "\n"
1339     "\nStream MRL syntax:"
1340     "\n  [[access][/demux]://]URL[@[title][:chapter][-[title][:chapter]]] [:option=value ...]"
1341     "\n"
1342     "\n  Many of the global --options can also be used as MRL specific :options."
1343     "\n  Multiple :option=value pairs can be specified."
1344     "\n"
1345     "\nURL syntax:"
1346     "\n  [file://]filename              Plain media file"
1347     "\n  http://ip:port/file            HTTP URL"
1348     "\n  ftp://ip:port/file             FTP URL"
1349     "\n  mms://ip:port/file             MMS URL"
1350     "\n  screen://                      Screen capture"
1351     "\n  [dvd://][device][@raw_device]  DVD device"
1352     "\n  [vcd://][device]               VCD device"
1353     "\n  [cdda://][device]              Audio CD device"
1354     "\n  udp:[[<source address>]@[<bind address>][:<bind port>]]"
1355     "\n                                 UDP stream sent by a streaming server"
1356     "\n  vlc:pause:<seconds>            Special item to pause the playlist for a certain time"
1357     "\n  vlc:quit                       Special item to quit VLC"
1358     "\n");
1359
1360 /*
1361  * Quick usage guide for the configuration options:
1362  *
1363  * add_category_hint( N_(text), N_(longtext), b_advanced_option );
1364  * add_subcategory_hint( N_(text), N_(longtext), b_advanced_option );
1365  * add_usage_hint( N_(text), b_advanced_option );
1366  * add_string( option_name, value, p_callback, N_(text), N_(longtext),
1367                b_advanced_option );
1368  * add_file( option_name, psz_value, p_callback, N_(text), N_(longtext) );
1369  * add_module( option_name, psz_value, i_capability, p_callback,
1370  *             N_(text), N_(longtext) );
1371  * add_integer( option_name, i_value, p_callback, N_(text), N_(longtext),
1372                 b_advanced_option );
1373  * add_bool( option_name, b_value, p_callback, N_(text), N_(longtext),
1374              b_advanced_option );
1375  */
1376
1377 vlc_module_begin();
1378 /* Audio options */
1379     set_category( CAT_AUDIO );
1380     set_subcategory( SUBCAT_AUDIO_GENERAL );
1381     add_category_hint( N_("Audio"), AOUT_CAT_LONGTEXT , VLC_FALSE );
1382
1383     add_bool( "audio", 1, NULL, AUDIO_TEXT, AUDIO_LONGTEXT, VLC_FALSE );
1384     add_integer_with_range( "volume", AOUT_VOLUME_DEFAULT, AOUT_VOLUME_MIN,
1385                             AOUT_VOLUME_MAX, NULL, VOLUME_TEXT,
1386                             VOLUME_LONGTEXT, VLC_FALSE );
1387     add_integer_with_range( "volume-step", AOUT_VOLUME_STEP, AOUT_VOLUME_MIN,
1388                             AOUT_VOLUME_MAX, NULL, VOLUME_STEP_TEXT,
1389                             VOLUME_STEP_LONGTEXT, VLC_TRUE );
1390     add_integer( "aout-rate", -1, NULL, AOUT_RATE_TEXT,
1391                  AOUT_RATE_LONGTEXT, VLC_TRUE );
1392 #if !defined( __APPLE__ )
1393     add_bool( "hq-resampling", 1, NULL, AOUT_RESAMP_TEXT,
1394               AOUT_RESAMP_LONGTEXT, VLC_TRUE );
1395 #endif
1396     add_bool( "spdif", 0, NULL, SPDIF_TEXT, SPDIF_LONGTEXT, VLC_FALSE );
1397     add_integer( "force-dolby-surround", 0, NULL, FORCE_DOLBY_TEXT,
1398                  FORCE_DOLBY_LONGTEXT, VLC_FALSE );
1399         change_integer_list( pi_force_dolby_values, ppsz_force_dolby_descriptions, 0 );
1400     add_integer( "audio-desync", 0, NULL, DESYNC_TEXT,
1401                  DESYNC_LONGTEXT, VLC_TRUE );
1402
1403     /* FIXME TODO create a subcat replay gain ? */
1404     add_string( "audio-replay-gain-mode", ppsz_replay_gain_mode[0], NULL, AUDIO_REPLAY_GAIN_MODE_TEXT,
1405                 AUDIO_REPLAY_GAIN_MODE_LONGTEXT, VLC_FALSE );
1406         change_string_list( ppsz_replay_gain_mode, ppsz_replay_gain_mode_text, 0 );
1407     add_float( "audio-replay-gain-preamp", 0.0, NULL,
1408                AUDIO_REPLAY_GAIN_PREAMP_TEXT, AUDIO_REPLAY_GAIN_PREAMP_LONGTEXT, VLC_FALSE );
1409     add_float( "audio-replay-gain-default", -7.0, NULL,
1410                AUDIO_REPLAY_GAIN_DEFAULT_TEXT, AUDIO_REPLAY_GAIN_DEFAULT_LONGTEXT, VLC_FALSE );
1411     add_bool( "audio-replay-gain-peak-protection", VLC_TRUE, NULL,
1412               AUDIO_REPLAY_GAIN_PEAK_PROTECTION_TEXT, AUDIO_REPLAY_GAIN_PEAK_PROTECTION_LONGTEXT, VLC_TRUE );
1413
1414     set_subcategory( SUBCAT_AUDIO_AOUT );
1415     add_module( "aout", "audio output", NULL, NULL, AOUT_TEXT, AOUT_LONGTEXT,
1416                 VLC_TRUE );
1417     set_subcategory( SUBCAT_AUDIO_AFILTER );
1418     add_module_list_cat( "audio-filter", SUBCAT_AUDIO_AFILTER, 0,
1419                          NULL, AUDIO_FILTER_TEXT,
1420                          AUDIO_FILTER_LONGTEXT, VLC_FALSE );
1421     set_subcategory( SUBCAT_AUDIO_VISUAL );
1422     add_module( "audio-visual", "visualization",NULL, NULL,AUDIO_VISUAL_TEXT,
1423                 AUDIO_VISUAL_LONGTEXT, VLC_FALSE );
1424
1425 /* Video options */
1426     set_category( CAT_VIDEO );
1427     set_subcategory( SUBCAT_VIDEO_GENERAL );
1428     add_category_hint( N_("Video"), VOUT_CAT_LONGTEXT , VLC_FALSE );
1429
1430     add_bool( "video", 1, NULL, VIDEO_TEXT, VIDEO_LONGTEXT, VLC_TRUE );
1431     add_bool( "grayscale", 0, NULL, GRAYSCALE_TEXT,
1432               GRAYSCALE_LONGTEXT, VLC_TRUE );
1433     add_bool( "fullscreen", 0, NULL, FULLSCREEN_TEXT,
1434               FULLSCREEN_LONGTEXT, VLC_FALSE );
1435         change_short('f');
1436     add_bool( "embedded-video", 1, NULL, EMBEDDED_TEXT, EMBEDDED_LONGTEXT,
1437               VLC_TRUE );
1438     add_bool( "drop-late-frames", 1, NULL, DROP_LATE_FRAMES_TEXT,
1439               DROP_LATE_FRAMES_LONGTEXT, VLC_TRUE );
1440     /* Used in vout_synchro */
1441     add_bool( "skip-frames", 1, NULL, SKIP_FRAMES_TEXT,
1442               SKIP_FRAMES_LONGTEXT, VLC_TRUE );
1443     add_bool( "quiet-synchro", 0, NULL, QUIET_SYNCHRO_TEXT,
1444               QUIET_SYNCHRO_LONGTEXT, VLC_TRUE );
1445 #ifndef __APPLE__
1446     add_bool( "overlay", 1, NULL, OVERLAY_TEXT, OVERLAY_LONGTEXT, VLC_FALSE );
1447 #endif
1448     add_bool( "video-on-top", 0, NULL, VIDEO_ON_TOP_TEXT,
1449               VIDEO_ON_TOP_LONGTEXT, VLC_FALSE );
1450     add_bool( "disable-screensaver", VLC_TRUE, NULL, SS_TEXT, SS_LONGTEXT,
1451               VLC_TRUE );
1452
1453     add_bool( "video-title-show", 1, NULL, VIDEO_TITLE_SHOW_TEXT,
1454               VIDEO_TITLE_SHOW_LONGTEXT, VLC_FALSE );
1455     add_integer( "video-title-timeout", 5000, NULL, VIDEO_TITLE_TIMEOUT_TEXT,
1456                  VIDEO_TITLE_TIMEOUT_LONGTEXT, VLC_FALSE );
1457     add_integer( "video-title-position", 8, NULL, VIDEO_TITLE_POSITION_TEXT,
1458                  VIDEO_TITLE_POSITION_LONGTEXT, VLC_FALSE );
1459         change_integer_list( pi_pos_values, ppsz_pos_descriptions, 0 );
1460
1461     set_section( N_("Snapshot") , NULL );
1462     add_directory( "snapshot-path", NULL, NULL, SNAP_PATH_TEXT,
1463                    SNAP_PATH_LONGTEXT, VLC_FALSE );
1464     add_string( "snapshot-prefix", "vlcsnap-", NULL, SNAP_PREFIX_TEXT,
1465                    SNAP_PREFIX_LONGTEXT, VLC_FALSE );
1466     add_string( "snapshot-format", "png", NULL, SNAP_FORMAT_TEXT,
1467                    SNAP_FORMAT_LONGTEXT, VLC_FALSE );
1468         change_string_list( ppsz_snap_formats, NULL, 0 );
1469     add_bool( "snapshot-preview", VLC_TRUE, NULL, SNAP_PREVIEW_TEXT,
1470               SNAP_PREVIEW_LONGTEXT, VLC_FALSE );
1471     add_bool( "snapshot-sequential", VLC_FALSE, NULL, SNAP_SEQUENTIAL_TEXT,
1472               SNAP_SEQUENTIAL_LONGTEXT, VLC_FALSE );
1473
1474     set_section( N_("Window properties" ), NULL );
1475     add_integer( "width", -1, NULL, WIDTH_TEXT, WIDTH_LONGTEXT, VLC_TRUE );
1476     add_integer( "height", -1, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT, VLC_TRUE );
1477     add_integer( "video-x", -1, NULL, VIDEOX_TEXT, VIDEOX_LONGTEXT, VLC_TRUE );
1478     add_integer( "video-y", -1, NULL, VIDEOY_TEXT, VIDEOY_LONGTEXT, VLC_TRUE );
1479     add_string( "crop", NULL, NULL, CROP_TEXT, CROP_LONGTEXT, VLC_FALSE );
1480     add_string( "custom-crop-ratios", NULL, NULL, CUSTOM_CROP_RATIOS_TEXT,
1481                 CUSTOM_CROP_RATIOS_LONGTEXT, VLC_FALSE );
1482     add_string( "aspect-ratio", NULL, NULL,
1483                 ASPECT_RATIO_TEXT, ASPECT_RATIO_LONGTEXT, VLC_FALSE );
1484     add_string( "monitor-par", NULL, NULL,
1485                 MASPECT_RATIO_TEXT, MASPECT_RATIO_LONGTEXT, VLC_TRUE );
1486     add_string( "custom-aspect-ratios", NULL, NULL, CUSTOM_ASPECT_RATIOS_TEXT,
1487                 CUSTOM_ASPECT_RATIOS_LONGTEXT, VLC_FALSE );
1488     add_bool( "hdtv-fix", 1, NULL, HDTV_FIX_TEXT, HDTV_FIX_LONGTEXT, VLC_TRUE );
1489     add_bool( "video-deco", 1, NULL, VIDEO_DECO_TEXT,
1490               VIDEO_DECO_LONGTEXT, VLC_TRUE );
1491     add_string( "video-title", NULL, NULL, VIDEO_TITLE_TEXT,
1492                  VIDEO_TITLE_LONGTEXT, VLC_TRUE );
1493     add_integer( "align", 0, NULL, ALIGN_TEXT, ALIGN_LONGTEXT, VLC_TRUE );
1494         change_integer_list( pi_align_values, ppsz_align_descriptions, 0 );
1495     add_float( "zoom", 1, NULL, ZOOM_TEXT, ZOOM_LONGTEXT, VLC_TRUE );
1496
1497
1498     set_subcategory( SUBCAT_VIDEO_VOUT );
1499     add_module( "vout", "video output", NULL, NULL, VOUT_TEXT, VOUT_LONGTEXT,
1500                 VLC_TRUE );
1501         change_short('V');
1502
1503     set_subcategory( SUBCAT_VIDEO_VFILTER );
1504     add_module_list_cat( "video-filter", SUBCAT_VIDEO_VFILTER, NULL, NULL,
1505                 VIDEO_FILTER_TEXT, VIDEO_FILTER_LONGTEXT, VLC_FALSE );
1506        add_deprecated_alias( "filter" ); /*deprecated since 0.8.2 */
1507 //       add_deprecated_alias( "vout-filter" ); /* deprecated since 0.8.6 *// While the "video-filter" chain isn't parsed for both vfilter and vfilter2, keep both options
1508     add_module_list_cat( "vout-filter", SUBCAT_VIDEO_VFILTER, NULL, NULL,
1509                         NULL, NULL, VLC_FALSE );
1510 #if 0
1511     add_string( "pixel-ratio", "1", NULL, PIXEL_RATIO_TEXT, PIXEL_RATIO_TEXT );
1512 #endif
1513
1514 /* Subpictures options */
1515     set_subcategory( SUBCAT_VIDEO_SUBPIC );
1516     set_section( N_("On Screen Display") , NULL );
1517     add_category_hint( N_("Subpictures"), SUB_CAT_LONGTEXT , VLC_FALSE );
1518
1519     add_bool( "spu", 1, NULL, SPU_TEXT, SPU_LONGTEXT, VLC_TRUE );
1520     add_bool( "osd", 1, NULL, OSD_TEXT, OSD_LONGTEXT, VLC_FALSE );
1521     add_module( "text-renderer", "text renderer", NULL, NULL, TEXTRENDERER_TEXT,
1522                 TEXTRENDERER_LONGTEXT, VLC_TRUE );
1523
1524     set_section( N_("Subtitles") , NULL );
1525     add_file( "sub-file", NULL, NULL, SUB_FILE_TEXT,
1526               SUB_FILE_LONGTEXT, VLC_FALSE );
1527     add_bool( "sub-autodetect-file", VLC_TRUE, NULL,
1528                  SUB_AUTO_TEXT, SUB_AUTO_LONGTEXT, VLC_FALSE );
1529     add_integer( "sub-autodetect-fuzzy", 3, NULL,
1530                  SUB_FUZZY_TEXT, SUB_FUZZY_LONGTEXT, VLC_TRUE );
1531 #ifdef WIN32
1532 #   define SUB_PATH ".\\subtitles"
1533 #else
1534 #   define SUB_PATH "./Subtitles, ./subtitles"
1535 #endif
1536     add_string( "sub-autodetect-path", SUB_PATH, NULL,
1537                  SUB_PATH_TEXT, SUB_PATH_LONGTEXT, VLC_TRUE );
1538     add_integer( "sub-margin", 0, NULL, SUB_MARGIN_TEXT,
1539                  SUB_MARGIN_LONGTEXT, VLC_TRUE );
1540         add_deprecated_alias( "spu-margin" ); /*Deprecated since 0.8.2 */
1541     set_section( N_( "Overlays" ) , NULL );
1542     add_module_list_cat( "sub-filter", SUBCAT_VIDEO_SUBPIC, NULL, NULL,
1543                 SUB_FILTER_TEXT, SUB_FILTER_LONGTEXT, VLC_FALSE );
1544
1545 /* Input options */
1546     set_category( CAT_INPUT );
1547     set_subcategory( SUBCAT_INPUT_GENERAL );
1548
1549     add_bool( "france", VLC_FALSE, NULL, N_("France"), FRANCE_LONGTEXT, VLC_TRUE );
1550
1551     set_section( N_( "Track settings" ), NULL );
1552     add_integer( "program", 0, NULL,
1553                  INPUT_PROGRAM_TEXT, INPUT_PROGRAM_LONGTEXT, VLC_TRUE );
1554     add_string( "programs", "", NULL,
1555                 INPUT_PROGRAMS_TEXT, INPUT_PROGRAMS_LONGTEXT, VLC_TRUE );
1556     add_integer( "audio-track", -1, NULL,
1557                  INPUT_AUDIOTRACK_TEXT, INPUT_AUDIOTRACK_LONGTEXT, VLC_TRUE );
1558        add_deprecated_alias( "audio-channel" ); /*deprecated since 0.8.2 */
1559     add_integer( "sub-track", -1, NULL,
1560                  INPUT_SUBTRACK_TEXT, INPUT_SUBTRACK_LONGTEXT, VLC_TRUE );
1561        add_deprecated_alias("spu-channel" ); /*deprecated since 0.8.2*/
1562     add_string( "audio-language", "", NULL,
1563                  INPUT_AUDIOTRACK_LANG_TEXT, INPUT_AUDIOTRACK_LANG_LONGTEXT,
1564                   VLC_FALSE );
1565     add_string( "sub-language", "", NULL,
1566                  INPUT_SUBTRACK_LANG_TEXT, INPUT_SUBTRACK_LANG_LONGTEXT,
1567                   VLC_FALSE );
1568     add_integer( "audio-track-id", -1, NULL, INPUT_AUDIOTRACK_ID_TEXT,
1569                  INPUT_AUDIOTRACK_ID_LONGTEXT, VLC_TRUE );
1570     add_integer( "sub-track-id", -1, NULL,
1571                  INPUT_SUBTRACK_ID_TEXT, INPUT_SUBTRACK_ID_LONGTEXT, VLC_TRUE );
1572
1573     set_section( N_( "Playback control" ) , NULL);
1574     add_integer( "input-repeat", 0, NULL,
1575                  INPUT_REPEAT_TEXT, INPUT_REPEAT_LONGTEXT, VLC_FALSE );
1576     add_integer( "start-time", 0, NULL,
1577                  START_TIME_TEXT, START_TIME_LONGTEXT, VLC_TRUE );
1578     add_integer( "stop-time", 0, NULL,
1579                  STOP_TIME_TEXT, STOP_TIME_LONGTEXT, VLC_TRUE );
1580     add_integer( "run-time", 0, NULL,
1581                  RUN_TIME_TEXT, RUN_TIME_LONGTEXT, VLC_TRUE );
1582     add_string( "input-list", NULL, NULL,
1583                  INPUT_LIST_TEXT, INPUT_LIST_LONGTEXT, VLC_TRUE );
1584     add_string( "input-slave", NULL, NULL,
1585                  INPUT_SLAVE_TEXT, INPUT_SLAVE_LONGTEXT, VLC_TRUE );
1586
1587     add_string( "bookmarks", NULL, NULL,
1588                  BOOKMARKS_TEXT, BOOKMARKS_LONGTEXT, VLC_TRUE );
1589
1590     set_section( N_( "Default devices") , NULL );
1591
1592     add_file( "dvd", NULL, NULL, DVD_DEV_TEXT, DVD_DEV_LONGTEXT,
1593               VLC_FALSE );
1594     add_file( "vcd", VCD_DEVICE, NULL, VCD_DEV_TEXT, VCD_DEV_LONGTEXT,
1595               VLC_FALSE );
1596     add_file( "cd-audio", CDAUDIO_DEVICE, NULL, CDAUDIO_DEV_TEXT,
1597               CDAUDIO_DEV_LONGTEXT, VLC_FALSE );
1598
1599     set_section( N_( "Network settings" ), NULL );
1600
1601     add_integer( "server-port", 1234, NULL,
1602                  SERVER_PORT_TEXT, SERVER_PORT_LONGTEXT, VLC_FALSE );
1603     add_integer( "mtu", MTU_DEFAULT, NULL, MTU_TEXT, MTU_LONGTEXT, VLC_TRUE );
1604     add_bool( "ipv6", 0, NULL, IPV6_TEXT, IPV6_LONGTEXT, VLC_FALSE );
1605         change_short('6');
1606     add_bool( "ipv4", 0, NULL, IPV4_TEXT, IPV4_LONGTEXT, VLC_FALSE );
1607         change_short('4');
1608     add_integer( "ipv4-timeout", 5 * 1000, NULL, TIMEOUT_TEXT,
1609                  TIMEOUT_LONGTEXT, VLC_TRUE );
1610
1611     set_section( N_( "Socks proxy") , NULL );
1612     add_string( "socks", NULL, NULL,
1613                  SOCKS_SERVER_TEXT, SOCKS_SERVER_LONGTEXT, VLC_TRUE );
1614     add_string( "socks-user", NULL, NULL,
1615                  SOCKS_USER_TEXT, SOCKS_USER_LONGTEXT, VLC_TRUE );
1616     add_string( "socks-pwd", NULL, NULL,
1617                  SOCKS_PASS_TEXT, SOCKS_PASS_LONGTEXT, VLC_TRUE );
1618
1619
1620     set_section( N_("Metadata" ) , NULL );
1621     add_string( "meta-title", NULL, NULL, META_TITLE_TEXT,
1622                 META_TITLE_LONGTEXT, VLC_TRUE );
1623     add_string( "meta-author", NULL, NULL, META_AUTHOR_TEXT,
1624                 META_AUTHOR_LONGTEXT, VLC_TRUE );
1625     add_string( "meta-artist", NULL, NULL, META_ARTIST_TEXT,
1626                 META_ARTIST_LONGTEXT, VLC_TRUE );
1627     add_string( "meta-genre", NULL, NULL, META_GENRE_TEXT,
1628                 META_GENRE_LONGTEXT, VLC_TRUE );
1629     add_string( "meta-copyright", NULL, NULL, META_CPYR_TEXT,
1630                 META_CPYR_LONGTEXT, VLC_TRUE );
1631     add_string( "meta-description", NULL, NULL, META_DESCR_TEXT,
1632                 META_DESCR_LONGTEXT, VLC_TRUE );
1633     add_string( "meta-date", NULL, NULL, META_DATE_TEXT,
1634                 META_DATE_LONGTEXT, VLC_TRUE );
1635     add_string( "meta-url", NULL, NULL, META_URL_TEXT,
1636                 META_URL_LONGTEXT, VLC_TRUE );
1637
1638     set_section( N_( "Advanced" ), NULL );
1639
1640     add_integer( "cr-average", 40, NULL, CR_AVERAGE_TEXT,
1641                  CR_AVERAGE_LONGTEXT, VLC_TRUE );
1642     add_integer( "clock-synchro", -1, NULL, CLOCK_SYNCHRO_TEXT,
1643                  CLOCK_SYNCHRO_LONGTEXT, VLC_TRUE );
1644         change_integer_list( pi_clock_values, ppsz_clock_descriptions, 0 );
1645
1646     add_bool( "network-synchronisation", VLC_FALSE, NULL, NETSYNC_TEXT,
1647               NETSYNC_LONGTEXT, VLC_TRUE );
1648
1649 /* Decoder options */
1650     add_category_hint( N_("Decoders"), CODEC_CAT_LONGTEXT , VLC_TRUE );
1651     add_string( "codec", NULL, NULL, CODEC_TEXT,
1652                 CODEC_LONGTEXT, VLC_TRUE );
1653     add_string( "encoder",  NULL, NULL, ENCODER_TEXT,
1654                 ENCODER_LONGTEXT, VLC_TRUE );
1655
1656     set_subcategory( SUBCAT_INPUT_ACCESS );
1657     add_category_hint( N_("Input"), INPUT_CAT_LONGTEXT , VLC_FALSE );
1658     add_module( "access", "access2", NULL, NULL, ACCESS_TEXT,
1659                 ACCESS_LONGTEXT, VLC_TRUE );
1660
1661     set_subcategory( SUBCAT_INPUT_ACCESS_FILTER );
1662     add_module_list_cat( "access-filter", SUBCAT_INPUT_ACCESS_FILTER, NULL, NULL,
1663                 ACCESS_FILTER_TEXT, ACCESS_FILTER_LONGTEXT, VLC_FALSE );
1664
1665
1666     set_subcategory( SUBCAT_INPUT_DEMUX );
1667     add_module( "demux", "demux2", NULL, NULL, DEMUX_TEXT,
1668                 DEMUX_LONGTEXT, VLC_TRUE );
1669     set_subcategory( SUBCAT_INPUT_VCODEC );
1670     set_subcategory( SUBCAT_INPUT_ACODEC );
1671     set_subcategory( SUBCAT_INPUT_SCODEC );
1672     add_bool( "prefer-system-codecs", VLC_FALSE, NULL, SYSTEM_CODEC_TEXT,
1673                                 SYSTEM_CODEC_LONGTEXT, VLC_FALSE );
1674
1675
1676 /* Stream output options */
1677     set_category( CAT_SOUT );
1678     set_subcategory( SUBCAT_SOUT_GENERAL );
1679     add_category_hint( N_("Stream output"), SOUT_CAT_LONGTEXT , VLC_TRUE );
1680
1681     add_string( "sout", NULL, NULL, SOUT_TEXT, SOUT_LONGTEXT, VLC_TRUE );
1682     add_bool( "sout-display", VLC_FALSE, NULL, SOUT_DISPLAY_TEXT,
1683                                 SOUT_DISPLAY_LONGTEXT, VLC_TRUE );
1684     add_bool( "sout-keep", VLC_TRUE, NULL, SOUT_KEEP_TEXT,
1685                                 SOUT_KEEP_LONGTEXT, VLC_TRUE );
1686     add_bool( "sout-all", 0, NULL, SOUT_ALL_TEXT,
1687                                 SOUT_ALL_LONGTEXT, VLC_TRUE );
1688     add_bool( "sout-audio", 1, NULL, SOUT_AUDIO_TEXT,
1689                                 SOUT_AUDIO_LONGTEXT, VLC_TRUE );
1690     add_bool( "sout-video", 1, NULL, SOUT_VIDEO_TEXT,
1691                                 SOUT_VIDEO_LONGTEXT, VLC_TRUE );
1692     add_bool( "sout-spu", 1, NULL, SOUT_SPU_TEXT,
1693                                 SOUT_SPU_LONGTEXT, VLC_TRUE );
1694     add_integer( "sout-mux-caching", 1500, NULL, SOUT_MUX_CACHING_TEXT,
1695                                 SOUT_MUX_CACHING_LONGTEXT, VLC_TRUE );
1696
1697     set_section( N_("VLM"), NULL );
1698     add_string( "vlm-conf", NULL, NULL, VLM_CONF_TEXT,
1699                     VLM_CONF_LONGTEXT, VLC_TRUE );
1700
1701
1702
1703     set_subcategory( SUBCAT_SOUT_STREAM );
1704     set_subcategory( SUBCAT_SOUT_MUX );
1705     add_module( "mux", "sout mux", NULL, NULL, MUX_TEXT,
1706                                 MUX_LONGTEXT, VLC_TRUE );
1707     set_subcategory( SUBCAT_SOUT_ACO );
1708     add_module( "access_output", "sout access", NULL, NULL,
1709                 ACCESS_OUTPUT_TEXT, ACCESS_OUTPUT_LONGTEXT, VLC_TRUE );
1710     add_integer( "ttl", -1, NULL, TTL_TEXT, TTL_LONGTEXT, VLC_TRUE );
1711     add_string( "miface", NULL, NULL, MIFACE_TEXT, MIFACE_LONGTEXT, VLC_TRUE );
1712     add_string( "miface-addr", NULL, NULL, MIFACE_ADDR_TEXT, MIFACE_ADDR_LONGTEXT, VLC_TRUE );
1713     add_integer( "dscp", 0, NULL, DSCP_TEXT, DSCP_LONGTEXT, VLC_TRUE );
1714
1715     set_subcategory( SUBCAT_SOUT_PACKETIZER );
1716     add_module( "packetizer","packetizer", NULL, NULL,
1717                 PACKETIZER_TEXT, PACKETIZER_LONGTEXT, VLC_TRUE );
1718
1719     set_subcategory( SUBCAT_SOUT_SAP );
1720     add_bool( "sap-flow-control", VLC_FALSE, NULL, ANN_SAPCTRL_TEXT,
1721                                ANN_SAPCTRL_LONGTEXT, VLC_TRUE );
1722     add_integer( "sap-interval", 5, NULL, ANN_SAPINTV_TEXT,
1723                                ANN_SAPINTV_LONGTEXT, VLC_TRUE );
1724
1725     set_subcategory( SUBCAT_SOUT_VOD );
1726
1727 /* CPU options */
1728     set_category( CAT_ADVANCED );
1729     set_subcategory( SUBCAT_ADVANCED_CPU );
1730     add_category_hint( N_("CPU"), CPU_CAT_LONGTEXT, VLC_TRUE );
1731     add_bool( "fpu", 1, NULL, FPU_TEXT, FPU_LONGTEXT, VLC_TRUE );
1732         change_need_restart();
1733 #if defined( __i386__ ) || defined( __x86_64__ )
1734     add_bool( "mmx", 1, NULL, MMX_TEXT, MMX_LONGTEXT, VLC_TRUE );
1735         change_need_restart();
1736     add_bool( "3dn", 1, NULL, THREE_DN_TEXT, THREE_DN_LONGTEXT, VLC_TRUE );
1737         change_need_restart();
1738     add_bool( "mmxext", 1, NULL, MMXEXT_TEXT, MMXEXT_LONGTEXT, VLC_TRUE );
1739         change_need_restart();
1740     add_bool( "sse", 1, NULL, SSE_TEXT, SSE_LONGTEXT, VLC_TRUE );
1741         change_need_restart();
1742     add_bool( "sse2", 1, NULL, SSE2_TEXT, SSE2_LONGTEXT, VLC_TRUE );
1743         change_need_restart();
1744 #endif
1745 #if defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc64__ )
1746     add_bool( "altivec", 1, NULL, ALTIVEC_TEXT, ALTIVEC_LONGTEXT, VLC_TRUE );
1747         change_need_restart();
1748 #endif
1749
1750 /* Misc options */
1751     set_subcategory( SUBCAT_ADVANCED_MISC );
1752     set_section( N_("Special modules"), NULL );
1753     add_category_hint( N_("Miscellaneous"), MISC_CAT_LONGTEXT, VLC_TRUE );
1754     add_module( "memcpy", "memcpy", NULL, NULL, MEMCPY_TEXT,
1755                 MEMCPY_LONGTEXT, VLC_TRUE );
1756         change_short('A');
1757         change_need_restart();
1758
1759     set_section( N_("Plugins" ), NULL );
1760     add_bool( "plugins-cache", VLC_TRUE, NULL, PLUGINS_CACHE_TEXT,
1761               PLUGINS_CACHE_LONGTEXT, VLC_TRUE );
1762         change_need_restart();
1763     add_directory( "plugin-path", NULL, NULL, PLUGIN_PATH_TEXT,
1764                    PLUGIN_PATH_LONGTEXT, VLC_TRUE );
1765         change_need_restart();
1766
1767     set_section( N_("Performance options"), NULL );
1768     add_bool( "minimize-threads", 0, NULL, MINIMIZE_THREADS_TEXT,
1769               MINIMIZE_THREADS_LONGTEXT, VLC_TRUE );
1770         change_need_restart();
1771
1772 #if !defined(__APPLE__) && !defined(SYS_BEOS) && defined(PTHREAD_COND_T_IN_PTHREAD_H)
1773     add_bool( "rt-priority", VLC_FALSE, NULL, RT_PRIORITY_TEXT,
1774               RT_PRIORITY_LONGTEXT, VLC_TRUE );
1775         change_need_restart();
1776 #endif
1777
1778 #if !defined(SYS_BEOS) && defined(PTHREAD_COND_T_IN_PTHREAD_H)
1779     add_integer( "rt-offset", 0, NULL, RT_OFFSET_TEXT,
1780                  RT_OFFSET_LONGTEXT, VLC_TRUE );
1781         change_need_restart();
1782 #endif
1783
1784 #if defined(HAVE_DBUS_3)
1785     add_bool( "one-instance", 0, NULL, ONEINSTANCE_DBUS_TEXT,
1786               ONEINSTANCE_DBUS_LONGTEXT, VLC_TRUE );
1787     add_bool( "playlist-enqueue", 0, NULL, PLAYLISTENQUEUE_TEXT,
1788               PLAYLISTENQUEUE_LONGTEXT, VLC_TRUE );
1789         change_unsaveable();
1790 #endif
1791
1792 #if defined(WIN32)
1793     add_bool( "one-instance", 0, NULL, ONEINSTANCE_WIN_TEXT,
1794               ONEINSTANCE_WIN_LONGTEXT, VLC_TRUE );
1795     add_bool( "started-from-file", 0, NULL, STARTEDFROMFILE_TEXT,
1796               STARTEDFROMFILE_LONGTEXT, VLC_TRUE );
1797         change_internal();
1798         change_unsaveable();
1799     add_bool( "one-instance-when-started-from-file", 1, NULL,
1800               ONEINSTANCEWHENSTARTEDFROMFILE_TEXT,
1801               ONEINSTANCEWHENSTARTEDFROMFILE_LONGTEXT, VLC_TRUE );
1802     add_bool( "playlist-enqueue", 0, NULL, PLAYLISTENQUEUE_TEXT,
1803               PLAYLISTENQUEUE_LONGTEXT, VLC_TRUE );
1804         change_unsaveable();
1805     add_bool( "high-priority", 0, NULL, HPRIORITY_TEXT,
1806               HPRIORITY_LONGTEXT, VLC_FALSE );
1807         change_need_restart();
1808 #endif
1809
1810 /* Playlist options */
1811     set_category( CAT_PLAYLIST );
1812     set_subcategory( SUBCAT_PLAYLIST_GENERAL );
1813     add_category_hint( N_("Playlist"), PLAYLIST_CAT_LONGTEXT , VLC_FALSE );
1814     add_bool( "random", 0, NULL, RANDOM_TEXT, RANDOM_LONGTEXT, VLC_FALSE );
1815         change_short('Z');
1816     add_bool( "loop", 0, NULL, LOOP_TEXT, LOOP_LONGTEXT, VLC_FALSE );
1817         change_short('L');
1818     add_bool( "repeat", 0, NULL, REPEAT_TEXT, REPEAT_LONGTEXT, VLC_FALSE );
1819         change_short('R');
1820     add_bool( "play-and-exit", 0, NULL, PAE_TEXT, PAE_LONGTEXT, VLC_FALSE );
1821     add_bool( "play-and-stop", 0, NULL, PAS_TEXT, PAS_LONGTEXT, VLC_FALSE );
1822     add_bool( "media-library", 1, NULL, ML_TEXT, ML_LONGTEXT, VLC_FALSE );
1823     add_integer( "playlist-tree", 0, NULL, PLTREE_TEXT, PLTREE_LONGTEXT,
1824                  VLC_TRUE );
1825         change_integer_list( pi_pltree_values, ppsz_pltree_descriptions, 0 );
1826
1827     add_string( "open", "", NULL, OPEN_TEXT, OPEN_LONGTEXT, VLC_FALSE );
1828         change_need_restart();
1829
1830     add_bool( "auto-preparse", VLC_TRUE, NULL, PREPARSE_TEXT,
1831               PREPARSE_LONGTEXT, VLC_FALSE );
1832
1833     add_integer( "album-art", ALBUM_ART_WHEN_PLAYED, NULL, ALBUM_ART_TEXT,
1834                  ALBUM_ART_LONGTEXT, VLC_FALSE );
1835         change_integer_list( pi_albumart_values,
1836                              ppsz_albumart_descriptions, 0 );
1837
1838     set_subcategory( SUBCAT_PLAYLIST_SD );
1839     add_module_list_cat( "services-discovery", SUBCAT_PLAYLIST_SD, NULL,
1840                           NULL, SD_TEXT, SD_LONGTEXT, VLC_FALSE );
1841         change_short('S');
1842         change_need_restart();
1843
1844 /* Interface options */
1845     set_category( CAT_INTERFACE );
1846     set_subcategory( SUBCAT_INTERFACE_GENERAL );
1847     add_integer( "verbose", 0, NULL, VERBOSE_TEXT, VERBOSE_LONGTEXT,
1848                  VLC_FALSE );
1849         change_short('v');
1850     add_bool( "quiet", 0, NULL, QUIET_TEXT, QUIET_LONGTEXT, VLC_TRUE );
1851         change_short('q');
1852
1853 #if !defined(WIN32)
1854     add_bool( "daemon", 0, NULL, DAEMON_TEXT, DAEMON_LONGTEXT, VLC_TRUE );
1855         change_short('d');
1856         change_need_restart();
1857
1858     add_string( "pidfile", NULL, NULL, PIDFILE_TEXT, PIDFILE_LONGTEXT,
1859                                        VLC_FALSE );
1860         change_need_restart();
1861 #endif
1862
1863     add_bool( "file-logging", VLC_FALSE, NULL, FILE_LOG_TEXT, FILE_LOG_LONGTEXT,
1864               VLC_TRUE );
1865         change_need_restart();
1866 #ifdef HAVE_SYSLOG_H
1867     add_bool ( "syslog", VLC_FALSE, NULL, SYSLOG_TEXT, SYSLOG_LONGTEXT,
1868                VLC_TRUE );
1869         change_need_restart();
1870 #endif
1871
1872 #if defined (WIN32) || defined (__APPLE__)
1873     add_string( "language", "auto", NULL, LANGUAGE_TEXT, LANGUAGE_LONGTEXT,
1874                 VLC_FALSE );
1875         change_string_list( ppsz_language, ppsz_language_text, 0 );
1876         change_need_restart();
1877 #endif
1878
1879     add_bool( "color", VLC_TRUE, NULL, COLOR_TEXT, COLOR_LONGTEXT, VLC_TRUE );
1880     add_bool( "advanced", 0, NULL, ADVANCED_TEXT, ADVANCED_LONGTEXT,
1881                     VLC_FALSE );
1882         change_need_restart();
1883     add_bool( "interact", VLC_TRUE, NULL, INTERACTION_TEXT,
1884               INTERACTION_LONGTEXT, VLC_FALSE );
1885
1886     add_bool( "show-intf", VLC_FALSE, NULL, SHOWINTF_TEXT, SHOWINTF_LONGTEXT,
1887               VLC_FALSE );
1888         change_need_restart();
1889
1890     add_bool ( "stats", VLC_TRUE, NULL, STATS_TEXT, STATS_LONGTEXT, VLC_TRUE );
1891         change_need_restart();
1892
1893     set_subcategory( SUBCAT_INTERFACE_MAIN );
1894     add_module_cat( "intf", SUBCAT_INTERFACE_MAIN, NULL, NULL, INTF_TEXT,
1895                 INTF_LONGTEXT, VLC_FALSE );
1896         change_short('I');
1897         change_need_restart();
1898     add_module_list_cat( "extraintf", SUBCAT_INTERFACE_MAIN,
1899                          NULL, NULL, EXTRAINTF_TEXT,
1900                          EXTRAINTF_LONGTEXT, VLC_FALSE );
1901         change_need_restart();
1902
1903
1904     set_subcategory( SUBCAT_INTERFACE_CONTROL );
1905     add_module_list_cat( "control", SUBCAT_INTERFACE_CONTROL, NULL, NULL,
1906                          CONTROL_TEXT, CONTROL_LONGTEXT, VLC_FALSE );
1907         change_need_restart();
1908
1909 /* Hotkey options*/
1910     set_subcategory( SUBCAT_INTERFACE_HOTKEYS );
1911     add_category_hint( N_("Hot keys"), HOTKEY_CAT_LONGTEXT , VLC_FALSE );
1912
1913 #if defined(__APPLE__)
1914 /* Don't use the following combo's */
1915
1916 /*  copy                          KEY_MODIFIER_COMMAND|'c'
1917  *  cut                           KEY_MODIFIER_COMMAND|'x'
1918  *  paste                         KEY_MODIFIER_COMMAND|'v'
1919  *  select all                    KEY_MODIFIER_COMMAND|'a'
1920  *  preferences                   KEY_MODIFIER_COMMAND|','
1921  *  hide vlc                      KEY_MODIFIER_COMMAND|'h'
1922  *  hide other                    KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|'h'
1923  *  open file                     KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'o'
1924  *  open                          KEY_MODIFIER_COMMAND|'o'
1925  *  open disk                     KEY_MODIFIER_COMMAND|'d'
1926  *  open network                  KEY_MODIFIER_COMMAND|'n'
1927  *  save playlist                 KEY_MODIFIER_COMMAND|'s'
1928  *  playlist random               KEY_MODIFIER_COMMAND|'z'
1929  *  playlist repeat all           KEY_MODIFIER_COMMAND|'l'
1930  *  playlist repeat               KEY_MODIFIER_COMMAND|'r'
1931  *  video half size               KEY_MODIFIER_COMMAND|'0'
1932  *  video normal size             KEY_MODIFIER_COMMAND|'1'
1933  *  video double size             KEY_MODIFIER_COMMAND|'2'
1934  *  video fit to screen           KEY_MODIFIER_COMMAND|'3'
1935  *  minimize window               KEY_MODIFIER_COMMAND|'m'
1936  *  close window                  KEY_MODIFIER_COMMAND|'w'
1937  *  show controller               KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'c'
1938  *  show playlist                 KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'p'
1939  *  show info                     KEY_MODIFIER_COMMAND|'i'
1940  *  help                          KEY_MODIFIER_COMMAND|'?'
1941  */
1942 #   define KEY_TOGGLE_FULLSCREEN  KEY_MODIFIER_COMMAND|'f'
1943 #   define KEY_LEAVE_FULLSCREEN   KEY_ESC
1944 #   define KEY_PLAY_PAUSE         KEY_MODIFIER_COMMAND|'p'
1945 #   define KEY_PAUSE              KEY_UNSET
1946 #   define KEY_PLAY               KEY_UNSET
1947 #   define KEY_FASTER             KEY_MODIFIER_COMMAND|'='
1948 #   define KEY_SLOWER             KEY_MODIFIER_COMMAND|'-'
1949 #   define KEY_NEXT               KEY_MODIFIER_COMMAND|KEY_RIGHT
1950 #   define KEY_PREV               KEY_MODIFIER_COMMAND|KEY_LEFT
1951 #   define KEY_STOP               KEY_MODIFIER_COMMAND|'.'
1952 #   define KEY_POSITION           't'
1953 #   define KEY_JUMP_MEXTRASHORT   KEY_MODIFIER_COMMAND|KEY_MODIFIER_CTRL|KEY_LEFT
1954 #   define KEY_JUMP_PEXTRASHORT   KEY_MODIFIER_COMMAND|KEY_MODIFIER_CTRL|KEY_RIGHT
1955 #   define KEY_JUMP_MSHORT        KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|KEY_LEFT
1956 #   define KEY_JUMP_PSHORT        KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|KEY_RIGHT
1957 #   define KEY_JUMP_MMEDIUM       KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_LEFT
1958 #   define KEY_JUMP_PMEDIUM       KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_RIGHT
1959 #   define KEY_JUMP_MLONG         KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_MODIFIER_ALT|KEY_LEFT
1960 #   define KEY_JUMP_PLONG         KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_MODIFIER_ALT|KEY_RIGHT
1961 #   define KEY_NAV_ACTIVATE       KEY_ENTER
1962 #   define KEY_NAV_UP             KEY_UP
1963 #   define KEY_NAV_DOWN           KEY_DOWN
1964 #   define KEY_NAV_LEFT           KEY_LEFT
1965 #   define KEY_NAV_RIGHT          KEY_RIGHT
1966 #   define KEY_QUIT               KEY_MODIFIER_COMMAND|'q'
1967 #   define KEY_VOL_UP             KEY_MODIFIER_COMMAND|KEY_UP
1968 #   define KEY_VOL_DOWN           KEY_MODIFIER_COMMAND|KEY_DOWN
1969 #   define KEY_VOL_MUTE           KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|KEY_DOWN
1970 #   define KEY_SUBDELAY_UP        'j'
1971 #   define KEY_SUBDELAY_DOWN      'h'
1972 #   define KEY_AUDIODELAY_UP      'g'
1973 #   define KEY_AUDIODELAY_DOWN    'f'
1974 #   define KEY_AUDIO_TRACK        'l'
1975 #   define KEY_SUBTITLE_TRACK     's'
1976 #   define KEY_ASPECT_RATIO       'a'
1977 #   define KEY_CROP               'c'
1978 #   define KEY_DEINTERLACE        'd'
1979 #   define KEY_INTF_SHOW          'i'
1980 #   define KEY_INTF_HIDE          'I'
1981 #   define KEY_DISC_MENU          KEY_MODIFIER_CTRL|'m'
1982 #   define KEY_TITLE_PREV         KEY_MODIFIER_CTRL|'p'
1983 #   define KEY_TITLE_NEXT         KEY_MODIFIER_CTRL|'n'
1984 #   define KEY_CHAPTER_PREV       KEY_MODIFIER_CTRL|'u'
1985 #   define KEY_CHAPTER_NEXT       KEY_MODIFIER_CTRL|'d'
1986 #   define KEY_SNAPSHOT           KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|'s'
1987 #   define KEY_ZOOM               'z'
1988 #   define KEY_UNZOOM             KEY_MODIFIER_SHIFT|'z'
1989 #   define KEY_RANDOM             'r'
1990 #   define KEY_LOOP               KEY_MODIFIER_SHIFT|'l'
1991
1992 #   define KEY_CROP_TOP           KEY_MODIFIER_ALT|'i'
1993 #   define KEY_UNCROP_TOP         KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'i'
1994 #   define KEY_CROP_LEFT          KEY_MODIFIER_ALT|'j'
1995 #   define KEY_UNCROP_LEFT        KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'j'
1996 #   define KEY_CROP_BOTTOM        KEY_MODIFIER_ALT|'k'
1997 #   define KEY_UNCROP_BOTTOM      KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'k'
1998 #   define KEY_CROP_RIGHT         KEY_MODIFIER_ALT|'l'
1999 #   define KEY_UNCROP_RIGHT       KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'l'
2000
2001 #   define KEY_SET_BOOKMARK1      KEY_MODIFIER_COMMAND|KEY_F1
2002 #   define KEY_SET_BOOKMARK2      KEY_MODIFIER_COMMAND|KEY_F2
2003 #   define KEY_SET_BOOKMARK3      KEY_MODIFIER_COMMAND|KEY_F3
2004 #   define KEY_SET_BOOKMARK4      KEY_MODIFIER_COMMAND|KEY_F4
2005 #   define KEY_SET_BOOKMARK5      KEY_MODIFIER_COMMAND|KEY_F5
2006 #   define KEY_SET_BOOKMARK6      KEY_MODIFIER_COMMAND|KEY_F6
2007 #   define KEY_SET_BOOKMARK7      KEY_MODIFIER_COMMAND|KEY_F7
2008 #   define KEY_SET_BOOKMARK8      KEY_MODIFIER_COMMAND|KEY_F8
2009 #   define KEY_SET_BOOKMARK9      KEY_UNSET
2010 #   define KEY_SET_BOOKMARK10     KEY_UNSET
2011 #   define KEY_PLAY_BOOKMARK1     KEY_F1
2012 #   define KEY_PLAY_BOOKMARK2     KEY_F2
2013 #   define KEY_PLAY_BOOKMARK3     KEY_F3
2014 #   define KEY_PLAY_BOOKMARK4     KEY_F4
2015 #   define KEY_PLAY_BOOKMARK5     KEY_F5
2016 #   define KEY_PLAY_BOOKMARK6     KEY_F6
2017 #   define KEY_PLAY_BOOKMARK7     KEY_F7
2018 #   define KEY_PLAY_BOOKMARK8     KEY_F8
2019 #   define KEY_PLAY_BOOKMARK9     KEY_UNSET
2020 #   define KEY_PLAY_BOOKMARK10    KEY_UNSET
2021 #   define KEY_HISTORY_BACK       KEY_MODIFIER_COMMAND|'['
2022 #   define KEY_HISTORY_FORWARD    KEY_MODIFIER_COMMAND|']'
2023 #   define KEY_RECORD             KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'r'
2024 #   define KEY_DUMP               KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'d'
2025 #   define KEY_WALLPAPER          KEY_MODIFIER_COMMAND|'w'
2026
2027 #   define KEY_MENU_ON            KEY_MODIFIER_ALT|'m'
2028 #   define KEY_MENU_OFF           KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'m'
2029 #   define KEY_MENU_RIGHT         KEY_MODIFIER_ALT|KEY_RIGHT
2030 #   define KEY_MENU_LEFT          KEY_MODIFIER_ALT|KEY_LEFT
2031 #   define KEY_MENU_UP            KEY_MODIFIER_ALT|KEY_UP
2032 #   define KEY_MENU_DOWN          KEY_MODIFIER_ALT|KEY_DOWN
2033 #   define KEY_MENU_SELECT        KEY_MODIFIER_ALT|KEY_ENTER
2034
2035 #else
2036 #   define KEY_TOGGLE_FULLSCREEN  'f'
2037 #   define KEY_LEAVE_FULLSCREEN   KEY_ESC
2038 #   define KEY_PLAY_PAUSE         KEY_SPACE
2039 #   define KEY_PAUSE              KEY_UNSET
2040 #   define KEY_PLAY               KEY_UNSET
2041 #   define KEY_FASTER             '+'
2042 #   define KEY_SLOWER             '-'
2043 #   define KEY_NEXT               'n'
2044 #   define KEY_PREV               'p'
2045 #   define KEY_STOP               's'
2046 #   define KEY_POSITION           't'
2047 #   define KEY_JUMP_MEXTRASHORT   KEY_MODIFIER_SHIFT|KEY_LEFT
2048 #   define KEY_JUMP_PEXTRASHORT   KEY_MODIFIER_SHIFT|KEY_RIGHT
2049 #   define KEY_JUMP_MSHORT        KEY_MODIFIER_ALT|KEY_LEFT
2050 #   define KEY_JUMP_PSHORT        KEY_MODIFIER_ALT|KEY_RIGHT
2051 #   define KEY_JUMP_MMEDIUM       KEY_MODIFIER_CTRL|KEY_LEFT
2052 #   define KEY_JUMP_PMEDIUM       KEY_MODIFIER_CTRL|KEY_RIGHT
2053 #   define KEY_JUMP_MLONG         KEY_MODIFIER_CTRL|KEY_MODIFIER_ALT|KEY_LEFT
2054 #   define KEY_JUMP_PLONG         KEY_MODIFIER_CTRL|KEY_MODIFIER_ALT|KEY_RIGHT
2055 #   define KEY_NAV_ACTIVATE       KEY_ENTER
2056 #   define KEY_NAV_UP             KEY_UP
2057 #   define KEY_NAV_DOWN           KEY_DOWN
2058 #   define KEY_NAV_LEFT           KEY_LEFT
2059 #   define KEY_NAV_RIGHT          KEY_RIGHT
2060 #   define KEY_QUIT               KEY_MODIFIER_CTRL|'q'
2061 #   define KEY_VOL_UP             KEY_MODIFIER_CTRL|KEY_UP
2062 #   define KEY_VOL_DOWN           KEY_MODIFIER_CTRL|KEY_DOWN
2063 #   define KEY_VOL_MUTE           'm'
2064 #   define KEY_SUBDELAY_UP        'h'
2065 #   define KEY_SUBDELAY_DOWN      'g'
2066 #   define KEY_AUDIODELAY_UP      'k'
2067 #   define KEY_AUDIODELAY_DOWN    'j'
2068 #   define KEY_RANDOM             'r'
2069 #   define KEY_LOOP               'l'
2070
2071 #   define KEY_AUDIO_TRACK        'b'
2072 #   define KEY_SUBTITLE_TRACK     'v'
2073 #   define KEY_ASPECT_RATIO       'a'
2074 #   define KEY_CROP               'c'
2075 #   define KEY_DEINTERLACE        'd'
2076 #   define KEY_INTF_SHOW          'i'
2077 #   define KEY_INTF_HIDE          'I'
2078 #   define KEY_DISC_MENU          KEY_MODIFIER_ALT|'r'
2079 #   define KEY_TITLE_PREV         KEY_MODIFIER_ALT|'o'
2080 #   define KEY_TITLE_NEXT         KEY_MODIFIER_ALT|'b'
2081 #   define KEY_CHAPTER_PREV       KEY_MODIFIER_ALT|'p'
2082 #   define KEY_CHAPTER_NEXT       KEY_MODIFIER_ALT|'n'
2083 #   define KEY_SNAPSHOT           KEY_MODIFIER_CTRL|KEY_MODIFIER_ALT|'s'
2084
2085 #   define KEY_ZOOM               'z'
2086 #   define KEY_UNZOOM             KEY_MODIFIER_SHIFT|'z'
2087
2088 #   define KEY_CROP_TOP           KEY_MODIFIER_ALT|'i'
2089 #   define KEY_UNCROP_TOP         KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'i'
2090 #   define KEY_CROP_LEFT          KEY_MODIFIER_ALT|'j'
2091 #   define KEY_UNCROP_LEFT        KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'j'
2092 #   define KEY_CROP_BOTTOM        KEY_MODIFIER_ALT|'k'
2093 #   define KEY_UNCROP_BOTTOM      KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'k'
2094 #   define KEY_CROP_RIGHT         KEY_MODIFIER_ALT|'l'
2095 #   define KEY_UNCROP_RIGHT       KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'l'
2096
2097 #   define KEY_SET_BOOKMARK1      KEY_MODIFIER_CTRL|KEY_F1
2098 #   define KEY_SET_BOOKMARK2      KEY_MODIFIER_CTRL|KEY_F2
2099 #   define KEY_SET_BOOKMARK3      KEY_MODIFIER_CTRL|KEY_F3
2100 #   define KEY_SET_BOOKMARK4      KEY_MODIFIER_CTRL|KEY_F4
2101 #   define KEY_SET_BOOKMARK5      KEY_MODIFIER_CTRL|KEY_F5
2102 #   define KEY_SET_BOOKMARK6      KEY_MODIFIER_CTRL|KEY_F6
2103 #   define KEY_SET_BOOKMARK7      KEY_MODIFIER_CTRL|KEY_F7
2104 #   define KEY_SET_BOOKMARK8      KEY_MODIFIER_CTRL|KEY_F8
2105 #   define KEY_SET_BOOKMARK9      KEY_MODIFIER_CTRL|KEY_F9
2106 #   define KEY_SET_BOOKMARK10     KEY_MODIFIER_CTRL|KEY_F10
2107 #   define KEY_PLAY_BOOKMARK1     KEY_F1
2108 #   define KEY_PLAY_BOOKMARK2     KEY_F2
2109 #   define KEY_PLAY_BOOKMARK3     KEY_F3
2110 #   define KEY_PLAY_BOOKMARK4     KEY_F4
2111 #   define KEY_PLAY_BOOKMARK5     KEY_F5
2112 #   define KEY_PLAY_BOOKMARK6     KEY_F6
2113 #   define KEY_PLAY_BOOKMARK7     KEY_F7
2114 #   define KEY_PLAY_BOOKMARK8     KEY_F8
2115 #   define KEY_PLAY_BOOKMARK9     KEY_F9
2116 #   define KEY_PLAY_BOOKMARK10    KEY_F10
2117 #   define KEY_HISTORY_BACK       KEY_MODIFIER_ALT|'g'
2118 #   define KEY_HISTORY_FORWARD    KEY_MODIFIER_ALT|'h'
2119 #   define KEY_RECORD             KEY_MODIFIER_CTRL|KEY_MODIFIER_SHIFT|'r'
2120 #   define KEY_DUMP               KEY_MODIFIER_CTRL|KEY_MODIFIER_SHIFT|'d'
2121 #   define KEY_WALLPAPER          'w'
2122
2123 #   define KEY_MENU_ON            KEY_MODIFIER_ALT|'m'
2124 #   define KEY_MENU_OFF           KEY_MODIFIER_ALT|KEY_MODIFIER_SHIFT|'m'
2125 #   define KEY_MENU_RIGHT         KEY_MODIFIER_ALT|KEY_RIGHT
2126 #   define KEY_MENU_LEFT          KEY_MODIFIER_ALT|KEY_LEFT
2127 #   define KEY_MENU_UP            KEY_MODIFIER_ALT|KEY_UP
2128 #   define KEY_MENU_DOWN          KEY_MODIFIER_ALT|KEY_DOWN
2129 #   define KEY_MENU_SELECT        KEY_MODIFIER_ALT|KEY_ENTER
2130 #endif
2131
2132     add_key( "key-toggle-fullscreen", KEY_TOGGLE_FULLSCREEN, NULL, TOGGLE_FULLSCREEN_KEY_TEXT,
2133              TOGGLE_FULLSCREEN_KEY_LONGTEXT, VLC_FALSE );
2134        add_deprecated_alias( "key-fullscreen" ); /*deprecated since 0.9.0 */
2135     add_key( "key-leave-fullscreen", KEY_LEAVE_FULLSCREEN, NULL, LEAVE_FULLSCREEN_KEY_TEXT,
2136              LEAVE_FULLSCREEN_KEY_LONGTEXT, VLC_FALSE );
2137     add_key( "key-play-pause", KEY_PLAY_PAUSE, NULL, PLAY_PAUSE_KEY_TEXT,
2138              PLAY_PAUSE_KEY_LONGTEXT, VLC_FALSE );
2139     add_key( "key-pause", KEY_PAUSE, NULL, PAUSE_KEY_TEXT,
2140              PAUSE_KEY_LONGTEXT, VLC_TRUE );
2141     add_key( "key-play", KEY_PLAY, NULL, PLAY_KEY_TEXT,
2142              PLAY_KEY_LONGTEXT, VLC_TRUE );
2143     add_key( "key-faster", KEY_FASTER, NULL, FASTER_KEY_TEXT,
2144              FASTER_KEY_LONGTEXT, VLC_FALSE );
2145     add_key( "key-slower", KEY_SLOWER, NULL, SLOWER_KEY_TEXT,
2146              SLOWER_KEY_LONGTEXT, VLC_FALSE );
2147     add_key( "key-next", KEY_NEXT, NULL, NEXT_KEY_TEXT,
2148              NEXT_KEY_LONGTEXT, VLC_FALSE );
2149     add_key( "key-prev", KEY_PREV, NULL, PREV_KEY_TEXT,
2150              PREV_KEY_LONGTEXT, VLC_FALSE );
2151     add_key( "key-stop", KEY_STOP, NULL, STOP_KEY_TEXT,
2152              STOP_KEY_LONGTEXT, VLC_FALSE );
2153     add_key( "key-position", KEY_POSITION, NULL, POSITION_KEY_TEXT,
2154              POSITION_KEY_LONGTEXT, VLC_TRUE );
2155     add_key( "key-jump-extrashort", KEY_JUMP_MEXTRASHORT, NULL,
2156              JBEXTRASHORT_KEY_TEXT, JBEXTRASHORT_KEY_LONGTEXT, VLC_FALSE );
2157     add_key( "key-jump+extrashort", KEY_JUMP_PEXTRASHORT, NULL,
2158              JFEXTRASHORT_KEY_TEXT, JFEXTRASHORT_KEY_LONGTEXT, VLC_FALSE );
2159     add_key( "key-jump-short", KEY_JUMP_MSHORT, NULL, JBSHORT_KEY_TEXT,
2160              JBSHORT_KEY_LONGTEXT, VLC_FALSE );
2161     add_key( "key-jump+short", KEY_JUMP_PSHORT, NULL, JFSHORT_KEY_TEXT,
2162              JFSHORT_KEY_LONGTEXT, VLC_FALSE );
2163     add_key( "key-jump-medium", KEY_JUMP_MMEDIUM, NULL, JBMEDIUM_KEY_TEXT,
2164              JBMEDIUM_KEY_LONGTEXT, VLC_FALSE );
2165     add_key( "key-jump+medium", KEY_JUMP_PMEDIUM, NULL, JFMEDIUM_KEY_TEXT,
2166              JFMEDIUM_KEY_LONGTEXT, VLC_FALSE );
2167     add_key( "key-jump-long", KEY_JUMP_MLONG, NULL, JBLONG_KEY_TEXT,
2168              JBLONG_KEY_LONGTEXT, VLC_FALSE );
2169     add_key( "key-jump+long", KEY_JUMP_PLONG, NULL, JFLONG_KEY_TEXT,
2170              JFLONG_KEY_LONGTEXT, VLC_FALSE );
2171     add_key( "key-nav-activate", KEY_NAV_ACTIVATE, NULL, NAV_ACTIVATE_KEY_TEXT,
2172              NAV_ACTIVATE_KEY_LONGTEXT, VLC_TRUE );
2173     add_key( "key-nav-up", KEY_NAV_UP, NULL, NAV_UP_KEY_TEXT,
2174              NAV_UP_KEY_LONGTEXT, VLC_TRUE );
2175     add_key( "key-nav-down", KEY_NAV_DOWN, NULL, NAV_DOWN_KEY_TEXT,
2176              NAV_DOWN_KEY_LONGTEXT, VLC_TRUE );
2177     add_key( "key-nav-left", KEY_NAV_LEFT, NULL, NAV_LEFT_KEY_TEXT,
2178              NAV_LEFT_KEY_LONGTEXT, VLC_TRUE );
2179     add_key( "key-nav-right", KEY_NAV_RIGHT, NULL, NAV_RIGHT_KEY_TEXT,
2180              NAV_RIGHT_KEY_LONGTEXT, VLC_TRUE );
2181
2182     add_key( "key-disc-menu", KEY_DISC_MENU, NULL, DISC_MENU_TEXT,
2183              DISC_MENU_LONGTEXT, VLC_TRUE );
2184     add_key( "key-title-prev", KEY_TITLE_PREV, NULL, TITLE_PREV_TEXT,
2185              TITLE_PREV_LONGTEXT, VLC_TRUE );
2186     add_key( "key-title-next", KEY_TITLE_NEXT, NULL, TITLE_NEXT_TEXT,
2187              TITLE_NEXT_LONGTEXT, VLC_TRUE );
2188     add_key( "key-chapter-prev", KEY_CHAPTER_PREV, NULL, CHAPTER_PREV_TEXT,
2189              CHAPTER_PREV_LONGTEXT, VLC_TRUE );
2190     add_key( "key-chapter-next", KEY_CHAPTER_NEXT, NULL, CHAPTER_NEXT_TEXT,
2191              CHAPTER_NEXT_LONGTEXT, VLC_TRUE );
2192     add_key( "key-quit", KEY_QUIT, NULL, QUIT_KEY_TEXT,
2193              QUIT_KEY_LONGTEXT, VLC_FALSE );
2194     add_key( "key-vol-up", KEY_VOL_UP, NULL, VOL_UP_KEY_TEXT,
2195              VOL_UP_KEY_LONGTEXT, VLC_FALSE );
2196     add_key( "key-vol-down", KEY_VOL_DOWN, NULL, VOL_DOWN_KEY_TEXT,
2197              VOL_DOWN_KEY_LONGTEXT, VLC_FALSE );
2198     add_key( "key-vol-mute", KEY_VOL_MUTE, NULL, VOL_MUTE_KEY_TEXT,
2199              VOL_MUTE_KEY_LONGTEXT, VLC_FALSE );
2200     add_key( "key-subdelay-up", KEY_SUBDELAY_UP, NULL,
2201              SUBDELAY_UP_KEY_TEXT, SUBDELAY_UP_KEY_LONGTEXT, VLC_TRUE );
2202     add_key( "key-subdelay-down", KEY_SUBDELAY_DOWN, NULL,
2203              SUBDELAY_DOWN_KEY_TEXT, SUBDELAY_DOWN_KEY_LONGTEXT, VLC_TRUE );
2204     add_key( "key-audiodelay-up", KEY_AUDIODELAY_UP, NULL,
2205              AUDIODELAY_UP_KEY_TEXT, AUDIODELAY_UP_KEY_LONGTEXT, VLC_TRUE );
2206     add_key( "key-audiodelay-down", KEY_AUDIODELAY_DOWN, NULL,
2207              AUDIODELAY_DOWN_KEY_TEXT, AUDIODELAY_DOWN_KEY_LONGTEXT, VLC_TRUE );
2208     add_key( "key-audio-track", KEY_AUDIO_TRACK, NULL, AUDIO_TRACK_KEY_TEXT,
2209              AUDIO_TRACK_KEY_LONGTEXT, VLC_FALSE );
2210     add_key( "key-subtitle-track", KEY_SUBTITLE_TRACK, NULL,
2211              SUBTITLE_TRACK_KEY_TEXT, SUBTITLE_TRACK_KEY_LONGTEXT, VLC_FALSE );
2212     add_key( "key-aspect-ratio", KEY_ASPECT_RATIO, NULL,
2213              ASPECT_RATIO_KEY_TEXT, ASPECT_RATIO_KEY_LONGTEXT, VLC_FALSE );
2214     add_key( "key-crop", KEY_CROP, NULL,
2215              CROP_KEY_TEXT, CROP_KEY_LONGTEXT, VLC_FALSE );
2216     add_key( "key-deinterlace", KEY_DEINTERLACE, NULL,
2217              DEINTERLACE_KEY_TEXT, DEINTERLACE_KEY_LONGTEXT, VLC_FALSE );
2218     add_key( "key-intf-show", KEY_INTF_SHOW, NULL,
2219              INTF_SHOW_KEY_TEXT, INTF_SHOW_KEY_LONGTEXT, VLC_TRUE );
2220     add_key( "key-intf-hide", KEY_INTF_HIDE, NULL,
2221              INTF_HIDE_KEY_TEXT, INTF_HIDE_KEY_LONGTEXT, VLC_TRUE );
2222     add_key( "key-snapshot", KEY_SNAPSHOT, NULL,
2223         SNAP_KEY_TEXT, SNAP_KEY_LONGTEXT, VLC_TRUE );
2224     add_key( "key-history-back", KEY_HISTORY_BACK, NULL, HISTORY_BACK_TEXT,
2225              HISTORY_BACK_LONGTEXT, VLC_TRUE );
2226     add_key( "key-history-forward", KEY_HISTORY_FORWARD, NULL,
2227              HISTORY_FORWARD_TEXT, HISTORY_FORWARD_LONGTEXT, VLC_TRUE );
2228     add_key( "key-record", KEY_RECORD, NULL,
2229              RECORD_KEY_TEXT, RECORD_KEY_LONGTEXT, VLC_TRUE );
2230     add_key( "key-dump", KEY_DUMP, NULL,
2231              DUMP_KEY_TEXT, DUMP_KEY_LONGTEXT, VLC_TRUE );
2232     add_key( "key-zoom", KEY_ZOOM, NULL,
2233              ZOOM_KEY_TEXT, ZOOM_KEY_LONGTEXT, VLC_TRUE );
2234     add_key( "key-unzoom", KEY_UNZOOM, NULL,
2235              UNZOOM_KEY_TEXT, UNZOOM_KEY_LONGTEXT, VLC_TRUE );
2236     add_key( "key-wallpaper", KEY_WALLPAPER, NULL, WALLPAPER_KEY_TEXT,
2237              WALLPAPER_KEY_LONGTEXT, VLC_FALSE );
2238
2239     add_key( "key-menu-on", KEY_MENU_ON, NULL,
2240              MENU_ON_KEY_TEXT, MENU_ON_KEY_LONGTEXT, VLC_TRUE );
2241     add_key( "key-menu-off", KEY_MENU_OFF, NULL,
2242              MENU_OFF_KEY_TEXT, MENU_OFF_KEY_LONGTEXT, VLC_TRUE );
2243     add_key( "key-menu-right", KEY_MENU_RIGHT, NULL,
2244              MENU_RIGHT_KEY_TEXT, MENU_RIGHT_KEY_LONGTEXT, VLC_TRUE );
2245     add_key( "key-menu-left", KEY_MENU_LEFT, NULL,
2246              MENU_LEFT_KEY_TEXT, MENU_LEFT_KEY_LONGTEXT, VLC_TRUE );
2247     add_key( "key-menu-up", KEY_MENU_UP, NULL,
2248              MENU_UP_KEY_TEXT, MENU_UP_KEY_LONGTEXT, VLC_TRUE );
2249     add_key( "key-menu-down", KEY_MENU_DOWN, NULL,
2250              MENU_DOWN_KEY_TEXT, MENU_DOWN_KEY_LONGTEXT, VLC_TRUE );
2251     add_key( "key-menu-select", KEY_MENU_SELECT, NULL,
2252              MENU_SELECT_KEY_TEXT, MENU_SELECT_KEY_LONGTEXT, VLC_TRUE );
2253
2254     add_key( "key-crop-top", KEY_CROP_TOP, NULL,
2255              CROP_TOP_KEY_TEXT, CROP_TOP_KEY_LONGTEXT, VLC_TRUE );
2256     add_key( "key-uncrop-top", KEY_UNCROP_TOP, NULL,
2257              UNCROP_TOP_KEY_TEXT, UNCROP_TOP_KEY_LONGTEXT, VLC_TRUE );
2258     add_key( "key-crop-left", KEY_CROP_LEFT, NULL,
2259              CROP_LEFT_KEY_TEXT, CROP_LEFT_KEY_LONGTEXT, VLC_TRUE );
2260     add_key( "key-uncrop-left", KEY_UNCROP_LEFT, NULL,
2261              UNCROP_LEFT_KEY_TEXT, UNCROP_LEFT_KEY_LONGTEXT, VLC_TRUE );
2262     add_key( "key-crop-bottom", KEY_CROP_BOTTOM, NULL,
2263              CROP_BOTTOM_KEY_TEXT, CROP_BOTTOM_KEY_LONGTEXT, VLC_TRUE );
2264     add_key( "key-uncrop-bottom", KEY_UNCROP_BOTTOM, NULL,
2265              UNCROP_BOTTOM_KEY_TEXT, UNCROP_BOTTOM_KEY_LONGTEXT, VLC_TRUE );
2266     add_key( "key-crop-right", KEY_CROP_RIGHT, NULL,
2267              CROP_RIGHT_KEY_TEXT, CROP_RIGHT_KEY_LONGTEXT, VLC_TRUE );
2268     add_key( "key-uncrop-right", KEY_UNCROP_RIGHT, NULL,
2269              UNCROP_RIGHT_KEY_TEXT, UNCROP_RIGHT_KEY_LONGTEXT, VLC_TRUE );
2270     add_key( "key-random", KEY_RANDOM, NULL,
2271              RANDOM_KEY_TEXT, RANDOM_KEY_LONGTEXT, VLC_FALSE );
2272     add_key( "key-loop", KEY_LOOP, NULL,
2273              LOOP_KEY_TEXT, LOOP_KEY_LONGTEXT, VLC_FALSE );
2274
2275     set_section ( N_("Jump sizes" ), NULL );
2276     add_integer( "extrashort-jump-size", 3, NULL, JIEXTRASHORT_TEXT,
2277                                     JIEXTRASHORT_LONGTEXT, VLC_FALSE );
2278     add_integer( "short-jump-size", 10, NULL, JISHORT_TEXT,
2279                                     JISHORT_LONGTEXT, VLC_FALSE );
2280     add_integer( "medium-jump-size", 60, NULL, JIMEDIUM_TEXT,
2281                                     JIMEDIUM_LONGTEXT, VLC_FALSE );
2282     add_integer( "long-jump-size", 300, NULL, JILONG_TEXT,
2283                                     JILONG_LONGTEXT, VLC_FALSE );
2284
2285     /* HACK so these don't get displayed */
2286     set_category( -1 );
2287     set_subcategory( -1 );
2288     add_key( "key-set-bookmark1", KEY_SET_BOOKMARK1, NULL,
2289              SET_BOOKMARK1_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2290     add_key( "key-set-bookmark2", KEY_SET_BOOKMARK2, NULL,
2291              SET_BOOKMARK2_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2292     add_key( "key-set-bookmark3", KEY_SET_BOOKMARK3, NULL,
2293              SET_BOOKMARK3_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2294     add_key( "key-set-bookmark4", KEY_SET_BOOKMARK4, NULL,
2295              SET_BOOKMARK4_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2296     add_key( "key-set-bookmark5", KEY_SET_BOOKMARK5, NULL,
2297              SET_BOOKMARK5_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2298     add_key( "key-set-bookmark6", KEY_SET_BOOKMARK6, NULL,
2299              SET_BOOKMARK6_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2300     add_key( "key-set-bookmark7", KEY_SET_BOOKMARK7, NULL,
2301              SET_BOOKMARK7_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2302     add_key( "key-set-bookmark8", KEY_SET_BOOKMARK8, NULL,
2303              SET_BOOKMARK8_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2304     add_key( "key-set-bookmark9", KEY_SET_BOOKMARK9, NULL,
2305              SET_BOOKMARK9_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2306     add_key( "key-set-bookmark10", KEY_SET_BOOKMARK10, NULL,
2307              SET_BOOKMARK10_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2308     add_key( "key-play-bookmark1", KEY_PLAY_BOOKMARK1, NULL,
2309              PLAY_BOOKMARK1_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2310     add_key( "key-play-bookmark2", KEY_PLAY_BOOKMARK2, NULL,
2311              PLAY_BOOKMARK2_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2312     add_key( "key-play-bookmark3", KEY_PLAY_BOOKMARK3, NULL,
2313              PLAY_BOOKMARK3_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2314     add_key( "key-play-bookmark4", KEY_PLAY_BOOKMARK4, NULL,
2315              PLAY_BOOKMARK4_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2316     add_key( "key-play-bookmark5", KEY_PLAY_BOOKMARK5, NULL,
2317              PLAY_BOOKMARK5_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2318     add_key( "key-play-bookmark6", KEY_PLAY_BOOKMARK6, NULL,
2319              PLAY_BOOKMARK6_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2320     add_key( "key-play-bookmark7", KEY_PLAY_BOOKMARK7, NULL,
2321              PLAY_BOOKMARK7_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2322     add_key( "key-play-bookmark8", KEY_PLAY_BOOKMARK8, NULL,
2323              PLAY_BOOKMARK8_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2324     add_key( "key-play-bookmark9", KEY_PLAY_BOOKMARK9, NULL,
2325              PLAY_BOOKMARK9_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2326     add_key( "key-play-bookmark10", KEY_PLAY_BOOKMARK10, NULL,
2327              PLAY_BOOKMARK10_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
2328
2329
2330     add_string( "bookmark1", NULL, NULL,
2331              BOOKMARK1_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
2332     add_string( "bookmark2", NULL, NULL,
2333              BOOKMARK2_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
2334     add_string( "bookmark3", NULL, NULL,
2335              BOOKMARK3_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
2336     add_string( "bookmark4", NULL, NULL,
2337              BOOKMARK4_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
2338     add_string( "bookmark5", NULL, NULL,
2339              BOOKMARK5_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
2340     add_string( "bookmark6", NULL, NULL,
2341              BOOKMARK6_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
2342     add_string( "bookmark7", NULL, NULL,
2343              BOOKMARK7_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
2344     add_string( "bookmark8", NULL, NULL,
2345              BOOKMARK8_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
2346     add_string( "bookmark9", NULL, NULL,
2347              BOOKMARK9_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
2348     add_string( "bookmark10", NULL, NULL,
2349               BOOKMARK10_TEXT, BOOKMARK_LONGTEXT, VLC_FALSE );
2350
2351     /* Usage (mainly useful for cmd line stuff) */
2352     /* add_usage_hint( PLAYLIST_USAGE ); */
2353
2354     set_description( N_("main program") );
2355     set_capability( "main", 100 );
2356 vlc_module_end();
2357
2358 const module_config_t libvlc_config[] =
2359 {
2360     {
2361         .i_type   = CONFIG_ITEM_BOOL,
2362         .psz_name = "help",
2363         .i_short  = 'h',
2364         .psz_text = N_("print help for VLC (can be combined with --advanced and --help-verbose)")
2365     },
2366     {
2367         .i_type   = CONFIG_ITEM_BOOL,
2368         .psz_name = "longhelp",
2369         .i_short  = 'H',
2370         .psz_text = N_("print help for VLC and all its modules (can be combined with --advanced and --help-verbose)")
2371     },
2372     {
2373         .i_type   = CONFIG_ITEM_BOOL,
2374         .psz_name = "advanced",
2375         .psz_text = N_("print help for the advanced options")
2376     },
2377     {
2378         .i_type   = CONFIG_ITEM_BOOL,
2379         .psz_name = "help-verbose",
2380         .psz_text = N_("ask for extra verbosity when displaying help")
2381     },
2382     {
2383         .i_type   = CONFIG_ITEM_BOOL,
2384         .psz_name = "list",
2385         .i_short  = 'l',
2386         .psz_text = N_("print a list of available modules")
2387     },
2388     {
2389         .i_type   = CONFIG_ITEM_BOOL,
2390         .psz_name = "list-verbose",
2391         .psz_text = N_("print a list of available modules with extra detail")
2392     },
2393     {
2394         .i_type   = CONFIG_ITEM_STRING,
2395         .psz_name = "module",
2396         .i_short  = 'p',
2397         .psz_text = N_("print help on a specific module (can be combined with --advanced and --help-verbose)")
2398     },
2399     {
2400         .i_type   = CONFIG_ITEM_BOOL,
2401         .psz_name = "save-config",
2402         .psz_text = N_("save the current command line options in the config")
2403     },
2404     {
2405         .i_type   = CONFIG_ITEM_BOOL,
2406         .psz_name = "reset-config",
2407         .psz_text = N_("reset the current config to the default values")
2408     },
2409     {
2410         .i_type   = CONFIG_ITEM_STRING,
2411         .psz_name = "config",
2412         .psz_text = N_("use alternate config file")
2413     },
2414     {
2415         .i_type   = CONFIG_ITEM_BOOL,
2416         .psz_name = "reset-plugins-cache",
2417         .psz_text = N_("resets the current plugins cache")
2418     },
2419     {
2420         .i_type   = CONFIG_ITEM_BOOL,
2421         .psz_name = "version",
2422         .psz_text = N_("print version information")
2423     }
2424 };
2425
2426 const size_t libvlc_config_count = sizeof (libvlc_config)
2427                                  / sizeof (libvlc_config[0]);
2428
2429 /*****************************************************************************
2430  * End configuration.
2431  *****************************************************************************/
2432
2433 /*****************************************************************************
2434  * Initializer for the libvlc instance structure
2435  * storing the action / key associations
2436  *****************************************************************************/
2437 const struct hotkey libvlc_hotkeys[] =
2438 {
2439     { "key-quit", ACTIONID_QUIT, 0, 0, 0, 0 },
2440     { "key-play-pause", ACTIONID_PLAY_PAUSE, 0, 0, 0, 0 },
2441     { "key-play", ACTIONID_PLAY, 0, 0, 0, 0 },
2442     { "key-pause", ACTIONID_PAUSE, 0, 0, 0, 0 },
2443     { "key-stop", ACTIONID_STOP, 0, 0, 0, 0 },
2444     { "key-position", ACTIONID_POSITION, 0, 0, 0, 0 },
2445     { "key-jump-extrashort", ACTIONID_JUMP_BACKWARD_EXTRASHORT, 0, 1000000, 0, 0 },
2446     { "key-jump+extrashort", ACTIONID_JUMP_FORWARD_EXTRASHORT, 0, 1000000, 0, 0 },
2447     { "key-jump-short", ACTIONID_JUMP_BACKWARD_SHORT, 0, 1000000, 0, 0 },
2448     { "key-jump+short", ACTIONID_JUMP_FORWARD_SHORT, 0, 1000000, 0, 0 },
2449     { "key-jump-medium", ACTIONID_JUMP_BACKWARD_MEDIUM, 0, 1000000, 0, 0 },
2450     { "key-jump+medium", ACTIONID_JUMP_FORWARD_MEDIUM, 0, 1000000, 0, 0 },
2451     { "key-jump-long", ACTIONID_JUMP_BACKWARD_LONG, 0, 1000000, 0, 0 },
2452     { "key-jump+long", ACTIONID_JUMP_FORWARD_LONG, 0, 1000000, 0, 0 },
2453     { "key-prev", ACTIONID_PREV, 0, 0, 0, 0 },
2454     { "key-next", ACTIONID_NEXT, 0, 0, 0, 0 },
2455     { "key-faster", ACTIONID_FASTER, 0, 0, 0, 0 },
2456     { "key-slower", ACTIONID_SLOWER, 0, 0, 0, 0 },
2457     { "key-toggle-fullscreen", ACTIONID_TOGGLE_FULLSCREEN, 0, 0, 0, 0 },
2458     { "key-leave-fullscreen", ACTIONID_LEAVE_FULLSCREEN, 0, 0, 0, 0 },
2459     { "key-vol-up", ACTIONID_VOL_UP, 0, 0, 0, 0 },
2460     { "key-vol-down", ACTIONID_VOL_DOWN, 0, 0, 0, 0 },
2461     { "key-vol-mute", ACTIONID_VOL_MUTE, 0, 0, 0, 0 },
2462     { "key-subdelay-down", ACTIONID_SUBDELAY_DOWN, 0, 0, 0, 0 },
2463     { "key-subdelay-up", ACTIONID_SUBDELAY_UP, 0, 0, 0, 0 },
2464     { "key-audiodelay-down", ACTIONID_AUDIODELAY_DOWN, 0, 0, 0, 0 },
2465     { "key-audiodelay-up", ACTIONID_AUDIODELAY_UP, 0, 0, 0, 0 },
2466     { "key-audio-track", ACTIONID_AUDIO_TRACK, 0, 0, 0, 0 },
2467     { "key-subtitle-track", ACTIONID_SUBTITLE_TRACK, 0, 0, 0, 0 },
2468     { "key-aspect-ratio", ACTIONID_ASPECT_RATIO, 0, 0, 0, 0 },
2469     { "key-crop", ACTIONID_CROP, 0, 0, 0, 0 },
2470     { "key-deinterlace", ACTIONID_DEINTERLACE, 0, 0, 0, 0 },
2471     { "key-intf-show", ACTIONID_INTF_SHOW, 0, 0, 0, 0 },
2472     { "key-intf-hide", ACTIONID_INTF_HIDE, 0, 0, 0, 0 },
2473     { "key-snapshot", ACTIONID_SNAPSHOT, 0, 0, 0, 0 },
2474     { "key-zoom", ACTIONID_ZOOM, 0, 0, 0, 0 },
2475     { "key-unzoom", ACTIONID_UNZOOM, 0, 0, 0, 0 },
2476     { "key-crop-top", ACTIONID_CROP_TOP, 0, 0, 0, 0 },
2477     { "key-uncrop-top", ACTIONID_UNCROP_TOP, 0, 0, 0, 0 },
2478     { "key-crop-left", ACTIONID_CROP_LEFT, 0, 0, 0, 0 },
2479     { "key-uncrop-left", ACTIONID_UNCROP_LEFT, 0, 0, 0, 0 },
2480     { "key-crop-bottom", ACTIONID_CROP_BOTTOM, 0, 0, 0, 0 },
2481     { "key-uncrop-bottom", ACTIONID_UNCROP_BOTTOM, 0, 0, 0, 0 },
2482     { "key-crop-right", ACTIONID_CROP_RIGHT, 0, 0, 0, 0 },
2483     { "key-uncrop-right", ACTIONID_UNCROP_RIGHT, 0, 0, 0, 0 },
2484     { "key-nav-activate", ACTIONID_NAV_ACTIVATE, 0, 0, 0, 0 },
2485     { "key-nav-up", ACTIONID_NAV_UP, 0, 0, 0, 0 },
2486     { "key-nav-down", ACTIONID_NAV_DOWN, 0, 0, 0, 0 },
2487     { "key-nav-left", ACTIONID_NAV_LEFT, 0, 0, 0, 0 },
2488     { "key-nav-right", ACTIONID_NAV_RIGHT, 0, 0, 0, 0 },
2489     { "key-disc-menu", ACTIONID_DISC_MENU, 0, 0, 0, 0 },
2490     { "key-title-prev", ACTIONID_TITLE_PREV, 0, 0, 0, 0 },
2491     { "key-title-next", ACTIONID_TITLE_NEXT, 0, 0, 0, 0 },
2492     { "key-chapter-prev", ACTIONID_CHAPTER_PREV, 0, 0, 0, 0 },
2493     { "key-chapter-next", ACTIONID_CHAPTER_NEXT, 0, 0, 0, 0 },
2494     { "key-set-bookmark1", ACTIONID_SET_BOOKMARK1, 0, 0, 0, 0 },
2495     { "key-set-bookmark2", ACTIONID_SET_BOOKMARK2, 0, 0, 0, 0 },
2496     { "key-set-bookmark3", ACTIONID_SET_BOOKMARK3, 0, 0, 0, 0 },
2497     { "key-set-bookmark4", ACTIONID_SET_BOOKMARK4, 0, 0, 0, 0 },
2498     { "key-set-bookmark5", ACTIONID_SET_BOOKMARK5, 0, 0, 0, 0 },
2499     { "key-set-bookmark6", ACTIONID_SET_BOOKMARK6, 0, 0, 0, 0 },
2500     { "key-set-bookmark7", ACTIONID_SET_BOOKMARK7, 0, 0, 0, 0 },
2501     { "key-set-bookmark8", ACTIONID_SET_BOOKMARK8, 0, 0, 0, 0 },
2502     { "key-set-bookmark9", ACTIONID_SET_BOOKMARK9, 0, 0, 0, 0 },
2503     { "key-set-bookmark10", ACTIONID_SET_BOOKMARK10, 0, 0, 0, 0 },
2504     { "key-play-bookmark1", ACTIONID_PLAY_BOOKMARK1, 0, 0, 0, 0 },
2505     { "key-play-bookmark2", ACTIONID_PLAY_BOOKMARK2, 0, 0, 0, 0 },
2506     { "key-play-bookmark3", ACTIONID_PLAY_BOOKMARK3, 0, 0, 0, 0 },
2507     { "key-play-bookmark4", ACTIONID_PLAY_BOOKMARK4, 0, 0, 0, 0 },
2508     { "key-play-bookmark5", ACTIONID_PLAY_BOOKMARK5, 0, 0, 0, 0 },
2509     { "key-play-bookmark6", ACTIONID_PLAY_BOOKMARK6, 0, 0, 0, 0 },
2510     { "key-play-bookmark7", ACTIONID_PLAY_BOOKMARK7, 0, 0, 0, 0 },
2511     { "key-play-bookmark8", ACTIONID_PLAY_BOOKMARK8, 0, 0, 0, 0 },
2512     { "key-play-bookmark9", ACTIONID_PLAY_BOOKMARK9, 0, 0, 0, 0 },
2513     { "key-play-bookmark10", ACTIONID_PLAY_BOOKMARK10, 0, 0, 0, 0 },
2514     { "key-history-back", ACTIONID_HISTORY_BACK, 0, 0, 0, 0 },
2515     { "key-history-forward", ACTIONID_HISTORY_FORWARD, 0, 0, 0, 0 },
2516     { "key-record", ACTIONID_RECORD, 0, 0, 0, 0 },
2517     { "key-dump", ACTIONID_DUMP, 0, 0, 0, 0 },
2518     { "key-random", ACTIONID_RANDOM, 0, 0, 0, 0 },
2519     { "key-loop", ACTIONID_LOOP, 0, 0, 0, 0 },
2520     { "key-wallpaper", ACTIONID_WALLPAPER, 0, 0, 0, 0 },
2521     { "key-menu-on", ACTIONID_MENU_ON, 0, 0, 0, 0 },
2522     { "key-menu-off", ACTIONID_MENU_OFF, 0, 0, 0, 0 },
2523     { "key-menu-right", ACTIONID_MENU_RIGHT, 0, 0, 0, 0 },
2524     { "key-menu-left", ACTIONID_MENU_LEFT, 0, 0, 0, 0 },
2525     { "key-menu-up", ACTIONID_MENU_UP, 0, 0, 0, 0 },
2526     { "key-menu-down", ACTIONID_MENU_DOWN, 0, 0, 0, 0 },
2527     { "key-menu-select", ACTIONID_MENU_SELECT, 0, 0, 0, 0 },
2528     { NULL, 0, 0, 0, 0, 0 }
2529 };
2530
2531 const size_t libvlc_hotkeys_size = sizeof (libvlc_hotkeys);