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