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