]> git.sesse.net Git - vlc/blob - src/libvlc.h
src/libvlc.h:
[vlc] / src / libvlc.h
1 /*****************************************************************************
2  * libvlc.h: main libvlc header
3  *****************************************************************************
4  * Copyright (C) 1998-2002 VideoLAN
5  * $Id: libvlc.h,v 1.129 2004/01/20 15:47:42 sigmunau Exp $
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@netcourrier.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 #define Nothing here, this is just to prevent update-po from being stupid
27 #include "vlc_keys.h"
28
29 static char *ppsz_language[] =
30 { "auto", "en", "en_GB", "es", "de",
31   "fr", "hu", "it", "ja", "nl", "no",
32   "pl", "pt_BR", "ru", "sv" };
33 static char *ppsz_language_text[] =
34 { N_("Auto"), N_("American"), N_("British"), N_("Spanish"), N_("German"),
35   N_("French"), N_("Hungarian"), N_("Italian"), N_("Japanese"), N_("Dutch"), N_("Norwegian"),
36   N_("Polish"), N_("Brazilian"), N_("Russian"), N_("Swedish") };
37
38 /*****************************************************************************
39  * Configuration options for the main program. Each module will also separatly
40  * define its own configuration options.
41  * Look into configuration.h if you need to know more about the following
42  * macros.
43  *****************************************************************************/
44
45 #define INTF_CAT_LONGTEXT N_( \
46     "These options allow you to configure the interfaces used by VLC.\n" \
47     "You can select the main interface, additional " \
48     "interface modules, and define various related options." )
49
50 #define INTF_TEXT N_("Interface module")
51 #define INTF_LONGTEXT N_( \
52     "This option allows you to select the interface used by VLC.\n" \
53     "The default behavior is to automatically select the best module " \
54     "available.")
55
56 #define EXTRAINTF_TEXT N_("Extra interface modules")
57 #define EXTRAINTF_LONGTEXT N_( \
58     "This option allows you to select additional interfaces used by VLC. " \
59     "They will be launched in the background in addition to the default " \
60     "interface. Use a comma separated list of interface modules. (common " \
61     "values are: logger,gestures,sap,rc,http,screensaver)")
62
63 #define VERBOSE_TEXT N_("Verbosity (0,1,2)")
64 #define VERBOSE_LONGTEXT N_( \
65     "This options sets the verbosity level (0=only errors and " \
66     "standard messages, 1=warnings, 2=debug).")
67
68 #define QUIET_TEXT N_("Be quiet")
69 #define QUIET_LONGTEXT N_( \
70     "This options turns off all warning and information messages.")
71
72 #define LANGUAGE_TEXT N_("Language")
73 #define LANGUAGE_LONGTEXT N_( "This option allows you to set the language " \
74     "of the interface. The system language is auto-detected if \"auto\" is " \
75     "specified here." )
76
77 #define COLOR_TEXT N_("Color messages")
78 #define COLOR_LONGTEXT N_( \
79     "When this option is turned on, the messages sent to the console will " \
80     "be colorized. Your terminal needs Linux color support for this to work.")
81
82 #define ADVANCED_TEXT N_("Show advanced options")
83 #define ADVANCED_LONGTEXT N_( \
84     "When this option is turned on, the preferences and/or interfaces  will " \
85     "show all the available options, including those that most users should " \
86     "never touch")
87
88 #define INTF_PATH_TEXT N_("Interface default search path")
89 #define INTF_PATH_LONGTEXT N_( \
90     "This option allows you to set the default path that the interface will " \
91     "open when looking for a file.")
92
93 #define PLUGIN_PATH_TEXT N_("Plugin search path")
94 #define PLUGIN_PATH_LONGTEXT N_( \
95     "This option allows you to specify an additional path for VLC to look " \
96     "for its plugins.")
97
98 #define AOUT_CAT_LONGTEXT N_( \
99     "These options allow you to tune VLC's audio subsystem, " \
100     "and to add audio filters which can be used for " \
101     "postprocessing or visual effects (spectrum analyzer, ...).\n" \
102     "To tune these filters, have a look at the \"audio filter\" " \
103     "plugin options.")
104
105 #define AOUT_TEXT N_("Audio output module")
106 #define AOUT_LONGTEXT N_( \
107     "This option allows you to select the audio output method used by VLC. " \
108     "The default behavior is to automatically select the best method " \
109     "available.")
110
111 #define AUDIO_TEXT N_("Enable audio")
112 #define AUDIO_LONGTEXT N_( \
113     "You can completely disable the audio output. In this case the audio " \
114     "decoding will not take place, and it will save some processing power.")
115
116 #define MONO_TEXT N_("Force mono audio")
117 #define MONO_LONGTEXT N_("This will force a mono audio output")
118
119 #define VOLUME_TEXT N_("Audio output volume")
120 #define VOLUME_LONGTEXT N_( \
121     "You can set the default audio output volume here, in a range from 0 to " \
122     "1024.")
123
124 #define VOLUME_SAVE_TEXT N_("Audio output saved volume")
125 #define VOLUME_SAVE_LONGTEXT N_( \
126     "This saves the audio output volume when you select mute.")
127
128 #define AOUT_RATE_TEXT N_("Audio output frequency (Hz)")
129 #define AOUT_RATE_LONGTEXT N_( \
130     "You can force the audio output frequency here. Common values are " \
131     "-1 (default), 48000, 44100, 32000, 22050, 16000, 11025, 8000.")
132
133 #if !defined( SYS_DARWIN )
134 #define AOUT_RESAMP_TEXT N_("High quality audio resampling")
135 #define AOUT_RESAMP_LONGTEXT N_( \
136     "High quality audio resampling can be processor intensive so you can " \
137     "disable it and a cheaper resampling algorithm will be used instead.")
138 #endif
139
140 #define DESYNC_TEXT N_("Compensate desynchronization of audio (in ms)")
141 #define DESYNC_LONGTEXT N_( \
142     "This option allows you to delay the audio output. This can be handy if " \
143     "you notice a lag between the video and the audio.")
144
145 #define MULTICHA_TEXT N_("Choose preferred audio output channels mode")
146 #define MULTICHA_LONGTEXT N_( \
147     "This option allows you to set the audio output channels mode that will " \
148     "be used by default when possible (ie. if your hardware supports it as " \
149     "well as the audio stream being played)")
150
151 #define SPDIF_TEXT N_("Use the S/PDIF audio output when available")
152 #define SPDIF_LONGTEXT N_( \
153     "This option allows you to use the S/PDIF audio output by default when " \
154     "your hardware supports it as well as the audio stream being played.")
155
156 #define AUDIO_FILTER_TEXT N_("Audio filters")
157 #define AUDIO_FILTER_LONGTEXT N_( \
158     "This allows you to add audio postprocessing filters, to modify " \
159     "the sound.")
160
161 #define AUDIO_CHANNEL_MIXER N_("Channel mixer")
162 #define AUDIO_CHANNEL_MIXER_LONGTEXT N_( \
163      "This allows you to choose a specific audio channel mixer. For instance " \
164      "the headphone channel mixer will downmix any audio source to a stereo " \
165      "output and give the feeling that you are standing in a room with a " \
166      "complete 5.1 speaker set when using only a headphone.")
167
168 #define VOUT_CAT_LONGTEXT N_( \
169     "These options allow you to modify options related to " \
170     "the video output subsystem. You can for example enable " \
171     "video filters, like deinterlacing, constrast / hue / " \
172     "saturation adjusting, ...\n" \
173     "Enable these filters here and configure them in the video " \
174     "filters plugins section." )
175
176 #define VOUT_TEXT N_("Video output module")
177 #define VOUT_LONGTEXT N_( \
178     "This option allows you to select the video output method used by VLC. " \
179     "The default behavior is to automatically select the best " \
180     "method available.")
181
182 #define VIDEO_TEXT N_("Enable video")
183 #define VIDEO_LONGTEXT N_( \
184     "You can completely disable the video output. In this case the video " \
185     "decoding stage will not take place, which will save some processing power.")
186
187 #define WIDTH_TEXT N_("Video width")
188 #define WIDTH_LONGTEXT N_( \
189     "You can enforce the video width here. By default (-1) VLC will " \
190     "adapt to the video characteristics.")
191
192 #define HEIGHT_TEXT N_("Video height")
193 #define HEIGHT_LONGTEXT N_( \
194     "You can enforce the video height here. By default (-1) VLC will " \
195     "adapt to the video characteristics.")
196
197 #define ALIGN_TEXT N_("Video alignment")
198 #define ALIGN_LONGTEXT N_( \
199     "You can enforce the video alignement in its window. By default (0) it " \
200     "will be centered (0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \
201     "also use combinations of these values).")
202 static int pi_align_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };
203 static char *ppsz_align_descriptions[] = { N_("Center"),
204                                            N_("Left"), N_("Right"),
205                                            N_("Top"), N_("Bottom"),
206                                            N_("Top-Left"), N_("Top-Right"),
207                                            N_("Bottom-Left"), N_("Bottom-Right")};
208
209 #define ZOOM_TEXT N_("Zoom video")
210 #define ZOOM_LONGTEXT N_( \
211     "You can zoom the video by the specified factor.")
212
213 #define GRAYSCALE_TEXT N_("Grayscale video output")
214 #define GRAYSCALE_LONGTEXT N_( \
215     "When enabled, the color information from the video won't be decoded " \
216     "(this can also allow you to save some processing power).")
217
218 #define FULLSCREEN_TEXT N_("Fullscreen video output")
219 #define FULLSCREEN_LONGTEXT N_( \
220     "If this option is enabled, VLC will always start a video in fullscreen " \
221     "mode.")
222
223 #define OVERLAY_TEXT N_("Overlay video output")
224 #define OVERLAY_LONGTEXT N_( \
225     "If enabled, VLC will try to take advantage of the overlay capabilities " \
226     "of your graphics card.")
227
228 #define VIDEO_ON_TOP_TEXT N_("Always on top")
229 #define VIDEO_ON_TOP_LONGTEXT N_("Always place the video window on top of " \
230     "other windows" )
231
232 #define SPUMARGIN_TEXT N_("Force SPU position")
233 #define SPUMARGIN_LONGTEXT N_( \
234     "You can use this option to place the subtitles under the movie, " \
235     "instead of over the movie. Try several positions.")
236
237 #define OSD_TEXT N_("On Screen Display")
238 #define OSD_LONGTEXT N_( \
239     "You can disable the messages VLC creates in the video.")
240
241 #define FILTER_TEXT N_("Video filter module")
242 #define FILTER_LONGTEXT N_( \
243     "This will allow you to add a post-processing filter to enhance the " \
244     "picture quality, for instance deinterlacing, or to clone or distort " \
245     "the video window.")
246
247 #define ASPECT_RATIO_TEXT N_("Source aspect ratio")
248 #define ASPECT_RATIO_LONGTEXT N_( \
249     "This will force the source aspect ratio. For instance, some DVDs claim " \
250     "to be 16:9 while they are actually 4:3. This can also be used as a " \
251     "hint for VLC when a movie does not have aspect ratio information. " \
252     "Accepted formats are x:y (4:3, 16:9, etc.) expressing the global image " \
253     "aspect, or a float value (1.25, 1.3333, etc.) expressing pixel " \
254     "squareness.")
255
256 #if 0
257 #define PIXEL_RATIO_TEXT N_("Destination aspect ratio")
258 #define PIXEL_RATIO_LONGTEXT N_( \
259     "This will force the destination pixel size. By default VLC assumes " \
260     "your pixels are square, unless your hardware has a way to tell it " \
261     "otherwise. This may be used when you output VLC's signal to another " \
262     "device such as a TV set. Accepted format is a float value (1, 1.25, " \
263     "1.3333, etc.) expressing pixel squareness.")
264 #endif
265
266 #define INPUT_CAT_LONGTEXT N_( \
267     "These options allow you to modify options related to the input " \
268     "modules, such as the DVD or VCD device, the network interface " \
269     "settings or the subtitle channel.")
270
271 #define CR_AVERAGE_TEXT N_("Clock reference average counter")
272 #define CR_AVERAGE_LONGTEXT N_( \
273     "When using the PVR input (or a very irregular source), you should " \
274     "set this to 10000.")
275
276 #define SERVER_PORT_TEXT N_("Server port")
277 #define SERVER_PORT_LONGTEXT N_( \
278     "This is the port used for UDP streams. By default, we chose 1234.")
279
280 #define MTU_TEXT N_("MTU of the network interface")
281 #define MTU_LONGTEXT N_( \
282     "This is the typical size of UDP packets that we expect. On Ethernet " \
283     "it is usually 1500.")
284
285 #define IFACE_ADDR_TEXT N_("Network interface address")
286 #define IFACE_ADDR_LONGTEXT N_( \
287     "If you have several interfaces on your machine and use the " \
288     "multicast solution, you will probably have to indicate the IP address " \
289     "of your multicasting interface here.")
290
291 #define TTL_TEXT N_("Time to live")
292 #define TTL_LONGTEXT N_( \
293     "Indicate here the Time To Live of the multicast packets sent by " \
294     "the stream output.")
295
296 #define INPUT_PROGRAM_TEXT N_("Choose program (SID)")
297 #define INPUT_PROGRAM_LONGTEXT N_( \
298     "Choose the program to select by giving its Service ID.")
299
300 #define INPUT_AUDIO_TEXT N_("Choose audio")
301 #define INPUT_AUDIO_LONGTEXT N_( \
302     "Give the default type of audio you want to use in a DVD. " \
303     "(Developers only)")
304
305 #define INPUT_CHAN_TEXT N_("Choose audio channel")
306 #define INPUT_CHAN_LONGTEXT N_( \
307     "Give the stream number of the audio channel you want to use in a DVD " \
308     "(from 1 to n).")
309
310 #define INPUT_SUBT_TEXT N_("Choose subtitle track")
311 #define INPUT_SUBT_LONGTEXT N_( \
312     "Give the stream number of the subtitle channel you want to use " \
313     "(from 1 to n).")
314
315 #define SUB_AUTO_TEXT N_("Autodetect subtitle files")
316 #define SUB_AUTO_LONGTEXT \
317     "Automatically detect a subtitle file, if no subtitle filename is " \
318     "specified."
319
320 #define SUB_FUZZY_TEXT N_("Subtitle autodection fuzziness")
321 #define SUB_FUZZY_LONGTEXT \
322     "This determines how fuzzy subtitle and movie filenaming matching " \
323     "will be. Options are:\n" \
324     "0 = no subtitles autodetected\n" \
325     "1 = any subtitle file\n" \
326     "2 = any subtitle file containing the movie name\n" \
327     "3 = subtitle file matching the movie name with additional chars\n" \
328     "4 = subtitle file matching the movie name exactly"
329
330 #define SUB_FILE_TEXT N_("Use subtitle file")
331 #define SUB_FILE_LONGTEXT \
332     "Load this subtitle file. To be used when autodetect cannot detect " \
333     "your subtitlefile."
334
335 #define DVD_DEV_TEXT N_("DVD device")
336 #ifdef WIN32
337 #define DVD_DEV_LONGTEXT N_( \
338     "This is the default DVD drive (or file) to use. Don't forget the colon " \
339     "after the drive letter (eg D:)")
340 #else
341 #define DVD_DEV_LONGTEXT N_( \
342     "This is the default DVD device to use.")
343 #endif
344
345 #define VCD_DEV_TEXT N_("VCD device")
346 #ifdef HAVE_VCDX
347 #define VCD_DEV_LONGTEXT N_( \
348     "This is the default VCD device to use. " \
349     "If you don't specify anything, we'll scan for a suitable CD-ROM device." )
350 #else
351 #define VCD_DEV_LONGTEXT N_( \
352     "This is the default VCD device to use." )
353 #endif
354
355 #define CDAUDIO_DEV_TEXT N_("Audio CD device")
356 #ifdef HAVE_CDDAX
357 #define CDAUDIO_DEV_LONGTEXT N_( \
358     "This is the default Audio CD device to use. " \
359     "If you don't specify anything, we'll scan for a suitable CD-ROM device." )
360 #else
361 #define CDAUDIO_DEV_LONGTEXT N_( \
362     "This is the default Audio CD device to use." )
363 #endif
364
365 #define IPV6_TEXT N_("Force IPv6")
366 #define IPV6_LONGTEXT N_( \
367     "If you check this box, IPv6 will be used by default for all UDP and " \
368     "HTTP connections.")
369
370 #define IPV4_TEXT N_("Force IPv4")
371 #define IPV4_LONGTEXT N_( \
372     "If you check this box, IPv4 will be used by default for all UDP and " \
373     "HTTP connections.")
374
375 #define CODEC_CAT_LONGTEXT N_( \
376     "This option can be used to alter the way VLC selects " \
377     "its codecs (decompression methods). Only advanced users should " \
378     "alter this option as it can break playback of all your streams." )
379
380 #define CODEC_TEXT N_("Choose preferred codecs list")
381 #define CODEC_LONGTEXT N_( \
382     "This allows you to select a list of codecs that VLC will use in " \
383     "priority. For instance, 'dummy,a52' will try the dummy and a52 codecs " \
384     "before trying the other ones.")
385
386 #define ENCODER_TEXT N_("Choose preferred encoders list")
387 #define ENCODER_LONGTEXT N_( \
388     "This allows you to select a list of encoders that VLC will use in " \
389     "priority")
390
391 #define SOUT_CAT_LONGTEXT N_( \
392     "These options allow you to set default global options for the " \
393     "stream output subsystem." )
394
395 #define SOUT_TEXT N_("Choose a stream output")
396 #define SOUT_LONGTEXT N_( \
397     "Empty if no stream output.")
398
399 #define SOUT_ALL_TEXT N_("Enable streaming of all ES")
400 #define SOUT_ALL_LONGTEXT N_( \
401     "This allows you to stream all ES (video, audio and subtitles)")
402
403 #define SOUT_DISPLAY_TEXT N_("Display while streaming")
404 #define SOUT_DISPLAY_LONGTEXT N_( \
405     "This allows you to play the stream while streaming it.")
406
407 #define SOUT_VIDEO_TEXT N_("Enable video stream output")
408 #define SOUT_VIDEO_LONGTEXT N_( \
409     "This allows you to choose if the video stream should be redirected to " \
410     "the stream output facility when this last one is enabled.")
411
412 #define SOUT_AUDIO_TEXT N_("Enable audio stream output")
413 #define SOUT_AUDIO_LONGTEXT N_( \
414     "This allows you to choose if the video stream should be redirected to " \
415     "the stream output facility when this last one is enabled.")
416
417 #define SOUT_KEEP_TEXT N_("Keep sout open" )
418 #define SOUT_KEEP_LONGTEXT N_( \
419     "This allows you to keep an unique sout instance across " \
420     "multiple playlist item (automatically insert gather stream_out " \
421     "if not specified)" )
422
423 #define PACKETIZER_TEXT N_("Choose preferred packetizer list")
424 #define PACKETIZER_LONGTEXT N_( \
425     "This allows you to select the order in which VLC will choose its " \
426     "packetizers."  )
427
428 #define MUX_TEXT N_("Mux module")
429 #define MUX_LONGTEXT N_( \
430     "This is a legacy entry to let you configure mux modules")
431
432 #define ACCESS_OUTPUT_TEXT N_("Access output module")
433 #define ACCESS_OUTPUT_LONGTEXT N_( \
434     "This is a legacy entry to let you configure access output modules")
435
436 #define CPU_CAT_LONGTEXT N_( \
437     "These options allow you to enable special CPU optimizations.\n" \
438     "You should always leave all these enabled." )
439
440 #define MMX_TEXT N_("Enable CPU MMX support")
441 #define MMX_LONGTEXT N_( \
442     "If your processor supports the MMX instructions set, VLC can take " \
443     "advantage of them.")
444
445 #define THREE_DN_TEXT N_("Enable CPU 3D Now! support")
446 #define THREE_DN_LONGTEXT N_( \
447     "If your processor supports the 3D Now! instructions set, VLC can take " \
448     "advantage of them.")
449
450 #define MMXEXT_TEXT N_("Enable CPU MMX EXT support")
451 #define MMXEXT_LONGTEXT N_( \
452     "If your processor supports the MMX EXT instructions set, VLC can take " \
453     "advantage of them.")
454
455 #define SSE_TEXT N_("Enable CPU SSE support")
456 #define SSE_LONGTEXT N_( \
457     "If your processor supports the SSE instructions set, VLC can take " \
458     "advantage of them.")
459
460 #define ALTIVEC_TEXT N_("Enable CPU AltiVec support")
461 #define ALTIVEC_LONGTEXT N_( \
462     "If your processor supports the AltiVec instructions set, VLC can take " \
463     "advantage of them.")
464
465 #define PLAYLIST_CAT_LONGTEXT N_( \
466      "These options define the behavior of the playlist. Some " \
467      "of them can be overriden in the playlist dialog box." )
468
469 #define RANDOM_TEXT N_("Play files randomly forever")
470 #define RANDOM_LONGTEXT N_( \
471     "When selected, VLC will randomly play files in the playlist until " \
472     "interrupted.")
473
474 #define LOOP_TEXT N_("Loop playlist on end")
475 #define LOOP_LONGTEXT N_( \
476     "If you want VLC to keep playing the playlist indefinitely then enable " \
477     "this option.")
478
479 #define REPEAT_TEXT N_("Repeat the current playlistitem")
480 #define REPEAT_LONGTEXT N_( \
481     "When this is active VLC will keep playing the current playlistitem " \
482     "over and over again.")
483
484 #define MISC_CAT_LONGTEXT N_( \
485     "These options allow you to select default modules. Leave these " \
486     "alone unless you really know what you are doing." )
487
488 #define MEMCPY_TEXT N_("Memory copy module")
489 #define MEMCPY_LONGTEXT N_( \
490     "You can select which memory copy module you want to use. By default " \
491     "VLC will select the fastest one supported by your hardware.")
492
493 #define ACCESS_TEXT N_("Access module")
494 #define ACCESS_LONGTEXT N_( \
495     "This is a legacy entry to let you configure access modules")
496
497 #define DEMUX_TEXT N_("Demux module")
498 #define DEMUX_LONGTEXT N_( \
499     "This is a legacy entry to let you configure demux modules")
500
501 #define RT_PRIORITY_TEXT N_("Allow VLC to run with a real-time priority")
502 #define RT_PRIORITY_LONGTEXT N_( \
503     "Running VLC in real-time priority will allow for much more precise " \
504     "scheduling and yield better, especially when streaming content. " \
505     "It can however lock up your whole machine, or make it very very " \
506     "slow. You should only activate this if you know what you're " \
507     "doing.")
508
509 #define MINIMIZE_THREADS_TXT N_("Minimize number of threads needed to run VLC")
510 #define MINIMIZE_THREADS_LONGTXT N_("Minimize number of threads needed to run VLC")
511
512 #define ONEINSTANCE_TEXT N_("Allow only one running instance of VLC")
513 #define ONEINSTANCE_LONGTEXT N_( \
514     "Allowing only one running instance of VLC can sometimes be useful, " \
515     "for instance if you associated VLC with some media types and you " \
516     "don't want a new instance of VLC to be opened each time you " \
517     "double-click on a file in the explorer. This option will allow you " \
518     "to play the file with the already running instance or enqueue it.")
519
520 #define HPRIORITY_TEXT N_("Increase the priority of the process")
521 #define HPRIORITY_LONGTEXT N_( \
522     "Increasing the priority of the process will very likely improve your " \
523     "playing experience as it allows VLC not to be disturbed by other " \
524     "applications that could otherwise take too much processor time.\n" \
525     "However be advise that in certain circumstances (bugs) VLC could take " \
526     "all the processor time and render the whole system unresponsive which " \
527     "might require a reboot of your machine.")
528
529 #define FAST_MUTEX_TEXT N_("Fast mutex on NT/2K/XP (developers only)")
530 #define FAST_MUTEX_LONGTEXT N_( \
531     "On Windows NT/2K/XP we use a slow mutex implementation but which " \
532     "allows us to correctely implement condition variables. " \
533     "You can also use the faster Win9x implementation but you might " \
534     "experience problems with it.")
535
536 #define WIN9X_CV_TEXT N_("Condition variables implementation for Win9x " \
537     "(developers only)")
538 #define WIN9X_CV_LONGTEXT N_( \
539     "On Windows 9x/Me you can use a fast but incorrect condition variables " \
540     "implementation (more precisely there is a possibility for a race " \
541     "condition to happen). " \
542     "However it is possible to use slower alternatives which are more " \
543     "robust. " \
544     "Currently you can choose between implementation 0 (which is the " \
545     "fastest but slightly incorrect), 1 (default) and 2.")
546
547 #define HOTKEY_CAT_LONGTEXT N_( "These settings are the global VLC key " \
548     "bindings, known as \"hotkeys\"." )
549
550 #define FULLSCREEN_KEY_TEXT N_("Fullscreen")
551 #define FULLSCREEN_KEY_LONGTEXT N_("Select the hotkey to use to swap fullscreen state")
552 #define PLAY_PAUSE_KEY_TEXT N_("Play/Pause")
553 #define PLAY_PAUSE_KEY_LONGTEXT N_("Select the hotkey to use to swap paused state")
554 #define PAUSE_KEY_TEXT N_("Pause only")
555 #define PAUSE_KEY_LONGTEXT N_("Select the hotkey to use to pause")
556 #define PLAY_KEY_TEXT N_("Play only")
557 #define PLAY_KEY_LONGTEXT N_("Select the hotkey to use to play")
558 #define FASTER_KEY_TEXT N_("Faster")
559 #define FASTER_KEY_LONGTEXT N_("Select the hotkey to use for fast forward playback")
560 #define SLOWER_KEY_TEXT N_("Slower")
561 #define SLOWER_KEY_LONGTEXT N_("Select the hotkey to use for slow motion playback")
562 #define NEXT_KEY_TEXT N_("Next")
563 #define NEXT_KEY_LONGTEXT N_("Select the hotkey to use to skip to the next item in the playlist")
564 #define PREV_KEY_TEXT N_("Previous")
565 #define PREV_KEY_LONGTEXT N_("Select the hotkey to use to skip to the previous item in the playlist")
566 #define STOP_KEY_TEXT N_("Stop")
567 #define STOP_KEY_LONGTEXT N_("Select the hotkey to stop the playback")
568 #define POSITION_KEY_TEXT N_("Position")
569 #define POSITION_KEY_LONGTEXT N_("Select the hotkey to display the position")
570
571 #define JB10SEC_KEY_TEXT N_("Jump 10 seconds backwards")
572 #define JB10SEC_KEY_LONGTEXT N_("Select the hotkey to jump 10 seconds backwards")
573
574 #define JB1MIN_KEY_TEXT N_("Jump 1 minute backwards")
575 #define JB1MIN_KEY_LONGTEXT N_("Select the hotkey to jump 1 minute backwards")
576 #define JB5MIN_KEY_TEXT N_("Jump 5 minutes backwards")
577 #define JB5MIN_KEY_LONGTEXT N_("Select the hotkey to jump 5 minutes backwards")
578 #define JF10SEC_KEY_TEXT N_("Jump 10 seconds forward")
579 #define JF10SEC_KEY_LONGTEXT N_("Select the hotkey to jump 10 seconds forward")
580
581 #define JF1MIN_KEY_TEXT N_("Jump 1 minute forward")
582 #define JF1MIN_KEY_LONGTEXT N_("Select the hotkey to jump 1 minute forward")
583
584 #define JF5MIN_KEY_TEXT N_("Jump 5 minutes forward")
585 #define JF5MIN_KEY_LONGTEXT N_("Select the hotkey to jump 5 minutes forward")
586
587 #define QUIT_KEY_TEXT N_("Quit")
588 #define QUIT_KEY_LONGTEXT N_("Select the hotkey to quit the application")
589 #define NAV_UP_KEY_TEXT N_("Navigate up")
590 #define NAV_UP_KEY_LONGTEXT N_("Select the key to move the selector up in dvd menus")
591 #define NAV_DOWN_KEY_TEXT N_("Navigate down")
592 #define NAV_DOWN_KEY_LONGTEXT N_("Select the key to move the selector down in dvd menus")
593 #define NAV_LEFT_KEY_TEXT N_("Navigate left")
594 #define NAV_LEFT_KEY_LONGTEXT N_("Select the key to move the selector left in dvd menus")
595 #define NAV_RIGHT_KEY_TEXT N_("Navigate right")
596 #define NAV_RIGHT_KEY_LONGTEXT N_("Select the key to move the selector right in dvd menus")
597 #define NAV_ACTIVATE_KEY_TEXT N_("Activate")
598 #define NAV_ACTIVATE_KEY_LONGTEXT N_("Select the key to activate selected item in dvd menus")
599 #define VOL_UP_KEY_TEXT N_("Volume up")
600 #define VOL_UP_KEY_LONGTEXT N_("Select the key to turn up audio volume")
601 #define VOL_DOWN_KEY_TEXT N_("Volume down")
602 #define VOL_DOWN_KEY_LONGTEXT N_("Select the key to turn down audio volume")
603 #define VOL_MUTE_KEY_TEXT N_("Mute")
604 #define VOL_MUTE_KEY_LONGTEXT N_("Select the key to turn off audio volume")
605 #define PLAY_BOOKMARK1_KEY_TEXT N_("Play playlist bookmark 1")
606 #define PLAY_BOOKMARK2_KEY_TEXT N_("Play playlist bookmark 2")
607 #define PLAY_BOOKMARK3_KEY_TEXT N_("Play playlist bookmark 3")
608 #define PLAY_BOOKMARK4_KEY_TEXT N_("Play playlist bookmark 4")
609 #define PLAY_BOOKMARK5_KEY_TEXT N_("Play playlist bookmark 5")
610 #define PLAY_BOOKMARK6_KEY_TEXT N_("Play playlist bookmark 6")
611 #define PLAY_BOOKMARK7_KEY_TEXT N_("Play playlist bookmark 7")
612 #define PLAY_BOOKMARK8_KEY_TEXT N_("Play playlist bookmark 8")
613 #define PLAY_BOOKMARK9_KEY_TEXT N_("Play playlist bookmark 9")
614 #define PLAY_BOOKMARK10_KEY_TEXT N_("Play playlist bookmark 10")
615 #define PLAY_BOOKMARK_KEY_LONGTEXT N_("Select the key to play this bookmark")
616 #define SET_BOOKMARK1_KEY_TEXT N_("Set playlist bookmark 1")
617 #define SET_BOOKMARK2_KEY_TEXT N_("Set playlist bookmark 2")
618 #define SET_BOOKMARK3_KEY_TEXT N_("Set playlist bookmark 3")
619 #define SET_BOOKMARK4_KEY_TEXT N_("Set playlist bookmark 4")
620 #define SET_BOOKMARK5_KEY_TEXT N_("Set playlist bookmark 5")
621 #define SET_BOOKMARK6_KEY_TEXT N_("Set playlist bookmark 6")
622 #define SET_BOOKMARK7_KEY_TEXT N_("Set playlist bookmark 7")
623 #define SET_BOOKMARK8_KEY_TEXT N_("Set playlist bookmark 8")
624 #define SET_BOOKMARK9_KEY_TEXT N_("Set playlist bookmark 9")
625 #define SET_BOOKMARK10_KEY_TEXT N_("Set playlist bookmark 10")
626 #define SET_BOOKMARK_KEY_LONGTEXT N_("Select the key to set this playlist bookmark")
627
628 #define PLAYLIST_USAGE N_("\nPlaylist items:" \
629     "\n  *.mpg, *.vob                   plain MPEG-1/2 files" \
630     "\n  [dvd:][device][@raw_device][@[title][,[chapter][,angle]]]" \
631     "\n                                 DVD device" \
632     "\n  [vcd:][device][@[title][,[chapter]]" \
633     "\n                                 VCD device" \
634     "\n  udpstream:[@[<bind address>][:<bind port>]]" \
635     "\n                                 UDP stream sent by a streaming server" \
636     "\n  vlc:pause                      pause execution of " \
637     "playlist items" \
638     "\n  vlc:quit                       quit VLC" \
639     "\n")
640
641
642 /*
643  * Quick usage guide for the configuration options:
644  *
645  * add_category_hint( N_(text), N_(longtext), b_advanced_option );
646  * add_subcategory_hint( N_(text), N_(longtext), b_advanced_option );
647  * add_usage_hint( N_(text), b_advanced_option );
648  * add_string( option_name, value, p_callback, N_(text), N_(longtext),
649                b_advanced_option );
650  * add_file( option_name, psz_value, p_callback, N_(text), N_(longtext) );
651  * add_module( option_name, psz_value, i_capability, p_callback,
652  *             N_(text), N_(longtext) );
653  * add_integer( option_name, i_value, p_callback, N_(text), N_(longtext),
654                 b_advanced_option );
655  * add_bool( option_name, b_value, p_callback, N_(text), N_(longtext), 
656              b_advanced_option );
657  */
658
659 vlc_module_begin();
660     /* Interface options */
661     add_category_hint( N_("Interface"), INTF_CAT_LONGTEXT , VLC_FALSE );
662     add_module( "intf", "interface", NULL, NULL, INTF_TEXT,
663                 INTF_LONGTEXT, VLC_TRUE );
664         change_short('I');
665     add_string( "extraintf", NULL, NULL, EXTRAINTF_TEXT,
666                      EXTRAINTF_LONGTEXT, VLC_FALSE );
667     add_integer( "verbose", 0, NULL, VERBOSE_TEXT, VERBOSE_LONGTEXT,
668                  VLC_FALSE );
669         change_short('v');
670     add_bool( "quiet", 0, NULL, QUIET_TEXT, QUIET_LONGTEXT, VLC_TRUE );
671         change_short('q');
672     add_string( "language", "auto", NULL, LANGUAGE_TEXT, LANGUAGE_LONGTEXT,
673                 VLC_FALSE );
674         change_string_list( ppsz_language, ppsz_language_text, 0 );
675     add_bool( "color", 0, NULL, COLOR_TEXT, COLOR_LONGTEXT, VLC_TRUE );
676     add_bool( "advanced", 0, NULL, ADVANCED_TEXT,
677                             ADVANCED_LONGTEXT, VLC_FALSE );
678     add_directory( "search-path", NULL, NULL, INTF_PATH_TEXT,
679                             INTF_PATH_LONGTEXT, VLC_TRUE );
680     add_directory( "plugin-path", NULL, NULL,
681                 PLUGIN_PATH_TEXT, PLUGIN_PATH_LONGTEXT, VLC_TRUE );
682
683     /* Audio options */
684     add_category_hint( N_("Audio"), AOUT_CAT_LONGTEXT , VLC_FALSE );
685     add_module( "aout", "audio output", NULL, NULL, AOUT_TEXT, AOUT_LONGTEXT,
686                 VLC_TRUE );
687         change_short('A');
688     add_bool( "audio", 1, NULL, AUDIO_TEXT, AUDIO_LONGTEXT, VLC_FALSE );
689     add_integer_with_range( "volume", AOUT_VOLUME_DEFAULT, AOUT_VOLUME_MIN,
690                             AOUT_VOLUME_MAX, NULL, VOLUME_TEXT,
691                             VOLUME_LONGTEXT, VLC_FALSE );
692     add_integer_with_range( "saved-volume", AOUT_VOLUME_DEFAULT,
693                             AOUT_VOLUME_MIN, AOUT_VOLUME_MAX, NULL,
694                             VOLUME_SAVE_TEXT, VOLUME_SAVE_LONGTEXT, VLC_TRUE );
695     add_integer( "aout-rate", -1, NULL, AOUT_RATE_TEXT, AOUT_RATE_LONGTEXT, VLC_TRUE );
696 #if !defined( SYS_DARWIN )
697     add_bool( "hq-resampling", 1, NULL, AOUT_RESAMP_TEXT, AOUT_RESAMP_LONGTEXT, VLC_TRUE );
698 #endif
699     add_bool( "spdif", 0, NULL, SPDIF_TEXT, SPDIF_LONGTEXT, VLC_FALSE );
700     add_integer( "audio-desync", 0, NULL, DESYNC_TEXT, DESYNC_LONGTEXT, VLC_TRUE );
701     add_string("audio-filter",0,NULL,AUDIO_FILTER_TEXT,
702                     AUDIO_FILTER_LONGTEXT,VLC_FALSE);
703     add_module( "audio-channel-mixer", "audio filter", NULL, NULL,
704                     AUDIO_CHANNEL_MIXER, AUDIO_CHANNEL_MIXER_LONGTEXT,
705                     VLC_FALSE );
706
707     /* Video options */
708     add_category_hint( N_("Video"), VOUT_CAT_LONGTEXT , VLC_FALSE );
709     add_module( "vout", "video output", NULL, NULL, VOUT_TEXT, VOUT_LONGTEXT,
710                 VLC_TRUE );
711         change_short('V');
712     add_bool( "video", 1, NULL, VIDEO_TEXT, VIDEO_LONGTEXT, VLC_TRUE );
713     add_integer( "width", -1, NULL, WIDTH_TEXT, WIDTH_LONGTEXT, VLC_TRUE );
714     add_integer( "height", -1, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT, VLC_TRUE );
715     add_integer( "align", 0, NULL, ALIGN_TEXT, ALIGN_LONGTEXT, VLC_TRUE );
716         change_integer_list( pi_align_values, ppsz_align_descriptions, 0 );
717     add_float( "zoom", 1, NULL, ZOOM_TEXT, ZOOM_LONGTEXT, VLC_TRUE );
718     add_bool( "grayscale", 0, NULL, GRAYSCALE_TEXT, GRAYSCALE_LONGTEXT, VLC_TRUE );
719     add_bool( "fullscreen", 0, NULL, FULLSCREEN_TEXT,
720                         FULLSCREEN_LONGTEXT, VLC_FALSE );
721 #ifndef SYS_DARWIN
722     add_bool( "overlay", 1, NULL, OVERLAY_TEXT, OVERLAY_LONGTEXT, VLC_TRUE );
723 #endif
724
725     add_bool( "video-on-top", 0, NULL, VIDEO_ON_TOP_TEXT, VIDEO_ON_TOP_LONGTEXT, VLC_FALSE );
726     add_integer( "spumargin", -1, NULL, SPUMARGIN_TEXT,
727                         SPUMARGIN_LONGTEXT, VLC_TRUE );
728     add_bool( "osd", 1, NULL, OSD_TEXT, OSD_LONGTEXT, VLC_FALSE );
729     add_module( "filter", "video filter", NULL, NULL,
730                 FILTER_TEXT, FILTER_LONGTEXT, VLC_FALSE );
731     add_string( "aspect-ratio", "", NULL,
732                 ASPECT_RATIO_TEXT, ASPECT_RATIO_LONGTEXT, VLC_TRUE );
733 #if 0
734     add_string( "pixel-ratio", "1", NULL, PIXEL_RATIO_TEXT, PIXEL_RATIO_TEXT );
735 #endif
736
737     /* Input options */
738     add_category_hint( N_("Input"), INPUT_CAT_LONGTEXT , VLC_FALSE );
739     add_integer( "cr-average", 40, NULL, CR_AVERAGE_TEXT,
740                  CR_AVERAGE_LONGTEXT, VLC_FALSE );
741     add_integer( "server-port", 1234, NULL,
742                  SERVER_PORT_TEXT, SERVER_PORT_LONGTEXT, VLC_FALSE );
743     add_integer( "mtu", 1500, NULL, MTU_TEXT, MTU_LONGTEXT, VLC_TRUE );
744     add_string( "iface-addr", "", NULL, IFACE_ADDR_TEXT, IFACE_ADDR_LONGTEXT, VLC_TRUE );
745
746     add_integer( "program", 0, NULL,
747                  INPUT_PROGRAM_TEXT, INPUT_PROGRAM_LONGTEXT, VLC_TRUE );
748     add_integer( "audio-type", -1, NULL,
749                  INPUT_AUDIO_TEXT, INPUT_AUDIO_LONGTEXT, VLC_TRUE );
750     add_integer( "audio-channel", -1, NULL,
751                  INPUT_CHAN_TEXT, INPUT_CHAN_LONGTEXT, VLC_FALSE );
752     add_integer( "spu-channel", -1, NULL,
753                  INPUT_SUBT_TEXT, INPUT_SUBT_LONGTEXT, VLC_FALSE );
754     add_bool( "sub-autodetect-file", VLC_TRUE, NULL,
755                  SUB_AUTO_TEXT, SUB_AUTO_LONGTEXT, VLC_FALSE );
756     add_integer( "sub-autodetect-fuzzy", 3, NULL,
757                  SUB_FUZZY_TEXT, SUB_FUZZY_LONGTEXT, VLC_TRUE );
758     add_file( "sub-file", NULL, NULL,
759                  SUB_FILE_TEXT, SUB_FILE_LONGTEXT, VLC_TRUE );
760
761
762     add_file( "dvd", DVD_DEVICE, NULL, DVD_DEV_TEXT, DVD_DEV_LONGTEXT, VLC_FALSE );
763     add_file( "vcd", VCD_DEVICE, NULL, VCD_DEV_TEXT, VCD_DEV_LONGTEXT, VLC_FALSE );
764     add_file( "cd-audio", CDAUDIO_DEVICE, NULL, CDAUDIO_DEV_TEXT, CDAUDIO_DEV_LONGTEXT, VLC_FALSE );
765
766     add_bool( "ipv6", 0, NULL, IPV6_TEXT, IPV6_LONGTEXT, VLC_FALSE );
767         change_short('6');
768     add_bool( "ipv4", 0, NULL, IPV4_TEXT, IPV4_LONGTEXT, VLC_FALSE );
769         change_short('4');
770
771     /* Decoder options */
772     add_category_hint( N_("Decoders"), CODEC_CAT_LONGTEXT , VLC_TRUE );
773     add_module( "codec", "decoder", NULL, NULL, CODEC_TEXT, CODEC_LONGTEXT, VLC_TRUE );
774     add_module( "encoder", "encoder", NULL, NULL, ENCODER_TEXT, ENCODER_LONGTEXT, VLC_TRUE );
775
776
777     /* Stream output options */
778     add_category_hint( N_("Stream output"), SOUT_CAT_LONGTEXT , VLC_TRUE );
779     add_string( "sout", NULL, NULL, SOUT_TEXT, SOUT_LONGTEXT, VLC_TRUE );
780     add_bool( "sout-display", VLC_FALSE, NULL, SOUT_DISPLAY_TEXT,
781                                 SOUT_DISPLAY_LONGTEXT, VLC_TRUE );
782     add_bool( "sout-keep", VLC_FALSE, NULL, SOUT_KEEP_TEXT,
783                                 SOUT_KEEP_LONGTEXT, VLC_TRUE );
784     add_bool( "sout-all", 0, NULL, SOUT_ALL_TEXT,
785                                 SOUT_ALL_LONGTEXT, VLC_TRUE );
786     add_bool( "sout-audio", 1, NULL, SOUT_AUDIO_TEXT,
787                                 SOUT_AUDIO_LONGTEXT, VLC_TRUE );
788     add_bool( "sout-video", 1, NULL, SOUT_VIDEO_TEXT,
789                                 SOUT_VIDEO_LONGTEXT, VLC_TRUE );
790
791     add_module( "packetizer", "packetizer", NULL, NULL,
792                 PACKETIZER_TEXT, PACKETIZER_LONGTEXT, VLC_TRUE );
793     add_module( "mux", "sout mux", NULL, NULL, MUX_TEXT,
794                                 MUX_LONGTEXT, VLC_TRUE );
795     add_module( "access_output", "sout access", NULL, NULL,
796                 ACCESS_OUTPUT_TEXT, ACCESS_OUTPUT_LONGTEXT, VLC_TRUE );
797     add_integer( "ttl", 1, NULL, TTL_TEXT, TTL_LONGTEXT, VLC_TRUE );
798
799
800     /* CPU options */
801     add_category_hint( N_("CPU"), CPU_CAT_LONGTEXT, VLC_TRUE );
802 #if defined( __i386__ )
803     add_bool( "mmx", 1, NULL, MMX_TEXT, MMX_LONGTEXT, VLC_TRUE );
804     add_bool( "3dn", 1, NULL, THREE_DN_TEXT, THREE_DN_LONGTEXT, VLC_TRUE );
805     add_bool( "mmxext", 1, NULL, MMXEXT_TEXT, MMXEXT_LONGTEXT, VLC_TRUE );
806     add_bool( "sse", 1, NULL, SSE_TEXT, SSE_LONGTEXT, VLC_TRUE );
807 #endif
808 #if defined( __powerpc__ ) || defined( SYS_DARWIN )
809     add_bool( "altivec", 1, NULL, ALTIVEC_TEXT, ALTIVEC_LONGTEXT, VLC_TRUE );
810 #endif
811
812     /* Playlist options */
813     add_category_hint( N_("Playlist"), PLAYLIST_CAT_LONGTEXT , VLC_FALSE );
814     add_bool( "random", 0, NULL, RANDOM_TEXT, RANDOM_LONGTEXT, VLC_FALSE );
815         change_short('Z');
816     add_bool( "loop", 0, NULL, LOOP_TEXT, LOOP_LONGTEXT, VLC_FALSE );
817         change_short('L');
818     add_bool( "repeat", 0, NULL, REPEAT_TEXT, REPEAT_LONGTEXT, VLC_TRUE );
819         change_short('R');
820
821     /* Misc options */
822     add_category_hint( N_("Miscellaneous"), MISC_CAT_LONGTEXT, VLC_TRUE );
823     add_module( "memcpy", "memcpy", NULL, NULL, MEMCPY_TEXT, MEMCPY_LONGTEXT, VLC_TRUE );
824     add_module( "access", "access", NULL, NULL, ACCESS_TEXT, ACCESS_LONGTEXT, VLC_TRUE );
825     add_module( "demux", "demux", NULL, NULL, DEMUX_TEXT, DEMUX_LONGTEXT, VLC_TRUE );
826
827     add_bool( "minimize-threads", 0, NULL, MINIMIZE_THREADS_TXT, MINIMIZE_THREADS_LONGTXT, VLC_TRUE );
828
829 #if !defined(SYS_DARWIN) && !defined(SYS_BEOS) && defined(PTHREAD_COND_T_IN_PTHREAD_H)
830     add_bool( "rt-priority", 0, NULL, RT_PRIORITY_TEXT, RT_PRIORITY_LONGTEXT, VLC_TRUE );
831 #endif
832
833 #if defined(WIN32)
834     add_bool( "one-instance", 0, NULL, ONEINSTANCE_TEXT, ONEINSTANCE_LONGTEXT, VLC_TRUE );
835     add_bool( "high-priority", 1, NULL, HPRIORITY_TEXT, HPRIORITY_LONGTEXT, VLC_TRUE );
836     add_bool( "fast-mutex", 0, NULL, FAST_MUTEX_TEXT, FAST_MUTEX_LONGTEXT, VLC_TRUE );
837     add_integer( "win9x-cv-method", 1, NULL, WIN9X_CV_TEXT, WIN9X_CV_LONGTEXT, VLC_TRUE );
838 #endif
839
840     /* Hotkey options*/
841     add_category_hint( N_("Hot keys"), HOTKEY_CAT_LONGTEXT , VLC_FALSE );
842 #if defined(SYS_DARWIN)
843     add_key( "key-fullscreen", KEY_MODIFIER_COMMAND|'f', NULL, FULLSCREEN_KEY_TEXT, FULLSCREEN_KEY_LONGTEXT, VLC_FALSE );
844     add_key( "key-play-pause", KEY_MODIFIER_COMMAND|'p', NULL, PLAY_PAUSE_KEY_TEXT, PLAY_PAUSE_KEY_LONGTEXT, VLC_FALSE );
845     add_key( "key-pause", 0, NULL, PAUSE_KEY_TEXT, PAUSE_KEY_LONGTEXT, VLC_TRUE );
846     add_key( "key-play", 0, NULL, PLAY_KEY_TEXT, PLAY_KEY_LONGTEXT, VLC_TRUE );
847     add_key( "key-faster", KEY_MODIFIER_COMMAND|'=', NULL, FASTER_KEY_TEXT, FASTER_KEY_LONGTEXT, VLC_FALSE );
848     add_key( "key-slower", KEY_MODIFIER_COMMAND|'-', NULL, SLOWER_KEY_TEXT, SLOWER_KEY_LONGTEXT, VLC_FALSE );
849     add_key( "key-next", KEY_MODIFIER_COMMAND|KEY_RIGHT, NULL, NEXT_KEY_TEXT, NEXT_KEY_LONGTEXT, VLC_FALSE );
850     add_key( "key-prev", KEY_MODIFIER_COMMAND|KEY_LEFT, NULL, PREV_KEY_TEXT, PREV_KEY_LONGTEXT, VLC_FALSE );
851     add_key( "key-stop", KEY_MODIFIER_COMMAND|'.', NULL, STOP_KEY_TEXT, STOP_KEY_LONGTEXT, VLC_FALSE );
852     add_key( "key-position", 't', NULL, POSITION_KEY_TEXT, POSITION_KEY_LONGTEXT, VLC_FALSE );
853     add_key( "key-jump-10sec", KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|KEY_LEFT, NULL, JB10SEC_KEY_TEXT, JB10SEC_KEY_LONGTEXT, VLC_FALSE );
854     add_key( "key-jump+10sec", KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|KEY_RIGHT, NULL, JF10SEC_KEY_TEXT, JF10SEC_KEY_LONGTEXT, VLC_FALSE );
855     add_key( "key-jump-1min", KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_LEFT, NULL, JB1MIN_KEY_TEXT, JB1MIN_KEY_LONGTEXT, VLC_FALSE );
856     add_key( "key-jump+1min", KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_RIGHT, NULL, JF1MIN_KEY_TEXT, JF1MIN_KEY_LONGTEXT, VLC_FALSE );
857     add_key( "key-jump-5min", KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_MODIFIER_ALT|KEY_LEFT, NULL, JB5MIN_KEY_TEXT, JB5MIN_KEY_LONGTEXT, VLC_FALSE );
858     add_key( "key-jump+5min", KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_MODIFIER_ALT|KEY_RIGHT, NULL, JF5MIN_KEY_TEXT, JF5MIN_KEY_LONGTEXT, VLC_FALSE );
859     add_key( "key-nav-activate", KEY_ENTER, NULL, NAV_ACTIVATE_KEY_TEXT, NAV_ACTIVATE_KEY_LONGTEXT, VLC_FALSE );
860     add_key( "key-nav-up", KEY_UP, NULL, NAV_UP_KEY_TEXT, NAV_UP_KEY_LONGTEXT, VLC_FALSE );
861     add_key( "key-nav-down", KEY_DOWN, NULL, NAV_DOWN_KEY_TEXT, NAV_DOWN_KEY_LONGTEXT, VLC_FALSE );
862     add_key( "key-nav-left", KEY_LEFT, NULL, NAV_LEFT_KEY_TEXT, NAV_LEFT_KEY_LONGTEXT, VLC_FALSE );
863     add_key( "key-nav-right", KEY_RIGHT, NULL, NAV_RIGHT_KEY_TEXT, NAV_RIGHT_KEY_LONGTEXT, VLC_FALSE );
864     add_key( "key-quit", KEY_MODIFIER_COMMAND|'q', NULL, QUIT_KEY_TEXT, QUIT_KEY_LONGTEXT, VLC_FALSE );
865     add_key( "key-vol-up", KEY_MODIFIER_COMMAND|KEY_UP, NULL, VOL_UP_KEY_TEXT, VOL_UP_KEY_LONGTEXT, VLC_FALSE );
866     add_key( "key-vol-down", KEY_MODIFIER_COMMAND|KEY_DOWN, NULL, VOL_DOWN_KEY_TEXT, VOL_DOWN_KEY_LONGTEXT, VLC_FALSE );
867     add_key( "key-vol-mute", KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'m', NULL, VOL_MUTE_KEY_TEXT, VOL_MUTE_KEY_LONGTEXT, VLC_FALSE );
868     add_key( "key-set-bookmark1", KEY_MODIFIER_COMMAND|KEY_F1, NULL, SET_BOOKMARK1_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
869     add_key( "key-set-bookmark2", KEY_MODIFIER_COMMAND|KEY_F2, NULL, SET_BOOKMARK2_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
870     add_key( "key-set-bookmark3", KEY_MODIFIER_COMMAND|KEY_F3, NULL, SET_BOOKMARK3_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
871     add_key( "key-set-bookmark4", KEY_MODIFIER_COMMAND|KEY_F4, NULL, SET_BOOKMARK4_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
872     add_key( "key-set-bookmark5", KEY_MODIFIER_COMMAND|KEY_F5, NULL, SET_BOOKMARK5_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
873     add_key( "key-set-bookmark6", KEY_MODIFIER_COMMAND|KEY_F6, NULL, SET_BOOKMARK6_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
874     add_key( "key-set-bookmark7", KEY_MODIFIER_COMMAND|KEY_F7, NULL, SET_BOOKMARK7_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
875     add_key( "key-set-bookmark8", KEY_MODIFIER_COMMAND|KEY_F8, NULL, SET_BOOKMARK8_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
876     add_key( "key-set-bookmark9", KEY_UNSET, NULL, SET_BOOKMARK9_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
877     add_key( "key-set-bookmark10", KEY_UNSET, NULL, SET_BOOKMARK10_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
878     add_key( "key-play-bookmark1", KEY_F1, NULL, PLAY_BOOKMARK1_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
879     add_key( "key-play-bookmark2", KEY_F2, NULL, PLAY_BOOKMARK2_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
880     add_key( "key-play-bookmark3", KEY_F3, NULL, PLAY_BOOKMARK3_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
881     add_key( "key-play-bookmark4", KEY_F4, NULL, PLAY_BOOKMARK4_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
882     add_key( "key-play-bookmark5", KEY_F5, NULL, PLAY_BOOKMARK5_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
883     add_key( "key-play-bookmark6", KEY_F6, NULL, PLAY_BOOKMARK6_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
884     add_key( "key-play-bookmark7", KEY_F7, NULL, PLAY_BOOKMARK7_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
885     add_key( "key-play-bookmark8", KEY_F8, NULL, PLAY_BOOKMARK8_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
886     add_key( "key-play-bookmark9", KEY_UNSET, NULL, PLAY_BOOKMARK9_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
887     add_key( "key-play-bookmark10", KEY_UNSET, NULL, PLAY_BOOKMARK10_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
888 #else
889     add_key( "key-fullscreen", 'f', NULL, FULLSCREEN_KEY_TEXT, FULLSCREEN_KEY_LONGTEXT, VLC_FALSE );
890     add_key( "key-play-pause", KEY_SPACE, NULL, PLAY_PAUSE_KEY_TEXT, PLAY_PAUSE_KEY_LONGTEXT, VLC_FALSE );
891     add_key( "key-pause", 0, NULL, PAUSE_KEY_TEXT, PAUSE_KEY_LONGTEXT, VLC_TRUE );
892     add_key( "key-play", 0, NULL, PLAY_KEY_TEXT, PLAY_KEY_LONGTEXT, VLC_TRUE );
893     add_key( "key-faster", '+', NULL, FASTER_KEY_TEXT, FASTER_KEY_LONGTEXT, VLC_FALSE );
894     add_key( "key-slower", '-', NULL, SLOWER_KEY_TEXT, SLOWER_KEY_LONGTEXT, VLC_FALSE );
895     add_key( "key-next", 'n', NULL, NEXT_KEY_TEXT, NEXT_KEY_LONGTEXT, VLC_FALSE );
896     add_key( "key-prev", 'p', NULL, PREV_KEY_TEXT, PREV_KEY_LONGTEXT, VLC_FALSE );
897     add_key( "key-stop", 's', NULL, STOP_KEY_TEXT, STOP_KEY_LONGTEXT, VLC_FALSE );
898     add_key( "key-position", 't', NULL, POSITION_KEY_TEXT, POSITION_KEY_LONGTEXT, VLC_FALSE );
899     add_key( "key-jump-10sec", KEY_MODIFIER_ALT|KEY_LEFT, NULL, JB10SEC_KEY_TEXT, JB10SEC_KEY_LONGTEXT, VLC_FALSE );
900     add_key( "key-jump+10sec", KEY_MODIFIER_ALT|KEY_RIGHT, NULL, JF10SEC_KEY_TEXT, JF10SEC_KEY_LONGTEXT, VLC_FALSE );
901     add_key( "key-jump-1min", KEY_MODIFIER_CTRL|KEY_LEFT, NULL, JB1MIN_KEY_TEXT, JB1MIN_KEY_LONGTEXT, VLC_FALSE );
902     add_key( "key-jump+1min", KEY_MODIFIER_CTRL|KEY_RIGHT, NULL, JF1MIN_KEY_TEXT, JF1MIN_KEY_LONGTEXT, VLC_FALSE );
903     add_key( "key-jump-5min", KEY_MODIFIER_CTRL|KEY_MODIFIER_ALT|KEY_LEFT, NULL, JB5MIN_KEY_TEXT, JB5MIN_KEY_LONGTEXT, VLC_FALSE );
904     add_key( "key-jump+5min", KEY_MODIFIER_CTRL|KEY_MODIFIER_ALT|KEY_RIGHT, NULL, JF5MIN_KEY_TEXT, JF5MIN_KEY_LONGTEXT, VLC_FALSE );
905     add_key( "key-nav-activate", KEY_ENTER, NULL, NAV_ACTIVATE_KEY_TEXT, NAV_ACTIVATE_KEY_LONGTEXT, VLC_FALSE );
906     add_key( "key-nav-up", KEY_UP, NULL, NAV_UP_KEY_TEXT, NAV_UP_KEY_LONGTEXT, VLC_FALSE );
907     add_key( "key-nav-down", KEY_DOWN, NULL, NAV_DOWN_KEY_TEXT, NAV_DOWN_KEY_LONGTEXT, VLC_FALSE );
908     add_key( "key-nav-left", KEY_LEFT, NULL, NAV_LEFT_KEY_TEXT, NAV_LEFT_KEY_LONGTEXT, VLC_FALSE );
909     add_key( "key-nav-right", KEY_RIGHT, NULL, NAV_RIGHT_KEY_TEXT, NAV_RIGHT_KEY_LONGTEXT, VLC_FALSE );
910     add_key( "key-quit", KEY_MODIFIER_CTRL|'q', NULL, QUIT_KEY_TEXT, QUIT_KEY_LONGTEXT, VLC_FALSE );
911     add_key( "key-vol-up", 'a', NULL, VOL_UP_KEY_TEXT, VOL_UP_KEY_LONGTEXT, VLC_FALSE );
912     add_key( "key-vol-down", 'z', NULL, VOL_DOWN_KEY_TEXT, VOL_DOWN_KEY_LONGTEXT, VLC_FALSE );
913     add_key( "key-vol-mute", 'm', NULL, VOL_MUTE_KEY_TEXT, VOL_MUTE_KEY_LONGTEXT, VLC_FALSE );
914     add_key( "key-set-bookmark1", KEY_MODIFIER_CTRL|KEY_F1, NULL, SET_BOOKMARK1_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
915     add_key( "key-set-bookmark2", KEY_MODIFIER_CTRL|KEY_F2, NULL, SET_BOOKMARK2_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
916     add_key( "key-set-bookmark3", KEY_MODIFIER_CTRL|KEY_F3, NULL, SET_BOOKMARK3_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
917     add_key( "key-set-bookmark4", KEY_MODIFIER_CTRL|KEY_F4, NULL, SET_BOOKMARK4_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
918     add_key( "key-set-bookmark5", KEY_MODIFIER_CTRL|KEY_F5, NULL, SET_BOOKMARK5_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
919     add_key( "key-set-bookmark6", KEY_MODIFIER_CTRL|KEY_F6, NULL, SET_BOOKMARK6_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
920     add_key( "key-set-bookmark7", KEY_MODIFIER_CTRL|KEY_F7, NULL, SET_BOOKMARK7_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
921     add_key( "key-set-bookmark8", KEY_MODIFIER_CTRL|KEY_F8, NULL, SET_BOOKMARK8_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
922     add_key( "key-set-bookmark9", KEY_MODIFIER_CTRL|KEY_F9, NULL, SET_BOOKMARK9_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
923     add_key( "key-set-bookmark10", KEY_MODIFIER_CTRL|KEY_F10, NULL, SET_BOOKMARK10_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
924     add_key( "key-play-bookmark1", KEY_F1, NULL, PLAY_BOOKMARK1_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
925     add_key( "key-play-bookmark2", KEY_F2, NULL, PLAY_BOOKMARK2_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
926     add_key( "key-play-bookmark3", KEY_F3, NULL, PLAY_BOOKMARK3_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
927     add_key( "key-play-bookmark4", KEY_F4, NULL, PLAY_BOOKMARK4_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
928     add_key( "key-play-bookmark5", KEY_F5, NULL, PLAY_BOOKMARK5_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
929     add_key( "key-play-bookmark6", KEY_F6, NULL, PLAY_BOOKMARK6_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
930     add_key( "key-play-bookmark7", KEY_F7, NULL, PLAY_BOOKMARK7_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
931     add_key( "key-play-bookmark8", KEY_F8, NULL, PLAY_BOOKMARK8_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
932     add_key( "key-play-bookmark9", KEY_F9, NULL, PLAY_BOOKMARK9_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
933     add_key( "key-play-bookmark10", KEY_F10, NULL, PLAY_BOOKMARK10_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
934 #endif
935
936     /* Usage (mainly useful for cmd line stuff) */
937     add_usage_hint( PLAYLIST_USAGE );
938
939     set_description( N_("main program") );
940     set_capability( "main", 100 );
941 vlc_module_end();
942
943 static module_config_t p_help_config[] =
944 {
945     { CONFIG_ITEM_BOOL, NULL, "help", 'h',
946       N_("print help (can be combined with --advanced)") },
947     { CONFIG_ITEM_BOOL, NULL, "longhelp", 'H',
948       N_("print detailed help (can be combined with --advanced)") },
949     { CONFIG_ITEM_BOOL, NULL, "list", 'l',
950       N_("print a list of available modules") },
951     { CONFIG_ITEM_STRING, NULL, "module", 'p',
952       N_("print help on module (can be combined with --advanced)") },
953     { CONFIG_ITEM_BOOL, NULL, "save-config", '\0',
954       N_("save the current command line options in the config") },
955     { CONFIG_ITEM_BOOL, NULL, "reset-config", '\0',
956       N_("reset the current config to the default values") },
957     { CONFIG_ITEM_STRING, NULL, "config", '\0',
958       N_("use alternate config file") },
959     { CONFIG_ITEM_BOOL, NULL, "version", '\0',
960       N_("print version information") },
961     { CONFIG_HINT_END, NULL, NULL, '\0', NULL }
962 };
963
964 /*****************************************************************************
965  * End configuration.
966  *****************************************************************************/
967
968 /*****************************************************************************
969  * Initializer for the vlc_t structure storing the action / key associations
970  *****************************************************************************/
971 static struct hotkey p_hotkeys[] =
972 {
973     { "key-quit", ACTIONID_QUIT, 0 },
974     { "key-play-pause", ACTIONID_PLAY_PAUSE, 0 },
975     { "key-play", ACTIONID_PLAY, 0 },
976     { "key-pause", ACTIONID_PAUSE, 0 },
977     { "key-stop", ACTIONID_STOP, 0 },
978     { "key-position", ACTIONID_POSITION, 0 },
979     { "key-jump-10sec", ACTIONID_JUMP_BACKWARD_10SEC, 0 },
980     { "key-jump+10sec", ACTIONID_JUMP_FORWARD_10SEC, 0 },
981     { "key-jump-1min", ACTIONID_JUMP_BACKWARD_1MIN, 0 },
982     { "key-jump+1min", ACTIONID_JUMP_FORWARD_1MIN, 0 },
983     { "key-jump-5min", ACTIONID_JUMP_BACKWARD_5MIN, 0 },
984     { "key-jump+5min", ACTIONID_JUMP_FORWARD_5MIN, 0 },
985     { "key-prev", ACTIONID_PREV, 0 },
986     { "key-next", ACTIONID_NEXT, 0 },
987     { "key-faster", ACTIONID_FASTER, 0 },
988     { "key-slower", ACTIONID_SLOWER, 0 },
989     { "key-fullscreen", ACTIONID_FULLSCREEN, 0 },
990     { "key-vol-up", ACTIONID_VOL_UP, 0 },
991     { "key-vol-down", ACTIONID_VOL_DOWN, 0 },
992     { "key-vol-mute", ACTIONID_VOL_MUTE, 0 },
993     { "key-nav-activate", ACTIONID_NAV_ACTIVATE, 0 },
994     { "key-nav-up", ACTIONID_NAV_UP, 0 },
995     { "key-nav-down", ACTIONID_NAV_DOWN, 0 },
996     { "key-nav-left", ACTIONID_NAV_LEFT, 0 },
997     { "key-nav-right", ACTIONID_NAV_RIGHT, 0 },
998     { "key-set-bookmark1", ACTIONID_SET_BOOKMARK1, 0},
999     { "key-set-bookmark2", ACTIONID_SET_BOOKMARK2, 0},
1000     { "key-set-bookmark3", ACTIONID_SET_BOOKMARK3, 0},
1001     { "key-set-bookmark4", ACTIONID_SET_BOOKMARK4, 0},
1002     { "key-set-bookmark5", ACTIONID_SET_BOOKMARK5, 0},
1003     { "key-set-bookmark6", ACTIONID_SET_BOOKMARK6, 0},
1004     { "key-set-bookmark7", ACTIONID_SET_BOOKMARK7, 0},
1005     { "key-set-bookmark8", ACTIONID_SET_BOOKMARK8, 0},
1006     { "key-set-bookmark9", ACTIONID_SET_BOOKMARK9, 0},
1007     { "key-set-bookmark10", ACTIONID_SET_BOOKMARK10, 0},
1008     { "key-play-bookmark1", ACTIONID_PLAY_BOOKMARK1, 0},
1009     { "key-play-bookmark2", ACTIONID_PLAY_BOOKMARK2, 0},
1010     { "key-play-bookmark3", ACTIONID_PLAY_BOOKMARK3, 0},
1011     { "key-play-bookmark4", ACTIONID_PLAY_BOOKMARK4, 0},
1012     { "key-play-bookmark5", ACTIONID_PLAY_BOOKMARK5, 0},
1013     { "key-play-bookmark6", ACTIONID_PLAY_BOOKMARK6, 0},
1014     { "key-play-bookmark7", ACTIONID_PLAY_BOOKMARK7, 0},
1015     { "key-play-bookmark8", ACTIONID_PLAY_BOOKMARK8, 0},
1016     { "key-play-bookmark9", ACTIONID_PLAY_BOOKMARK9, 0},
1017     { "key-play-bookmark10", ACTIONID_PLAY_BOOKMARK10, 0},
1018     { NULL, 0, 0 }
1019 };