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