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