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