]> git.sesse.net Git - vlc/blob - src/libvlc.h
* src/libvlc.h: Added a "snapshot-format" option to be able to select png or jpg...
[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@videolan.org>
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 static char *ppsz_snap_formats[] =
40 { "png", "jpg" };
41
42 /*****************************************************************************
43  * Configuration options for the main program. Each module will also separatly
44  * define its own configuration options.
45  * Look into configuration.h if you need to know more about the following
46  * macros.
47  *****************************************************************************/
48
49 #define INTF_CAT_LONGTEXT N_( \
50     "These options allow you to configure the interfaces used by VLC.\n" \
51     "You can select the main interface, additional " \
52     "interface modules, and define various related options." )
53
54 #define INTF_TEXT N_("Interface module")
55 #define INTF_LONGTEXT N_( \
56     "This option allows you to select the interface used by VLC.\n" \
57     "The default behavior is to automatically select the best module " \
58     "available.")
59
60 #define EXTRAINTF_TEXT N_("Extra interface modules")
61 #define EXTRAINTF_LONGTEXT N_( \
62     "This option allows you to select additional interfaces used by VLC. " \
63     "They will be launched in the background in addition to the default " \
64     "interface. Use a comma separated list of interface modules. (common " \
65     "values are logger, gestures, sap, rc, http or screensaver)")
66
67 #define CONTROL_TEXT N_("Control interfaces")
68 #define CONTROL_LONGTEXT N_( \
69     "This option allows you to select control interfaces. " )
70
71 #define VERBOSE_TEXT N_("Verbosity (0,1,2)")
72 #define VERBOSE_LONGTEXT N_( \
73     "This options sets the verbosity level (0=only errors and " \
74     "standard messages, 1=warnings, 2=debug).")
75
76 #define QUIET_TEXT N_("Be quiet")
77 #define QUIET_LONGTEXT N_( \
78     "This options turns off all warning and information messages.")
79
80 #define LANGUAGE_TEXT N_("Language")
81 #define LANGUAGE_LONGTEXT N_( "This option allows you to set the language " \
82     "of the interface. The system language is auto-detected if \"auto\" is " \
83     "specified here." )
84
85 #define COLOR_TEXT N_("Color messages")
86 #define COLOR_LONGTEXT N_( \
87     "When this option is turned on, the messages sent to the console will " \
88     "be colorized. Your terminal needs Linux color support for this to work.")
89
90 #define ADVANCED_TEXT N_("Show advanced options")
91 #define ADVANCED_LONGTEXT N_( \
92     "When this option is turned on, the preferences and/or interfaces  will " \
93     "show all the available options, including those that most users should " \
94     "never touch.")
95
96 #define AOUT_CAT_LONGTEXT N_( \
97     "These options allow you to modify the behavior of the audio " \
98     "subsystem, and to add audio filters which can be used for " \
99     "post processing or visual effects (spectrum analyzer, etc.).\n" \
100     "Enable these filters here, and configure them in the \"audio filters\" " \
101     "modules section.")
102
103 #define AOUT_TEXT N_("Audio output module")
104 #define AOUT_LONGTEXT N_( \
105     "This option allows you to select the audio output method used by VLC. " \
106     "The default behavior is to automatically select the best method " \
107     "available.")
108
109 #define AUDIO_TEXT N_("Enable audio")
110 #define AUDIO_LONGTEXT N_( \
111     "You can completely disable the audio output. In this case, the audio " \
112     "decoding stage will not take place, thus saving some processing power.")
113
114 #define MONO_TEXT N_("Force mono audio")
115 #define MONO_LONGTEXT N_("This will force a mono audio output.")
116
117 #define VOLUME_TEXT N_("Audio output volume")
118 #define VOLUME_LONGTEXT N_( \
119     "You can set the default audio output volume here, in a range from 0 to " \
120     "1024.")
121
122 #define VOLUME_SAVE_TEXT N_("Audio output saved volume")
123 #define VOLUME_SAVE_LONGTEXT N_( \
124     "This saves the audio output volume when you select mute.")
125
126 #define AOUT_RATE_TEXT N_("Audio output frequency (Hz)")
127 #define AOUT_RATE_LONGTEXT N_( \
128     "You can force the audio output frequency here. Common values are " \
129     "-1 (default), 48000, 44100, 32000, 22050, 16000, 11025, 8000.")
130
131 #if !defined( SYS_DARWIN )
132 #define AOUT_RESAMP_TEXT N_("High quality audio resampling")
133 #define AOUT_RESAMP_LONGTEXT N_( \
134     "This uses a high quality audio resampling algorithm. High quality "\
135     "audio resampling can be processor intensive so you can " \
136     "disable it and a cheaper resampling algorithm will be used instead.")
137 #endif
138
139 #define DESYNC_TEXT N_("Audio desynchronization compensation")
140 #define DESYNC_LONGTEXT N_( \
141     "This option allows you to delay the audio output. You must give a " \
142     "number of milliseconds. This can be handy if you notice a lag " \
143     "between the video and the audio.")
144
145 #define MULTICHA_TEXT N_("Preferred audio output channels mode")
146 #define MULTICHA_LONGTEXT N_( \
147     "This option allows you to set the audio output channels mode that will " \
148     "be used by default when possible (ie. if your hardware supports it as " \
149     "well as the audio stream being played).")
150
151 #define SPDIF_TEXT N_("Use the S/PDIF audio output when available")
152 #define SPDIF_LONGTEXT N_( \
153     "This option allows you to use the S/PDIF audio output by default when " \
154     "your hardware supports it as well as the audio stream being played.")
155
156 #define AUDIO_FILTER_TEXT N_("Audio filters")
157 #define AUDIO_FILTER_LONGTEXT N_( \
158     "This allows you to add audio post processing filters, to modify " \
159     "the sound" )
160
161 #define AUDIO_VISUAL_TEXT N_("Audio visualizations ")
162 #define AUDIO_VISUAL_LONGTEXT N_( \
163     "This allows you to add visualization modules " \
164     "(spectrum analyzer, etc.).")
165
166 #define AUDIO_CHANNEL_MIXER N_("Channel mixer")
167 #define AUDIO_CHANNEL_MIXER_LONGTEXT N_( \
168      "This allows you to choose a specific audio channel mixer. For " \
169      "instance, you can use the \"headphone\" mixer that gives 5.1 feeling " \
170      "with a headphone.")
171
172 #define VOUT_CAT_LONGTEXT N_( \
173     "These options allow you to modify the behavior of the video output " \
174     "subsystem. You can for example enable video filters (deinterlacing, " \
175     "image adjusting, etc.). Enable these filters here and configure " \
176     "them in the \"video filters\" modules section. You can also set many " \
177     "miscellaneous video options." )
178
179 #define VOUT_TEXT N_("Video output module")
180 #define VOUT_LONGTEXT N_( \
181     "This option allows you to select the video output method used by VLC. " \
182     "The default behavior is to automatically select the best " \
183     "method available.")
184
185 #define VIDEO_TEXT N_("Enable video")
186 #define VIDEO_LONGTEXT N_( \
187     "You can completely disable the video output. In this case, the video " \
188     "decoding stage will not take place, thus saving some processing power.")
189
190 #define WIDTH_TEXT N_("Video width")
191 #define WIDTH_LONGTEXT N_( \
192     "You can enforce the video width here. By default (-1) VLC will " \
193     "adapt to the video characteristics.")
194
195 #define HEIGHT_TEXT N_("Video height")
196 #define HEIGHT_LONGTEXT N_( \
197     "You can enforce the video height here. By default (-1) VLC will " \
198     "adapt to the video characteristics.")
199
200 #define VIDEOX_TEXT N_("Video x coordinate")
201 #define VIDEOX_LONGTEXT N_( \
202     "You can enforce the position of the top left corner of the video window "\
203     "here (x coordinate).")
204
205 #define VIDEOY_TEXT N_("Video y coordinate")
206 #define VIDEOY_LONGTEXT N_( \
207     "You can enforce the position of the top left corner of the video window "\
208     "here (y coordinate).")
209
210 #define VIDEO_TITLE_TEXT N_("Video title")
211 #define VIDEO_TITLE_LONGTEXT N_( \
212     "You can specify a custom video window title here.")
213
214 #define ALIGN_TEXT N_("Video alignment")
215 #define ALIGN_LONGTEXT N_( \
216     "You can enforce the video alignment in its window. By default (0) it " \
217     "will be centered (0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \
218     "also use combinations of these values).")
219 static int pi_align_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };
220 static char *ppsz_align_descriptions[] =
221 { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),
222   N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };
223
224 #define ZOOM_TEXT N_("Zoom video")
225 #define ZOOM_LONGTEXT N_( \
226     "You can zoom the video by the specified factor.")
227
228 #define GRAYSCALE_TEXT N_("Grayscale video output")
229 #define GRAYSCALE_LONGTEXT N_( \
230     "When enabled, the color information from the video won't be decoded " \
231     "(this can also allow you to save some processing power).")
232
233 #define FULLSCREEN_TEXT N_("Fullscreen video output")
234 #define FULLSCREEN_LONGTEXT N_( \
235     "If this option is enabled, VLC will always start a video in fullscreen " \
236     "mode.")
237
238 #define OVERLAY_TEXT N_("Overlay video output")
239 #define OVERLAY_LONGTEXT N_( \
240     "If enabled, VLC will try to take advantage of the overlay capabilities " \
241     "of your graphics card (hardware acceleration).")
242
243 #define VIDEO_ON_TOP_TEXT N_("Always on top")
244 #define VIDEO_ON_TOP_LONGTEXT N_("Always place the video window on top of " \
245     "other windows." )
246
247 #define VIDEO_DECO_TEXT N_("Window decorations")
248 #define VIDEO_DECO_LONGTEXT N_( \
249     "If this option is disabled, VLC will avoid creating window caption, " \
250     "frames, etc... around the video. Currently only supported on Windows.")
251
252 #define FILTER_TEXT N_("Video filter module")
253 #define FILTER_LONGTEXT N_( \
254     "This will allow you to add a post-processing filter to enhance the " \
255     "picture quality, for instance deinterlacing, or to clone or distort " \
256     "the video window.")
257
258 #define SNAP_PATH_TEXT N_("Video snapshot directory")
259 #define SNAP_PATH_LONGTEXT N_( \
260     "Allows you to specify the directory where the video snapshots will " \
261     "be stored.")
262
263 #define SNAP_FORMAT_TEXT N_("Video snapshot format")
264 #define SNAP_FORMAT_LONGTEXT N_( \
265     "Allows you to specify the image format in which the video snapshots will " \
266     "be stored.")
267
268 #define ASPECT_RATIO_TEXT N_("Source aspect ratio")
269 #define ASPECT_RATIO_LONGTEXT N_( \
270     "This will force the source aspect ratio. For instance, some DVDs claim " \
271     "to be 16:9 while they are actually 4:3. This can also be used as a " \
272     "hint for VLC when a movie does not have aspect ratio information. " \
273     "Accepted formats are x:y (4:3, 16:9, etc.) expressing the global image " \
274     "aspect, or a float value (1.25, 1.3333, etc.) expressing pixel " \
275     "squareness.")
276
277 #define SKIP_FRAMES_TEXT N_("Skip frames")
278 #define SKIP_FRAMES_LONGTEXT N_( \
279     "Disable this option to disable frame drops on MPEG-2 streams.")
280
281 #define INPUT_CAT_LONGTEXT N_( \
282     "These options allow you to modify the behavior of the input " \
283     "subsystem, such as the DVD or VCD device, the network interface " \
284     "settings or the subtitle channel.")
285
286 #define CR_AVERAGE_TEXT N_("Clock reference average counter")
287 #define CR_AVERAGE_LONGTEXT N_( \
288     "When using the PVR input (or a very irregular source), you should " \
289     "set this to 10000.")
290
291 #define SERVER_PORT_TEXT N_("Server port")
292 #define SERVER_PORT_LONGTEXT N_( \
293     "This is the port used for UDP streams. By default, we chose 1234.")
294
295 #define MTU_TEXT N_("MTU of the network interface")
296 #define MTU_LONGTEXT N_( \
297     "This is the typical size of UDP packets that we expect. On Ethernet " \
298     "it is usually 1500.")
299
300 #define IFACE_ADDR_TEXT N_("Network interface address")
301 #define IFACE_ADDR_LONGTEXT N_( \
302     "If you have several interfaces on your machine and use the " \
303     "multicast solution, you will probably have to indicate the IP address " \
304     "of your multicasting interface here.")
305
306 #define TTL_TEXT N_("Time to live")
307 #define TTL_LONGTEXT N_( \
308     "Indicate here the Time To Live of the multicast packets sent by " \
309     "the stream output.")
310
311 #define INPUT_PROGRAM_TEXT N_("Choose program (SID)")
312 #define INPUT_PROGRAM_LONGTEXT N_( \
313     "Choose the program to select by giving its Service ID.")
314
315 #define INPUT_PROGRAMS_TEXT N_("Choose programs")
316 #define INPUT_PROGRAMS_LONGTEXT N_( \
317     "Choose the programs to select by giving a comma-separated list of " \
318     "SIDs.")
319
320 #define INPUT_CHAN_TEXT N_("Choose audio channel")
321 #define INPUT_CHAN_LONGTEXT N_( \
322     "Give the stream number of the audio channel you want to use in a DVD " \
323     "(from 0 to n).")
324
325 #define INPUT_SUB_TEXT N_("Choose subtitle track")
326 #define INPUT_SUB_LONGTEXT N_( \
327     "Give the stream number of the subtitle channel you want to use " \
328     "(from 0 to n).")
329
330 #define INPUT_REPEAT_TEXT N_("Input repetitions")
331 #define INPUT_REPEAT_LONGTEXT N_("Number of time the same input will be repeated")
332
333 #define START_TIME_TEXT N_("Input start time (seconds)")
334 #define START_TIME_LONGTEXT N_("Input start time (seconds)")
335
336 #define STOP_TIME_TEXT N_("Input stop time (seconds)")
337 #define STOP_TIME_LONGTEXT N_("Input stop time (seconds)")
338
339 #define INPUT_SLAVE_TEXT N_("Input slave (experimental)")
340 #define INPUT_SLAVE_LONGTEXT N_("Input slave (experimental)")
341
342 #define BOOKMARKS_TEXT N_("Bookmarks list for a stream")
343 #define BOOKMARKS_LONGTEXT N_("You can specify a list of bookmarks for a stream in " \
344     "the form \"{name=bookmark-name,time=optional-time-offset," \
345     "bytes=optional-byte-offset},{...}\"")
346
347 #define SUB_CAT_LONGTEXT N_( \
348     "These options allow you to modify the behavior of the subpictures " \
349     "subsystem. You can for example enable subpictures filters (logo, etc.). " \
350     "Enable these filters here and configure them in the " \
351     "\"subpictures filters\" modules section. You can also set many " \
352     "miscellaneous subpictures options." )
353
354 #define SPUMARGIN_TEXT N_("Force SPU position")
355 #define SPUMARGIN_LONGTEXT N_( \
356     "You can use this option to place the subtitles under the movie, " \
357     "instead of over the movie. Try several positions.")
358
359 #define OSD_TEXT N_("On Screen Display")
360 #define OSD_LONGTEXT N_( \
361     "VLC can display messages on the video. This is called OSD (On Screen " \
362     "Display). You can disable this feature here.")
363
364 #define SUB_FILTER_TEXT N_("Subpictures filter module")
365 #define SUB_FILTER_LONGTEXT N_( \
366     "This will allow you to add a subpictures filter for instance to overlay "\
367     "a logo.")
368
369 #define SUB_AUTO_TEXT N_("Autodetect subtitle files")
370 #define SUB_AUTO_LONGTEXT \
371     N_("Automatically detect a subtitle file, if no subtitle filename is " \
372     "specified.")
373
374 #define SUB_FUZZY_TEXT N_("Subtitle autodetection fuzziness")
375 #define SUB_FUZZY_LONGTEXT \
376     N_("This determines how fuzzy subtitle and movie filename matching " \
377     "will be. Options are:\n" \
378     "0 = no subtitles autodetected\n" \
379     "1 = any subtitle file\n" \
380     "2 = any subtitle file containing the movie name\n" \
381     "3 = subtitle file matching the movie name with additional chars\n" \
382     "4 = subtitle file matching the movie name exactly")
383
384 #define SUB_PATH_TEXT N_("Subtitle autodetection paths")
385 #define SUB_PATH_LONGTEXT \
386     N_("Look for a subtitle file in those paths too, if your subtitle " \
387     "file was not found in the current directory.")
388
389 #define SUB_FILE_TEXT N_("Use subtitle file")
390 #define SUB_FILE_LONGTEXT \
391     N_("Load this subtitle file. To be used when autodetect cannot detect " \
392     "your subtitle file.")
393
394 #define DVD_DEV_TEXT N_("DVD device")
395 #ifdef WIN32
396 #define DVD_DEV_LONGTEXT N_( \
397     "This is the default DVD drive (or file) to use. Don't forget the colon " \
398     "after the drive letter (eg. D:)")
399 #else
400 #define DVD_DEV_LONGTEXT N_( \
401     "This is the default DVD device to use.")
402 #endif
403
404 #define VCD_DEV_TEXT N_("VCD device")
405 #ifdef HAVE_VCDX
406 #define VCD_DEV_LONGTEXT N_( \
407     "This is the default VCD device to use. " \
408     "If you don't specify anything, we'll scan for a suitable CD-ROM device." )
409 #else
410 #define VCD_DEV_LONGTEXT N_( \
411     "This is the default VCD device to use." )
412 #endif
413
414 #define CDAUDIO_DEV_TEXT N_("Audio CD device")
415 #ifdef HAVE_CDDAX
416 #define CDAUDIO_DEV_LONGTEXT N_( \
417     "This is the default Audio CD device to use. " \
418     "If you don't specify anything, we'll scan for a suitable CD-ROM device." )
419 #else
420 #define CDAUDIO_DEV_LONGTEXT N_( \
421     "This is the default Audio CD device to use." )
422 #endif
423
424 #define IPV6_TEXT N_("Force IPv6")
425 #define IPV6_LONGTEXT N_( \
426     "If you check this box, IPv6 will be used by default for all UDP and " \
427     "HTTP connections.")
428
429 #define IPV4_TEXT N_("Force IPv4")
430 #define IPV4_LONGTEXT N_( \
431     "If you check this box, IPv4 will be used by default for all UDP and " \
432     "HTTP connections.")
433
434 #define SOCKS_SERVER_TEXT N_("SOCKS server")
435 #define SOCKS_SERVER_LONGTEXT N_( \
436     "Allow you to specify a SOCKS server to use. It must be of the form " \
437     "address:port . It will be used for all TCP connections" )
438
439 #define SOCKS_USER_TEXT N_("SOCKS user name")
440 #define SOCKS_USER_LONGTEXT N_("Allows you to modify the user name that will " \
441     "be used for the connection to the SOCKS server.")
442
443 #define SOCKS_PASS_TEXT N_("SOCKS password")
444 #define SOCKS_PASS_LONGTEXT N_("Allows you to modify the password that will " \
445     "be used for the connection to the SOCKS server.")
446
447
448
449
450 #define META_TITLE_TEXT N_("Title metadata")
451 #define META_TITLE_LONGTEXT N_( \
452      "Allows you to specify a \"title\" metadata for an input.")
453
454 #define META_AUTHOR_TEXT N_("Author metadata")
455 #define META_AUTHOR_LONGTEXT N_( \
456      "Allows you to specify an \"author\" metadata for an input.")
457
458 #define META_ARTIST_TEXT N_("Artist metadata")
459 #define META_ARTIST_LONGTEXT N_( \
460      "Allows you to specify an \"artist\" metadata for an input.")
461
462 #define META_GENRE_TEXT N_("Genre metadata")
463 #define META_GENRE_LONGTEXT N_( \
464      "Allows you to specify a \"genre\" metadata for an input.")
465
466 #define META_CPYR_TEXT N_("Copyright metadata")
467 #define META_CPYR_LONGTEXT N_( \
468      "Allows you to specify a \"copyright\" metadata for an input.")
469
470 #define META_DESCR_TEXT N_("Description metadata")
471 #define META_DESCR_LONGTEXT N_( \
472      "Allows you to specify a \"description\" metadata for an input.")
473
474 #define META_DATE_TEXT N_("Date metadata")
475 #define META_DATE_LONGTEXT N_( \
476      "Allows you to specify a \"date\" metadata for an input.")
477
478 #define META_URL_TEXT N_("URL metadata")
479 #define META_URL_LONGTEXT N_( \
480      "Allows you to specify a \"url\" metadata for an input.")
481
482 #define CODEC_CAT_LONGTEXT N_( \
483     "This option can be used to alter the way VLC selects " \
484     "its codecs (decompression methods). Only advanced users should " \
485     "alter this option as it can break playback of all your streams." )
486
487 #define CODEC_TEXT N_("Preferred codecs list")
488 #define CODEC_LONGTEXT N_( \
489     "This allows you to select a list of codecs that VLC will use in " \
490     "priority. For instance, 'dummy,a52' will try the dummy and a52 codecs " \
491     "before trying the other ones.")
492
493 #define ENCODER_TEXT N_("Preferred encoders list")
494 #define ENCODER_LONGTEXT N_( \
495     "This allows you to select a list of encoders that VLC will use in " \
496     "priority")
497
498 #define SOUT_CAT_LONGTEXT N_( \
499     "These options allow you to set default global options for the " \
500     "stream output subsystem." )
501
502 #define SOUT_TEXT N_("Choose a stream output")
503 #define SOUT_LONGTEXT N_( \
504     "Empty if no stream output.")
505
506 #define SOUT_ALL_TEXT N_("Enable streaming of all ES")
507 #define SOUT_ALL_LONGTEXT N_( \
508     "This allows you to stream all ES (video, audio and subtitles)")
509
510 #define SOUT_DISPLAY_TEXT N_("Display while streaming")
511 #define SOUT_DISPLAY_LONGTEXT N_( \
512     "This allows you to play the stream while streaming it.")
513
514 #define SOUT_VIDEO_TEXT N_("Enable video stream output")
515 #define SOUT_VIDEO_LONGTEXT N_( \
516     "This allows you to choose if the video stream should be redirected to " \
517     "the stream output facility when this last one is enabled.")
518
519 #define SOUT_AUDIO_TEXT N_("Enable audio stream output")
520 #define SOUT_AUDIO_LONGTEXT N_( \
521     "This allows you to choose if the video stream should be redirected to " \
522     "the stream output facility when this last one is enabled.")
523
524 #define SOUT_KEEP_TEXT N_("Keep stream output open" )
525 #define SOUT_KEEP_LONGTEXT N_( \
526     "This allows you to keep an unique stream output instance across " \
527     "multiple playlist item (automatically insert the gather stream output " \
528     "if not specified)" )
529
530 #define PACKETIZER_TEXT N_("Preferred packetizer list")
531 #define PACKETIZER_LONGTEXT N_( \
532     "This allows you to select the order in which VLC will choose its " \
533     "packetizers."  )
534
535 #define MUX_TEXT N_("Mux module")
536 #define MUX_LONGTEXT N_( \
537     "This is a legacy entry to let you configure mux modules")
538
539 #define ACCESS_OUTPUT_TEXT N_("Access output module")
540 #define ACCESS_OUTPUT_LONGTEXT N_( \
541     "This is a legacy entry to let you configure access output modules")
542
543 #define ANN_SAPCTRL_TEXT N_("Control SAP flow")
544 #define ANN_SAPCTRL_LONGTEXT N_("If this option is enabled, the flow on " \
545     "the SAP multicast address will be controlled. This is needed if you " \
546     "want to make announcements on the MBone" )
547
548 #define ANN_SAPINTV_TEXT N_("SAP announcement interval")
549 #define ANN_SAPINTV_LONGTEXT N_("When the SAP flow control is disabled, " \
550     "this lets you set the fixed interval between SAP announcements" )
551
552 #define CPU_CAT_LONGTEXT N_( \
553     "These options allow you to enable special CPU optimizations.\n" \
554     "You should always leave all these enabled." )
555
556 #define MMX_TEXT N_("Enable CPU MMX support")
557 #define MMX_LONGTEXT N_( \
558     "If your processor supports the MMX instructions set, VLC can take " \
559     "advantage of them.")
560
561 #define THREE_DN_TEXT N_("Enable CPU 3D Now! support")
562 #define THREE_DN_LONGTEXT N_( \
563     "If your processor supports the 3D Now! instructions set, VLC can take " \
564     "advantage of them.")
565
566 #define MMXEXT_TEXT N_("Enable CPU MMX EXT support")
567 #define MMXEXT_LONGTEXT N_( \
568     "If your processor supports the MMX EXT instructions set, VLC can take " \
569     "advantage of them.")
570
571 #define SSE_TEXT N_("Enable CPU SSE support")
572 #define SSE_LONGTEXT N_( \
573     "If your processor supports the SSE instructions set, VLC can take " \
574     "advantage of them.")
575
576 #define SSE2_TEXT N_("Enable CPU SSE2 support")
577 #define SSE2_LONGTEXT N_( \
578     "If your processor supports the SSE2 instructions set, VLC can take " \
579     "advantage of them.")
580
581 #define ALTIVEC_TEXT N_("Enable CPU AltiVec support")
582 #define ALTIVEC_LONGTEXT N_( \
583     "If your processor supports the AltiVec instructions set, VLC can take " \
584     "advantage of them.")
585
586 #define PLAYLIST_CAT_LONGTEXT N_( \
587      "These options define the behavior of the playlist. Some " \
588      "of them can be overridden in the playlist dialog box." )
589
590 #define SD_TEXT N_( "Services discovery modules")
591 #define SD_LONGTEXT N_( \
592      "Specifies the services discovery modules to load, separated by commas." \
593      "Typical values are sap, hal, ..." )
594
595 #define RANDOM_TEXT N_("Play files randomly forever")
596 #define RANDOM_LONGTEXT N_( \
597     "When selected, VLC will randomly play files in the playlist until " \
598     "interrupted.")
599
600 #define LOOP_TEXT N_("Loop playlist on end")
601 #define LOOP_LONGTEXT N_( \
602     "If you want VLC to keep playing the playlist indefinitely then enable " \
603     "this option.")
604
605 #define REPEAT_TEXT N_("Repeat the current item")
606 #define REPEAT_LONGTEXT N_( \
607     "When this is active, VLC will keep playing the current playlist item " \
608     "over and over again.")
609
610 #define PAS_TEXT N_("Play and stop")
611 #define PAS_LONGTEXT N_( \
612     "Stop the playlist after each played playlist item. " \
613     "Does advance the playlist index.")
614
615 #define MISC_CAT_LONGTEXT N_( \
616     "These options allow you to select default modules. Leave these " \
617     "alone unless you really know what you are doing." )
618
619 #define MEMCPY_TEXT N_("Memory copy module")
620 #define MEMCPY_LONGTEXT N_( \
621     "You can select which memory copy module you want to use. By default " \
622     "VLC will select the fastest one supported by your hardware.")
623
624 #define ACCESS_TEXT N_("Access module")
625 #define ACCESS_LONGTEXT N_( \
626     "This is a legacy entry to let you configure access modules.")
627
628 #define DEMUX_TEXT N_("Demux module")
629 #define DEMUX_LONGTEXT N_( \
630     "This is a legacy entry to let you configure demux modules.")
631
632 #define RT_PRIORITY_TEXT N_("Allow real-time priority")
633 #define RT_PRIORITY_LONGTEXT N_( \
634     "Running VLC in real-time priority will allow for much more precise " \
635     "scheduling and yield better, especially when streaming content. " \
636     "It can however lock up your whole machine, or make it very very " \
637     "slow. You should only activate this if you know what you're " \
638     "doing.")
639
640 #define RT_OFFSET_TEXT N_("Adjust VLC priority")
641 #define RT_OFFSET_LONGTEXT N_( \
642     "This option adds an offset (positive or negative) to VLC default " \
643     "priorities. You can use it to tune VLC priority against other " \
644     "programs, or against other VLC instances.")
645
646 #define MINIMIZE_THREADS_TEXT N_("Minimize number of threads")
647 #define MINIMIZE_THREADS_LONGTEXT N_( \
648      "This option minimizes the number of threads needed to run VLC")
649
650 #define PLUGIN_PATH_TEXT N_("Modules search path")
651 #define PLUGIN_PATH_LONGTEXT N_( \
652     "This option allows you to specify an additional path for VLC to look " \
653     "for its modules.")
654
655 #define VLM_CONF_TEXT N_("VLM configuration file")
656 #define VLM_CONF_LONGTEXT N_( \
657     "This option allows you to specify a VLM configuration file that will " \
658     "be read when VLM is launched.")
659
660 #define PLUGINS_CACHE_TEXT N_("Use a plugins cache")
661 #define PLUGINS_CACHE_LONGTEXT N_( \
662     "This option allows you to use a plugins cache which will greatly " \
663     "improve the start time of VLC.")
664
665 #define DAEMON_TEXT N_("Run as daemon process")
666 #define DAEMON_LONGTEXT N_( \
667      "Runs VLC as a background daemon process.")
668
669 #define ONEINSTANCE_TEXT N_("Allow only one running instance")
670 #define ONEINSTANCE_LONGTEXT N_( \
671     "Allowing only one running instance of VLC can sometimes be useful, " \
672     "for instance if you associated VLC with some media types and you " \
673     "don't want a new instance of VLC to be opened each time you " \
674     "double-click on a file in the explorer. This option will allow you " \
675     "to play the file with the already running instance or enqueue it.")
676
677 #define HPRIORITY_TEXT N_("Increase the priority of the process")
678 #define HPRIORITY_LONGTEXT N_( \
679     "Increasing the priority of the process will very likely improve your " \
680     "playing experience as it allows VLC not to be disturbed by other " \
681     "applications that could otherwise take too much processor time.\n" \
682     "However be advised that in certain circumstances (bugs) VLC could take " \
683     "all the processor time and render the whole system unresponsive which " \
684     "might require a reboot of your machine.")
685
686 #define FAST_MUTEX_TEXT N_("Fast mutex on NT/2K/XP (developers only)")
687 #define FAST_MUTEX_LONGTEXT N_( \
688     "On Windows NT/2K/XP we use a slow mutex implementation but which " \
689     "allows us to correctly implement condition variables. " \
690     "You can also use the faster Win9x implementation but you might " \
691     "experience problems with it.")
692
693 #define WIN9X_CV_TEXT N_("Condition variables implementation for Win9x " \
694     "(developers only)")
695 #define WIN9X_CV_LONGTEXT N_( \
696     "On Windows 9x/Me you can use a fast but incorrect condition variables " \
697     "implementation (more precisely there is a possibility for a race " \
698     "condition to happen). " \
699     "However it is possible to use slower alternatives which are more " \
700     "robust. " \
701     "Currently you can choose between implementation 0 (which is the " \
702     "fastest but slightly incorrect), 1 (default) and 2.")
703
704 #define HOTKEY_CAT_LONGTEXT N_( "These settings are the global VLC key " \
705     "bindings, known as \"hotkeys\"." )
706
707 #define FULLSCREEN_KEY_TEXT N_("Fullscreen")
708 #define FULLSCREEN_KEY_LONGTEXT N_("Select the hotkey to use to swap fullscreen state.")
709 #define PLAY_PAUSE_KEY_TEXT N_("Play/Pause")
710 #define PLAY_PAUSE_KEY_LONGTEXT N_("Select the hotkey to use to swap paused state.")
711 #define PAUSE_KEY_TEXT N_("Pause only")
712 #define PAUSE_KEY_LONGTEXT N_("Select the hotkey to use to pause.")
713 #define PLAY_KEY_TEXT N_("Play only")
714 #define PLAY_KEY_LONGTEXT N_("Select the hotkey to use to play.")
715 #define FASTER_KEY_TEXT N_("Faster")
716 #define FASTER_KEY_LONGTEXT N_("Select the hotkey to use for fast forward playback.")
717 #define SLOWER_KEY_TEXT N_("Slower")
718 #define SLOWER_KEY_LONGTEXT N_("Select the hotkey to use for slow motion playback.")
719 #define NEXT_KEY_TEXT N_("Next")
720 #define NEXT_KEY_LONGTEXT N_("Select the hotkey to use to skip to the next item in the playlist.")
721 #define PREV_KEY_TEXT N_("Previous")
722 #define PREV_KEY_LONGTEXT N_("Select the hotkey to use to skip to the previous item in the playlist.")
723 #define STOP_KEY_TEXT N_("Stop")
724 #define STOP_KEY_LONGTEXT N_("Select the hotkey to stop the playback.")
725 #define POSITION_KEY_TEXT N_("Position")
726 #define POSITION_KEY_LONGTEXT N_("Select the hotkey to display the position.")
727
728 #define JB10SEC_KEY_TEXT N_("Jump 10 seconds backwards")
729 #define JB10SEC_KEY_LONGTEXT N_("Select the hotkey to jump 10 seconds backwards.")
730
731 #define JB1MIN_KEY_TEXT N_("Jump 1 minute backwards")
732 #define JB1MIN_KEY_LONGTEXT N_("Select the hotkey to jump 1 minute backwards.")
733 #define JB5MIN_KEY_TEXT N_("Jump 5 minutes backwards")
734 #define JB5MIN_KEY_LONGTEXT N_("Select the hotkey to jump 5 minutes backwards.")
735 #define JF10SEC_KEY_TEXT N_("Jump 10 seconds forward")
736 #define JF10SEC_KEY_LONGTEXT N_("Select the hotkey to jump 10 seconds forward.")
737
738 #define JF1MIN_KEY_TEXT N_("Jump 1 minute forward")
739 #define JF1MIN_KEY_LONGTEXT N_("Select the hotkey to jump 1 minute forward.")
740
741 #define JF5MIN_KEY_TEXT N_("Jump 5 minutes forward")
742 #define JF5MIN_KEY_LONGTEXT N_("Select the hotkey to jump 5 minutes forward.")
743
744 #define QUIT_KEY_TEXT N_("Quit")
745 #define QUIT_KEY_LONGTEXT N_("Select the hotkey to quit the application.")
746 #define NAV_UP_KEY_TEXT N_("Navigate up")
747 #define NAV_UP_KEY_LONGTEXT N_("Select the key to move the selector up in DVD menus.")
748 #define NAV_DOWN_KEY_TEXT N_("Navigate down")
749 #define NAV_DOWN_KEY_LONGTEXT N_("Select the key to move the selector down in DVD menus.")
750 #define NAV_LEFT_KEY_TEXT N_("Navigate left")
751 #define NAV_LEFT_KEY_LONGTEXT N_("Select the key to move the selector left in DVD menus.")
752 #define NAV_RIGHT_KEY_TEXT N_("Navigate right")
753 #define NAV_RIGHT_KEY_LONGTEXT N_("Select the key to move the selector right in DVD menus.")
754 #define NAV_ACTIVATE_KEY_TEXT N_("Activate")
755 #define NAV_ACTIVATE_KEY_LONGTEXT N_("Select the key to activate selected item in DVD menus.")
756 #define VOL_UP_KEY_TEXT N_("Volume up")
757 #define VOL_UP_KEY_LONGTEXT N_("Select the key to increase audio volume.")
758 #define VOL_DOWN_KEY_TEXT N_("Volume down")
759 #define VOL_DOWN_KEY_LONGTEXT N_("Select the key to decrease audio volume.")
760 #define VOL_MUTE_KEY_TEXT N_("Mute")
761 #define VOL_MUTE_KEY_LONGTEXT N_("Select the key to turn off audio volume.")
762 #define SUBDELAY_UP_KEY_TEXT N_("Subtitle delay up")
763 #define SUBDELAY_UP_KEY_LONGTEXT N_("Select the key to increase the subtitle delay.")
764 #define SUBDELAY_DOWN_KEY_TEXT N_("Subtitle delay down")
765 #define SUBDELAY_DOWN_KEY_LONGTEXT N_("Select the key to decrease the subtitle delay.")
766 #define AUDIODELAY_UP_KEY_TEXT N_("Audio delay up")
767 #define AUDIODELAY_UP_KEY_LONGTEXT N_("Select the key to increase the audio delay.")
768 #define AUDIODELAY_DOWN_KEY_TEXT N_("Audio delay down")
769 #define AUDIODELAY_DOWN_KEY_LONGTEXT N_("Select the key to decrease the audio delay.")
770 #define PLAY_BOOKMARK1_KEY_TEXT N_("Play playlist bookmark 1")
771 #define PLAY_BOOKMARK2_KEY_TEXT N_("Play playlist bookmark 2")
772 #define PLAY_BOOKMARK3_KEY_TEXT N_("Play playlist bookmark 3")
773 #define PLAY_BOOKMARK4_KEY_TEXT N_("Play playlist bookmark 4")
774 #define PLAY_BOOKMARK5_KEY_TEXT N_("Play playlist bookmark 5")
775 #define PLAY_BOOKMARK6_KEY_TEXT N_("Play playlist bookmark 6")
776 #define PLAY_BOOKMARK7_KEY_TEXT N_("Play playlist bookmark 7")
777 #define PLAY_BOOKMARK8_KEY_TEXT N_("Play playlist bookmark 8")
778 #define PLAY_BOOKMARK9_KEY_TEXT N_("Play playlist bookmark 9")
779 #define PLAY_BOOKMARK10_KEY_TEXT N_("Play playlist bookmark 10")
780 #define PLAY_BOOKMARK_KEY_LONGTEXT N_("Select the key to play this bookmark.")
781 #define SET_BOOKMARK1_KEY_TEXT N_("Set playlist bookmark 1")
782 #define SET_BOOKMARK2_KEY_TEXT N_("Set playlist bookmark 2")
783 #define SET_BOOKMARK3_KEY_TEXT N_("Set playlist bookmark 3")
784 #define SET_BOOKMARK4_KEY_TEXT N_("Set playlist bookmark 4")
785 #define SET_BOOKMARK5_KEY_TEXT N_("Set playlist bookmark 5")
786 #define SET_BOOKMARK6_KEY_TEXT N_("Set playlist bookmark 6")
787 #define SET_BOOKMARK7_KEY_TEXT N_("Set playlist bookmark 7")
788 #define SET_BOOKMARK8_KEY_TEXT N_("Set playlist bookmark 8")
789 #define SET_BOOKMARK9_KEY_TEXT N_("Set playlist bookmark 9")
790 #define SET_BOOKMARK10_KEY_TEXT N_("Set playlist bookmark 10")
791 #define SET_BOOKMARK_KEY_LONGTEXT N_("Select the key to set this playlist bookmark.")
792
793 #define HISTORY_BACK_TEXT N_("Go back in browsing history")
794 #define HISTORY_BACK_LONGTEXT N_("Select the key to go back (to the previous media item) in the browsing history.")
795 #define HISTORY_FORWARD_TEXT N_("Go forward in browsing history")
796 #define HISTORY_FORWARD_LONGTEXT N_("Select the key to go forward (to the next media item) in the browsing history.")
797
798 #define AUDIO_TRACK_KEY_TEXT N_("Cycle audio track")
799 #define AUDIO_TRACK_KEY_LONGTEXT N_("Cycle through the available audio tracks(languages)")
800 #define SUBTITLE_TRACK_KEY_TEXT N_("Cycle subtitle track")
801 #define SUBTITLE_TRACK_KEY_LONGTEXT N_("Cycle through the available subtitle tracks")
802 #define INTF_SHOW_KEY_TEXT N_("Show interface")
803 #define INTF_SHOW_KEY_LONGTEXT N_("Raise the interface above all other windows")
804 #define SNAP_KEY_TEXT N_("Take video snapshot")
805 #define SNAP_KEY_LONGTEXT N_("Takes a video snapshot and writes it to disk.")
806
807 #define PLAYLIST_USAGE N_( \
808     "\nPlaylist MRL syntax:" \
809     "\n  URL[@[title][:chapter][-[title][:chapter]]] [:option=value]" \
810     "\nURL syntax:" \
811     "\n  [file://]filename              plain media file" \
812     "\n  http://ip:port/file            HTTP URL" \
813     "\n  ftp://ip:port/file             FTP URL" \
814     "\n  mms://ip:port/file             MMS URL" \
815     "\n  screen://                      Screen capture" \
816     "\n  [dvd://][device][@raw_device]  DVD device" \
817     "\n  [vcd://][device]               VCD device" \
818     "\n  [cdda://][device]              Audio CD device" \
819     "\n  udp:[[<source address>]@[<bind address>][:<bind port>]]" \
820     "\n                                 UDP stream sent by a streaming server"\
821     "\n  vlc:pause                      pause execution of playlist items" \
822     "\n  vlc:quit                       quit VLC" \
823     "\n")
824
825
826 /*
827  * Quick usage guide for the configuration options:
828  *
829  * add_category_hint( N_(text), N_(longtext), b_advanced_option );
830  * add_subcategory_hint( N_(text), N_(longtext), b_advanced_option );
831  * add_usage_hint( N_(text), b_advanced_option );
832  * add_string( option_name, value, p_callback, N_(text), N_(longtext),
833                b_advanced_option );
834  * add_file( option_name, psz_value, p_callback, N_(text), N_(longtext) );
835  * add_module( option_name, psz_value, i_capability, p_callback,
836  *             N_(text), N_(longtext) );
837  * add_integer( option_name, i_value, p_callback, N_(text), N_(longtext),
838                 b_advanced_option );
839  * add_bool( option_name, b_value, p_callback, N_(text), N_(longtext),
840              b_advanced_option );
841  */
842
843 vlc_module_begin();
844     /* Audio options */
845     set_category( CAT_AUDIO );
846     set_subcategory( SUBCAT_AUDIO_GENERAL );
847     add_bool( "audio", 1, NULL, AUDIO_TEXT, AUDIO_LONGTEXT, VLC_FALSE );
848     add_integer_with_range( "volume", AOUT_VOLUME_DEFAULT, AOUT_VOLUME_MIN,
849                             AOUT_VOLUME_MAX, NULL, VOLUME_TEXT,
850                             VOLUME_LONGTEXT, VLC_FALSE );
851     add_integer_with_range( "saved-volume", AOUT_VOLUME_DEFAULT,
852                             AOUT_VOLUME_MIN, AOUT_VOLUME_MAX, NULL,
853                             VOLUME_SAVE_TEXT, VOLUME_SAVE_LONGTEXT, VLC_TRUE );
854     add_integer( "aout-rate", -1, NULL, AOUT_RATE_TEXT,
855                  AOUT_RATE_LONGTEXT, VLC_TRUE );
856 #if !defined( SYS_DARWIN )
857     add_bool( "hq-resampling", 1, NULL, AOUT_RESAMP_TEXT,
858               AOUT_RESAMP_LONGTEXT, VLC_TRUE );
859 #endif
860     add_bool( "spdif", 0, NULL, SPDIF_TEXT, SPDIF_LONGTEXT, VLC_FALSE );
861     add_integer( "audio-desync", 0, NULL, DESYNC_TEXT,
862                  DESYNC_LONGTEXT, VLC_TRUE );
863     set_subcategory( SUBCAT_AUDIO_AOUT );
864     add_module( "aout", "audio output", NULL, NULL, AOUT_TEXT, AOUT_LONGTEXT,
865                 VLC_TRUE );
866     set_subcategory( SUBCAT_AUDIO_AFILTER );
867     add_module_list_cat( "audio-filter", SUBCAT_AUDIO_AFILTER, 0,
868                          NULL, AUDIO_FILTER_TEXT,
869                          AUDIO_FILTER_LONGTEXT, VLC_FALSE );
870     set_subcategory( SUBCAT_AUDIO_VISUAL );
871     add_string( "audio-visual", 0, NULL,AUDIO_VISUAL_TEXT,
872                 AUDIO_VISUAL_LONGTEXT, VLC_FALSE );
873     set_subcategory( SUBCAT_AUDIO_MISC );
874     add_module( "audio-channel-mixer", "audio filter", NULL, NULL,
875                 AUDIO_CHANNEL_MIXER, AUDIO_CHANNEL_MIXER_LONGTEXT, VLC_FALSE );
876         change_short('A');
877
878     /* Video options */
879     set_category( CAT_VIDEO );
880     set_subcategory( SUBCAT_VIDEO_GENERAL );
881     add_bool( "video", 1, NULL, VIDEO_TEXT, VIDEO_LONGTEXT, VLC_TRUE );
882     add_integer( "width", -1, NULL, WIDTH_TEXT, WIDTH_LONGTEXT, VLC_TRUE );
883     add_integer( "height", -1, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT, VLC_TRUE );
884     add_integer( "video-x", -1, NULL, VIDEOX_TEXT, VIDEOX_LONGTEXT, VLC_TRUE );
885     add_integer( "video-y", -1, NULL, VIDEOY_TEXT, VIDEOY_LONGTEXT, VLC_TRUE );
886     add_bool( "video-deco", 1, NULL, VIDEO_DECO_TEXT,
887               VIDEO_DECO_LONGTEXT, VLC_TRUE );
888     add_string( "video-title", NULL, NULL, VIDEO_TITLE_TEXT,
889                  VIDEO_TITLE_LONGTEXT, VLC_TRUE );
890     add_integer( "align", 0, NULL, ALIGN_TEXT, ALIGN_LONGTEXT, VLC_TRUE );
891         change_integer_list( pi_align_values, ppsz_align_descriptions, 0 );
892     add_float( "zoom", 1, NULL, ZOOM_TEXT, ZOOM_LONGTEXT, VLC_TRUE );
893     add_bool( "grayscale", 0, NULL, GRAYSCALE_TEXT,
894               GRAYSCALE_LONGTEXT, VLC_TRUE );
895     add_bool( "fullscreen", 0, NULL, FULLSCREEN_TEXT,
896               FULLSCREEN_LONGTEXT, VLC_FALSE );
897         change_short('f');
898     add_bool( "skip-frames", 1, NULL, SKIP_FRAMES_TEXT,
899               SKIP_FRAMES_LONGTEXT, VLC_FALSE );
900 #ifndef SYS_DARWIN
901     add_bool( "overlay", 1, NULL, OVERLAY_TEXT, OVERLAY_LONGTEXT, VLC_TRUE );
902 #endif
903     add_bool( "video-on-top", 0, NULL, VIDEO_ON_TOP_TEXT,
904               VIDEO_ON_TOP_LONGTEXT, VLC_FALSE );
905     add_string( "aspect-ratio", "", NULL,
906                 ASPECT_RATIO_TEXT, ASPECT_RATIO_LONGTEXT, VLC_TRUE );
907     add_directory( "snapshot-path", NULL, NULL, SNAP_PATH_TEXT,
908                    SNAP_PATH_LONGTEXT, VLC_FALSE );
909     add_string( "snapshot-format", "png", NULL, SNAP_FORMAT_TEXT,
910                    SNAP_FORMAT_LONGTEXT, VLC_FALSE );
911         change_string_list( ppsz_snap_formats, NULL, 0 );
912
913     set_subcategory( SUBCAT_VIDEO_VOUT );
914     add_module( "vout", "video output", NULL, NULL, VOUT_TEXT, VOUT_LONGTEXT,
915                 VLC_TRUE );
916         change_short('V');
917
918     set_subcategory( SUBCAT_VIDEO_VFILTER );
919     add_module_list_cat( "filter", SUBCAT_VIDEO_VFILTER, NULL, NULL,
920                 FILTER_TEXT, FILTER_LONGTEXT, VLC_FALSE );
921
922 #if 0
923     add_string( "pixel-ratio", "1", NULL, PIXEL_RATIO_TEXT, PIXEL_RATIO_TEXT );
924 #endif
925
926     /* Subpictures options */
927     set_subcategory( SUBCAT_VIDEO_SUBPIC );
928     set_section( N_("On Screen Display") , NULL );
929     add_bool( "osd", 1, NULL, OSD_TEXT, OSD_LONGTEXT, VLC_FALSE );
930
931     set_section( N_("Subtitles") , NULL );
932     add_bool( "sub-autodetect-file", VLC_TRUE, NULL,
933                  SUB_AUTO_TEXT, SUB_AUTO_LONGTEXT, VLC_FALSE );
934     add_integer( "sub-autodetect-fuzzy", 3, NULL,
935                  SUB_FUZZY_TEXT, SUB_FUZZY_LONGTEXT, VLC_TRUE );
936 #ifdef WIN32
937 #   define SUB_PATH ".\\subtitles"
938 #else
939 #   define SUB_PATH "./Subtitles, ./subtitles"
940 #endif
941     add_string( "sub-autodetect-path", SUB_PATH, NULL,
942                  SUB_PATH_TEXT, SUB_PATH_LONGTEXT, VLC_TRUE );
943     add_file( "sub-file", NULL, NULL, SUB_FILE_TEXT,
944               SUB_FILE_LONGTEXT, VLC_TRUE );
945     add_integer( "spumargin", -1, NULL, SPUMARGIN_TEXT,
946                  SPUMARGIN_LONGTEXT, VLC_TRUE );
947
948     set_section( N_( "Overlays" ) , NULL );
949     add_module( "sub-filter", "sub filter", NULL, NULL,
950                 SUB_FILTER_TEXT, SUB_FILTER_LONGTEXT, VLC_TRUE );
951
952     set_subcategory( SUBCAT_VIDEO_TEXT );
953
954     /* Input options */
955     set_category( CAT_INPUT );
956     set_subcategory( SUBCAT_INPUT_ACCESS );
957     set_subcategory( SUBCAT_INPUT_DEMUX );
958     set_subcategory( SUBCAT_INPUT_VCODEC );
959     set_subcategory( SUBCAT_INPUT_ACODEC );
960     set_subcategory( SUBCAT_INPUT_SCODEC );
961     set_subcategory( SUBCAT_INPUT_ADVANCED );
962     add_integer( "cr-average", 40, NULL, CR_AVERAGE_TEXT,
963                  CR_AVERAGE_LONGTEXT, VLC_FALSE );
964     add_integer( "server-port", 1234, NULL,
965                  SERVER_PORT_TEXT, SERVER_PORT_LONGTEXT, VLC_FALSE );
966     add_integer( "mtu", 1500, NULL, MTU_TEXT, MTU_LONGTEXT, VLC_TRUE );
967     add_string( "iface-addr", "", NULL, IFACE_ADDR_TEXT,
968                 IFACE_ADDR_LONGTEXT, VLC_TRUE );
969
970     add_integer( "program", 0, NULL,
971                  INPUT_PROGRAM_TEXT, INPUT_PROGRAM_LONGTEXT, VLC_TRUE );
972     add_string( "programs", "", NULL,
973                 INPUT_PROGRAMS_TEXT, INPUT_PROGRAMS_LONGTEXT, VLC_FALSE );
974     add_integer( "audio-channel", -1, NULL,
975                  INPUT_CHAN_TEXT, INPUT_CHAN_LONGTEXT, VLC_FALSE );
976     add_integer( "spu-channel", -1, NULL,
977                  INPUT_SUB_TEXT, INPUT_SUB_LONGTEXT, VLC_FALSE );
978     add_integer( "input-repeat", 0, NULL,
979                  INPUT_REPEAT_TEXT, INPUT_REPEAT_LONGTEXT, VLC_TRUE );
980     add_integer( "start-time", 0, NULL,
981                  START_TIME_TEXT, START_TIME_LONGTEXT, VLC_TRUE );
982     add_integer( "stop-time", 0, NULL,
983                  STOP_TIME_TEXT, STOP_TIME_LONGTEXT, VLC_TRUE );
984     add_string( "input-slave", NULL, NULL,
985                  INPUT_SLAVE_TEXT, INPUT_SLAVE_LONGTEXT, VLC_TRUE );
986
987     add_string( "bookmarks", NULL, NULL,
988                  BOOKMARKS_TEXT, BOOKMARKS_LONGTEXT, VLC_TRUE );
989
990     set_section( N_( "Default devices") , NULL )
991
992     add_file( "dvd", DVD_DEVICE, NULL, DVD_DEV_TEXT, DVD_DEV_LONGTEXT,
993               VLC_FALSE );
994     add_file( "vcd", VCD_DEVICE, NULL, VCD_DEV_TEXT, VCD_DEV_LONGTEXT,
995               VLC_FALSE );
996     add_file( "cd-audio", CDAUDIO_DEVICE, NULL, CDAUDIO_DEV_TEXT,
997               CDAUDIO_DEV_LONGTEXT, VLC_FALSE );
998
999     add_bool( "ipv6", 0, NULL, IPV6_TEXT, IPV6_LONGTEXT, VLC_FALSE );
1000         change_short('6');
1001     add_bool( "ipv4", 0, NULL, IPV4_TEXT, IPV4_LONGTEXT, VLC_FALSE );
1002         change_short('4');
1003
1004     set_section( N_( "Socks proxy") , NULL )
1005     add_string( "socks", NULL, NULL,
1006                  SOCKS_SERVER_TEXT, SOCKS_SERVER_LONGTEXT, VLC_TRUE );
1007     add_string( "socks-user", NULL, NULL,
1008                  SOCKS_USER_TEXT, SOCKS_USER_LONGTEXT, VLC_TRUE );
1009     add_string( "socks-pwd", NULL, NULL,
1010                  SOCKS_PASS_TEXT, SOCKS_PASS_LONGTEXT, VLC_TRUE );
1011
1012
1013     set_section( N_("Metadata" ) , NULL )
1014     add_string( "meta-title", NULL, NULL, META_TITLE_TEXT,
1015                 META_TITLE_LONGTEXT, VLC_TRUE );
1016     add_string( "meta-author", NULL, NULL, META_AUTHOR_TEXT,
1017                 META_AUTHOR_LONGTEXT, VLC_TRUE );
1018     add_string( "meta-artist", NULL, NULL, META_ARTIST_TEXT,
1019                 META_ARTIST_LONGTEXT, VLC_TRUE );
1020     add_string( "meta-genre", NULL, NULL, META_GENRE_TEXT,
1021                 META_GENRE_LONGTEXT, VLC_TRUE );
1022     add_string( "meta-copyright", NULL, NULL, META_CPYR_TEXT,
1023                 META_CPYR_LONGTEXT, VLC_TRUE );
1024     add_string( "meta-description", NULL, NULL, META_DESCR_TEXT,
1025                 META_DESCR_LONGTEXT, VLC_TRUE );
1026     add_string( "meta-date", NULL, NULL, META_DATE_TEXT,
1027                 META_DATE_LONGTEXT, VLC_TRUE );
1028     add_string( "meta-url", NULL, NULL, META_URL_TEXT,
1029                 META_URL_LONGTEXT, VLC_TRUE );
1030
1031     /* Decoder options */
1032     add_category_hint( N_("Decoders"), CODEC_CAT_LONGTEXT , VLC_TRUE );
1033     add_module( "codec", "decoder", NULL, NULL, CODEC_TEXT,
1034                 CODEC_LONGTEXT, VLC_TRUE );
1035     add_module( "encoder", "encoder", NULL, NULL, ENCODER_TEXT,
1036                 ENCODER_LONGTEXT, VLC_TRUE );
1037
1038
1039     /* Stream output options */
1040     set_category( CAT_SOUT );
1041     set_subcategory( SUBCAT_SOUT_GENERAL );
1042     add_category_hint( N_("Stream output"), SOUT_CAT_LONGTEXT , VLC_TRUE );
1043
1044     add_string( "sout", NULL, NULL, SOUT_TEXT, SOUT_LONGTEXT, VLC_TRUE );
1045     add_bool( "sout-display", VLC_FALSE, NULL, SOUT_DISPLAY_TEXT,
1046                                 SOUT_DISPLAY_LONGTEXT, VLC_TRUE );
1047     add_bool( "sout-keep", VLC_FALSE, NULL, SOUT_KEEP_TEXT,
1048                                 SOUT_KEEP_LONGTEXT, VLC_TRUE );
1049     add_bool( "sout-all", 0, NULL, SOUT_ALL_TEXT,
1050                                 SOUT_ALL_LONGTEXT, VLC_TRUE );
1051     add_bool( "sout-audio", 1, NULL, SOUT_AUDIO_TEXT,
1052                                 SOUT_AUDIO_LONGTEXT, VLC_TRUE );
1053     add_bool( "sout-video", 1, NULL, SOUT_VIDEO_TEXT,
1054                                 SOUT_VIDEO_LONGTEXT, VLC_TRUE );
1055     add_integer( "ttl", 1, NULL, TTL_TEXT, TTL_LONGTEXT, VLC_TRUE );
1056
1057     set_subcategory( SUBCAT_SOUT_STREAM );
1058     set_subcategory( SUBCAT_SOUT_MUX );
1059     add_module( "mux", "sout mux", NULL, NULL, MUX_TEXT,
1060                                 MUX_LONGTEXT, VLC_TRUE );
1061     set_subcategory( SUBCAT_SOUT_ACO );
1062     add_module( "access_output", "sout access", NULL, NULL,
1063                 ACCESS_OUTPUT_TEXT, ACCESS_OUTPUT_LONGTEXT, VLC_TRUE );
1064     set_subcategory( SUBCAT_SOUT_PACKETIZER );
1065     add_module( "packetizer", "packetizer", NULL, NULL,
1066                 PACKETIZER_TEXT, PACKETIZER_LONGTEXT, VLC_TRUE );
1067
1068     set_subcategory( SUBCAT_SOUT_SAP );
1069     add_bool( "sap-flow-control", VLC_FALSE, NULL, ANN_SAPCTRL_TEXT,
1070                                ANN_SAPCTRL_LONGTEXT, VLC_TRUE );
1071     add_integer( "sap-interval", 5, NULL, ANN_SAPINTV_TEXT,
1072                                ANN_SAPINTV_LONGTEXT, VLC_TRUE );
1073     set_subcategory( SUBCAT_SOUT_VOD );
1074
1075     /* CPU options */
1076     set_category( CAT_ADVANCED );
1077     set_subcategory( SUBCAT_ADVANCED_CPU );
1078 #if defined( __i386__ )
1079     add_bool( "mmx", 1, NULL, MMX_TEXT, MMX_LONGTEXT, VLC_TRUE );
1080     add_bool( "3dn", 1, NULL, THREE_DN_TEXT, THREE_DN_LONGTEXT, VLC_TRUE );
1081     add_bool( "mmxext", 1, NULL, MMXEXT_TEXT, MMXEXT_LONGTEXT, VLC_TRUE );
1082     add_bool( "sse", 1, NULL, SSE_TEXT, SSE_LONGTEXT, VLC_TRUE );
1083     add_bool( "sse2", 1, NULL, SSE2_TEXT, SSE2_LONGTEXT, VLC_TRUE );
1084 #endif
1085 #if defined( __powerpc__ ) || defined( SYS_DARWIN )
1086     add_bool( "altivec", 1, NULL, ALTIVEC_TEXT, ALTIVEC_LONGTEXT, VLC_TRUE );
1087 #endif
1088     /* Misc options */
1089     set_subcategory( SUBCAT_ADVANCED_MISC );
1090     add_module( "memcpy", "memcpy", NULL, NULL, MEMCPY_TEXT,
1091                 MEMCPY_LONGTEXT, VLC_TRUE );
1092     add_module( "access", "access", NULL, NULL, ACCESS_TEXT,
1093                 ACCESS_LONGTEXT, VLC_TRUE );
1094     add_module( "demux", "demux", NULL, NULL, DEMUX_TEXT,
1095                 DEMUX_LONGTEXT, VLC_TRUE );
1096     add_bool( "minimize-threads", 0, NULL, MINIMIZE_THREADS_TEXT,
1097               MINIMIZE_THREADS_LONGTEXT, VLC_TRUE );
1098     add_bool( "plugins-cache", VLC_TRUE, NULL, PLUGINS_CACHE_TEXT,
1099               PLUGINS_CACHE_LONGTEXT, VLC_TRUE );
1100     add_directory( "plugin-path", NULL, NULL, PLUGIN_PATH_TEXT,
1101                    PLUGIN_PATH_LONGTEXT, VLC_TRUE );
1102     add_string( "vlm-conf", NULL, NULL, VLM_CONF_TEXT,
1103                     VLM_CONF_LONGTEXT, VLC_TRUE );
1104
1105 #if !defined(WIN32)
1106     add_bool( "daemon", 0, NULL, DAEMON_TEXT, DAEMON_LONGTEXT, VLC_TRUE );
1107         change_short('d');
1108 #endif
1109
1110 #if !defined(SYS_DARWIN) && !defined(SYS_BEOS) && defined(PTHREAD_COND_T_IN_PTHREAD_H)
1111     add_bool( "rt-priority", 0, NULL, RT_PRIORITY_TEXT,
1112               RT_PRIORITY_LONGTEXT, VLC_TRUE );
1113 #endif
1114
1115 #if !defined(SYS_BEOS) && defined(PTHREAD_COND_T_IN_PTHREAD_H)
1116     add_integer( "rt-offset", 0, NULL, RT_OFFSET_TEXT,
1117                  RT_OFFSET_LONGTEXT, VLC_TRUE );
1118 #endif
1119
1120 #if defined(WIN32)
1121     add_bool( "one-instance", 0, NULL, ONEINSTANCE_TEXT,
1122               ONEINSTANCE_LONGTEXT, VLC_TRUE );
1123     add_bool( "high-priority", 0, NULL, HPRIORITY_TEXT,
1124               HPRIORITY_LONGTEXT, VLC_FALSE );
1125     add_bool( "fast-mutex", 0, NULL, FAST_MUTEX_TEXT,
1126               FAST_MUTEX_LONGTEXT, VLC_TRUE );
1127     add_integer( "win9x-cv-method", 1, NULL, WIN9X_CV_TEXT,
1128                   WIN9X_CV_LONGTEXT, VLC_TRUE );
1129 #endif
1130
1131     /* Playlist options */
1132     set_category( CAT_PLAYLIST );
1133     set_subcategory( SUBCAT_PLAYLIST_GENERAL );
1134     add_category_hint( N_("Playlist"), PLAYLIST_CAT_LONGTEXT , VLC_FALSE );
1135     add_bool( "random", 0, NULL, RANDOM_TEXT, RANDOM_LONGTEXT, VLC_FALSE );
1136         change_short('Z');
1137     add_bool( "loop", 0, NULL, LOOP_TEXT, LOOP_LONGTEXT, VLC_FALSE );
1138         change_short('L');
1139     add_bool( "repeat", 0, NULL, REPEAT_TEXT, REPEAT_LONGTEXT, VLC_TRUE );
1140         change_short('R');
1141     add_bool( "play-and-stop", 0, NULL, PAS_TEXT, PAS_LONGTEXT, VLC_TRUE );
1142
1143     set_subcategory( SUBCAT_PLAYLIST_SD );
1144     add_module_list_cat( "services-discovery", SUBCAT_PLAYLIST_SD, NULL,
1145                           NULL, SD_TEXT, SD_LONGTEXT, VLC_FALSE );
1146         change_short('S');
1147
1148     /* Interface options */
1149     set_category( CAT_INTERFACE );
1150     set_subcategory( SUBCAT_INTERFACE_GENERAL );
1151
1152     set_section ( N_("Interface module" ), NULL );
1153     add_module_cat( "intf", SUBCAT_INTERFACE_GENERAL, NULL, NULL, INTF_TEXT,
1154                 INTF_LONGTEXT, VLC_FALSE );
1155         change_short('I');
1156
1157     set_section ( N_("Extra interface modules" ),  NULL );
1158     add_module_list_cat( "extraintf", SUBCAT_INTERFACE_GENERAL,
1159                          NULL, NULL, EXTRAINTF_TEXT,
1160                          EXTRAINTF_LONGTEXT, VLC_FALSE );
1161
1162     set_section ( N_("Miscellaneous"), NULL );
1163     add_integer( "verbose", 0, NULL, VERBOSE_TEXT, VERBOSE_LONGTEXT,
1164                  VLC_FALSE );
1165         change_short('v');
1166     add_bool( "quiet", 0, NULL, QUIET_TEXT, QUIET_LONGTEXT, VLC_TRUE );
1167         change_short('q');
1168     add_string( "language", "auto", NULL, LANGUAGE_TEXT, LANGUAGE_LONGTEXT,
1169                 VLC_FALSE );
1170         change_string_list( ppsz_language, ppsz_language_text, 0 );
1171     add_bool( "color", 0, NULL, COLOR_TEXT, COLOR_LONGTEXT, VLC_TRUE );
1172     add_bool( "advanced", 0, NULL, ADVANCED_TEXT, ADVANCED_LONGTEXT,
1173                     VLC_FALSE );
1174
1175     set_subcategory( SUBCAT_INTERFACE_CONTROL );
1176     add_module_list_cat( "control", SUBCAT_INTERFACE_CONTROL, NULL, NULL,
1177                          CONTROL_TEXT, CONTROL_LONGTEXT, VLC_FALSE );
1178
1179     /* Hotkey options*/
1180     set_subcategory( SUBCAT_INTERFACE_HOTKEYS );
1181     add_category_hint( N_("Hot keys"), HOTKEY_CAT_LONGTEXT , VLC_FALSE );
1182
1183 #if defined(SYS_DARWIN)
1184 #   define KEY_FULLSCREEN         KEY_MODIFIER_COMMAND|'f'
1185 #   define KEY_PLAY_PAUSE         KEY_MODIFIER_COMMAND|'p'
1186 #   define KEY_PAUSE              KEY_UNSET
1187 #   define KEY_PLAY               KEY_UNSET
1188 #   define KEY_FASTER             KEY_MODIFIER_COMMAND|'='
1189 #   define KEY_SLOWER             KEY_MODIFIER_COMMAND|'-'
1190 #   define KEY_NEXT               KEY_MODIFIER_COMMAND|KEY_RIGHT
1191 #   define KEY_PREV               KEY_MODIFIER_COMMAND|KEY_LEFT
1192 #   define KEY_STOP               KEY_MODIFIER_COMMAND|'.'
1193 #   define KEY_POSITION           't'
1194 #   define KEY_JUMP_M10SEC        KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|KEY_LEFT
1195 #   define KEY_JUMP_P10SEC        KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|KEY_RIGHT
1196 #   define KEY_JUMP_M1MIN         KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_LEFT
1197 #   define KEY_JUMP_P1MIN         KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_RIGHT
1198 #   define KEY_JUMP_M5MIN         KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_MODIFIER_ALT|KEY_LEFT
1199 #   define KEY_JUMP_P5MIN         KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_MODIFIER_ALT|KEY_RIGHT
1200 #   define KEY_NAV_ACTIVATE       KEY_ENTER
1201 #   define KEY_NAV_UP             KEY_UP
1202 #   define KEY_NAV_DOWN           KEY_DOWN
1203 #   define KEY_NAV_LEFT           KEY_LEFT
1204 #   define KEY_NAV_RIGHT          KEY_RIGHT
1205 #   define KEY_QUIT               KEY_MODIFIER_COMMAND|'q'
1206 #   define KEY_VOL_UP             KEY_MODIFIER_COMMAND|KEY_UP
1207 #   define KEY_VOL_DOWN           KEY_MODIFIER_COMMAND|KEY_DOWN
1208 #   define KEY_VOL_MUTE           KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'m'
1209 #   define KEY_SUBDELAY_UP        KEY_MODIFIER_COMMAND|'j'
1210 #   define KEY_SUBDELAY_DOWN      KEY_MODIFIER_COMMAND|'h'
1211 #   define KEY_AUDIODELAY_UP      KEY_MODIFIER_COMMAND|'l'
1212 #   define KEY_AUDIODELAY_DOWN    KEY_MODIFIER_COMMAND|'k'
1213 #   define KEY_AUDIO_TRACK        'l'
1214 #   define KEY_SUBTITLE_TRACK     's'
1215 #   define KEY_INTF_SHOW          'i'
1216 #   define KEY_SNAPSHOT           KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|'s'
1217
1218 #   define KEY_SET_BOOKMARK1      KEY_MODIFIER_COMMAND|KEY_F1
1219 #   define KEY_SET_BOOKMARK2      KEY_MODIFIER_COMMAND|KEY_F2
1220 #   define KEY_SET_BOOKMARK3      KEY_MODIFIER_COMMAND|KEY_F3
1221 #   define KEY_SET_BOOKMARK4      KEY_MODIFIER_COMMAND|KEY_F4
1222 #   define KEY_SET_BOOKMARK5      KEY_MODIFIER_COMMAND|KEY_F5
1223 #   define KEY_SET_BOOKMARK6      KEY_MODIFIER_COMMAND|KEY_F6
1224 #   define KEY_SET_BOOKMARK7      KEY_MODIFIER_COMMAND|KEY_F7
1225 #   define KEY_SET_BOOKMARK8      KEY_MODIFIER_COMMAND|KEY_F8
1226 #   define KEY_SET_BOOKMARK9      KEY_UNSET
1227 #   define KEY_SET_BOOKMARK10     KEY_UNSET
1228 #   define KEY_PLAY_BOOKMARK1     KEY_F1
1229 #   define KEY_PLAY_BOOKMARK2     KEY_F2
1230 #   define KEY_PLAY_BOOKMARK3     KEY_F3
1231 #   define KEY_PLAY_BOOKMARK4     KEY_F4
1232 #   define KEY_PLAY_BOOKMARK5     KEY_F5
1233 #   define KEY_PLAY_BOOKMARK6     KEY_F6
1234 #   define KEY_PLAY_BOOKMARK7     KEY_F7
1235 #   define KEY_PLAY_BOOKMARK8     KEY_F8
1236 #   define KEY_PLAY_BOOKMARK9     KEY_UNSET
1237 #   define KEY_PLAY_BOOKMARK10    KEY_UNSET
1238 #   define KEY_HISTORY_BACK       KEY_MODIFIER_COMMAND|'['
1239 #   define KEY_HISTORY_FORWARD    KEY_MODIFIER_COMMAND|']'
1240
1241 #else
1242 #   define KEY_FULLSCREEN         'f'
1243 #   define KEY_PLAY_PAUSE         KEY_SPACE
1244 #   define KEY_PAUSE              KEY_UNSET
1245 #   define KEY_PLAY               KEY_UNSET
1246 #   define KEY_FASTER             '+'
1247 #   define KEY_SLOWER             '-'
1248 #   define KEY_NEXT               'n'
1249 #   define KEY_PREV               'p'
1250 #   define KEY_STOP               's'
1251 #   define KEY_POSITION           't'
1252 #   define KEY_JUMP_M10SEC        KEY_MODIFIER_ALT|KEY_LEFT
1253 #   define KEY_JUMP_P10SEC        KEY_MODIFIER_ALT|KEY_RIGHT
1254 #   define KEY_JUMP_M1MIN         KEY_MODIFIER_CTRL|KEY_LEFT
1255 #   define KEY_JUMP_P1MIN         KEY_MODIFIER_CTRL|KEY_RIGHT
1256 #   define KEY_JUMP_M5MIN         KEY_MODIFIER_CTRL|KEY_MODIFIER_ALT|KEY_LEFT
1257 #   define KEY_JUMP_P5MIN         KEY_MODIFIER_CTRL|KEY_MODIFIER_ALT|KEY_RIGHT
1258 #   define KEY_NAV_ACTIVATE       KEY_ENTER
1259 #   define KEY_NAV_UP             KEY_UP
1260 #   define KEY_NAV_DOWN           KEY_DOWN
1261 #   define KEY_NAV_LEFT           KEY_LEFT
1262 #   define KEY_NAV_RIGHT          KEY_RIGHT
1263 #   define KEY_QUIT               KEY_MODIFIER_CTRL|'q'
1264 #   define KEY_VOL_UP             KEY_MODIFIER_CTRL|KEY_UP
1265 #   define KEY_VOL_DOWN           KEY_MODIFIER_CTRL|KEY_DOWN
1266 #   define KEY_VOL_MUTE           'm'
1267 #   define KEY_SUBDELAY_UP        KEY_MODIFIER_CTRL|'h'
1268 #   define KEY_SUBDELAY_DOWN      KEY_MODIFIER_CTRL|'j'
1269 #   define KEY_AUDIODELAY_UP      KEY_MODIFIER_CTRL|'k'
1270 #   define KEY_AUDIODELAY_DOWN    KEY_MODIFIER_CTRL|'l'
1271
1272 #   define KEY_AUDIO_TRACK        'l'
1273 #   define KEY_SUBTITLE_TRACK     'k'
1274 #   define KEY_INTF_SHOW          'i'
1275 #   define KEY_SNAPSHOT           KEY_MODIFIER_CTRL|'s'
1276
1277 #   define KEY_SET_BOOKMARK1      KEY_MODIFIER_CTRL|KEY_F1
1278 #   define KEY_SET_BOOKMARK2      KEY_MODIFIER_CTRL|KEY_F2
1279 #   define KEY_SET_BOOKMARK3      KEY_MODIFIER_CTRL|KEY_F3
1280 #   define KEY_SET_BOOKMARK4      KEY_MODIFIER_CTRL|KEY_F4
1281 #   define KEY_SET_BOOKMARK5      KEY_MODIFIER_CTRL|KEY_F5
1282 #   define KEY_SET_BOOKMARK6      KEY_MODIFIER_CTRL|KEY_F6
1283 #   define KEY_SET_BOOKMARK7      KEY_MODIFIER_CTRL|KEY_F7
1284 #   define KEY_SET_BOOKMARK8      KEY_MODIFIER_CTRL|KEY_F8
1285 #   define KEY_SET_BOOKMARK9      KEY_MODIFIER_CTRL|KEY_F9
1286 #   define KEY_SET_BOOKMARK10     KEY_MODIFIER_CTRL|KEY_F10
1287 #   define KEY_PLAY_BOOKMARK1     KEY_F1
1288 #   define KEY_PLAY_BOOKMARK2     KEY_F2
1289 #   define KEY_PLAY_BOOKMARK3     KEY_F3
1290 #   define KEY_PLAY_BOOKMARK4     KEY_F4
1291 #   define KEY_PLAY_BOOKMARK5     KEY_F5
1292 #   define KEY_PLAY_BOOKMARK6     KEY_F6
1293 #   define KEY_PLAY_BOOKMARK7     KEY_F7
1294 #   define KEY_PLAY_BOOKMARK8     KEY_F8
1295 #   define KEY_PLAY_BOOKMARK9     KEY_F9
1296 #   define KEY_PLAY_BOOKMARK10    KEY_F10
1297 #   define KEY_HISTORY_BACK       KEY_MODIFIER_CTRL|'['
1298 #   define KEY_HISTORY_FORWARD    KEY_MODIFIER_CTRL|']'
1299 #endif
1300
1301     add_key( "key-fullscreen", KEY_FULLSCREEN, NULL, FULLSCREEN_KEY_TEXT,
1302              FULLSCREEN_KEY_LONGTEXT, VLC_FALSE );
1303     add_key( "key-play-pause", KEY_PLAY_PAUSE, NULL, PLAY_PAUSE_KEY_TEXT,
1304              PLAY_PAUSE_KEY_LONGTEXT, VLC_FALSE );
1305     add_key( "key-pause", KEY_PAUSE, NULL, PAUSE_KEY_TEXT,
1306              PAUSE_KEY_LONGTEXT, VLC_TRUE );
1307     add_key( "key-play", KEY_PLAY, NULL, PLAY_KEY_TEXT,
1308              PLAY_KEY_LONGTEXT, VLC_TRUE );
1309     add_key( "key-faster", KEY_FASTER, NULL, FASTER_KEY_TEXT,
1310              FASTER_KEY_LONGTEXT, VLC_FALSE );
1311     add_key( "key-slower", KEY_SLOWER, NULL, SLOWER_KEY_TEXT,
1312              SLOWER_KEY_LONGTEXT, VLC_FALSE );
1313     add_key( "key-next", KEY_NEXT, NULL, NEXT_KEY_TEXT,
1314              NEXT_KEY_LONGTEXT, VLC_FALSE );
1315     add_key( "key-prev", KEY_PREV, NULL, PREV_KEY_TEXT,
1316              PREV_KEY_LONGTEXT, VLC_FALSE );
1317     add_key( "key-stop", KEY_STOP, NULL, STOP_KEY_TEXT,
1318              STOP_KEY_LONGTEXT, VLC_FALSE );
1319     add_key( "key-position", KEY_POSITION, NULL, POSITION_KEY_TEXT,
1320              POSITION_KEY_LONGTEXT, VLC_TRUE );
1321     add_key( "key-jump-10sec", KEY_JUMP_M10SEC, NULL, JB10SEC_KEY_TEXT,
1322              JB10SEC_KEY_LONGTEXT, VLC_FALSE );
1323     add_key( "key-jump+10sec", KEY_JUMP_P10SEC, NULL, JF10SEC_KEY_TEXT,
1324              JF10SEC_KEY_LONGTEXT, VLC_FALSE );
1325     add_key( "key-jump-1min", KEY_JUMP_M1MIN, NULL, JB1MIN_KEY_TEXT,
1326              JB1MIN_KEY_LONGTEXT, VLC_FALSE );
1327     add_key( "key-jump+1min", KEY_JUMP_P1MIN, NULL, JF1MIN_KEY_TEXT,
1328              JF1MIN_KEY_LONGTEXT, VLC_FALSE );
1329     add_key( "key-jump-5min", KEY_JUMP_M5MIN, NULL, JB5MIN_KEY_TEXT,
1330              JB5MIN_KEY_LONGTEXT, VLC_FALSE );
1331     add_key( "key-jump+5min", KEY_JUMP_P5MIN, NULL, JF5MIN_KEY_TEXT,
1332              JF5MIN_KEY_LONGTEXT, VLC_FALSE );
1333
1334     add_key( "key-nav-activate", KEY_NAV_ACTIVATE, NULL, NAV_ACTIVATE_KEY_TEXT,
1335              NAV_ACTIVATE_KEY_LONGTEXT, VLC_TRUE );
1336     add_key( "key-nav-up", KEY_NAV_UP, NULL, NAV_UP_KEY_TEXT,
1337              NAV_UP_KEY_LONGTEXT, VLC_TRUE );
1338     add_key( "key-nav-down", KEY_NAV_DOWN, NULL, NAV_DOWN_KEY_TEXT,
1339              NAV_DOWN_KEY_LONGTEXT, VLC_TRUE );
1340     add_key( "key-nav-left", KEY_NAV_LEFT, NULL, NAV_LEFT_KEY_TEXT,
1341              NAV_LEFT_KEY_LONGTEXT, VLC_TRUE );
1342     add_key( "key-nav-right", KEY_NAV_RIGHT, NULL, NAV_RIGHT_KEY_TEXT,
1343              NAV_RIGHT_KEY_LONGTEXT, VLC_TRUE );
1344
1345     add_key( "key-quit", KEY_QUIT, NULL, QUIT_KEY_TEXT,
1346              QUIT_KEY_LONGTEXT, VLC_FALSE );
1347     add_key( "key-vol-up", KEY_VOL_UP, NULL, VOL_UP_KEY_TEXT,
1348              VOL_UP_KEY_LONGTEXT, VLC_FALSE );
1349     add_key( "key-vol-down", KEY_VOL_DOWN, NULL, VOL_DOWN_KEY_TEXT,
1350              VOL_DOWN_KEY_LONGTEXT, VLC_FALSE );
1351     add_key( "key-vol-mute", KEY_VOL_MUTE, NULL, VOL_MUTE_KEY_TEXT,
1352              VOL_MUTE_KEY_LONGTEXT, VLC_FALSE );
1353     add_key( "key-subdelay-up", KEY_SUBDELAY_UP, NULL,
1354              SUBDELAY_UP_KEY_TEXT, SUBDELAY_UP_KEY_LONGTEXT, VLC_TRUE );
1355     add_key( "key-subdelay-down", KEY_SUBDELAY_DOWN, NULL,
1356              SUBDELAY_DOWN_KEY_TEXT, SUBDELAY_DOWN_KEY_LONGTEXT, VLC_TRUE );
1357     add_key( "key-audiodelay-up", KEY_AUDIODELAY_UP, NULL,
1358              AUDIODELAY_UP_KEY_TEXT, AUDIODELAY_UP_KEY_LONGTEXT, VLC_TRUE );
1359     add_key( "key-audiodelay-down", KEY_AUDIODELAY_DOWN, NULL,
1360              AUDIODELAY_DOWN_KEY_TEXT, AUDIODELAY_DOWN_KEY_LONGTEXT, VLC_TRUE );
1361     add_key( "key-audio-track", KEY_AUDIO_TRACK, NULL, AUDIO_TRACK_KEY_TEXT,
1362              AUDIO_TRACK_KEY_LONGTEXT, VLC_FALSE );
1363     add_key( "key-subtitle-track", KEY_SUBTITLE_TRACK, NULL,
1364              SUBTITLE_TRACK_KEY_TEXT, SUBTITLE_TRACK_KEY_LONGTEXT, VLC_FALSE );
1365     add_key( "key-intf-show", KEY_INTF_SHOW, NULL,
1366              INTF_SHOW_KEY_TEXT, INTF_SHOW_KEY_LONGTEXT, VLC_TRUE );
1367     add_key( "key-snapshot", KEY_SNAPSHOT, NULL,
1368              SNAP_KEY_TEXT, SNAP_KEY_LONGTEXT, VLC_TRUE );
1369
1370     add_key( "key-set-bookmark1", KEY_SET_BOOKMARK1, NULL,
1371              SET_BOOKMARK1_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1372     add_key( "key-set-bookmark2", KEY_SET_BOOKMARK2, NULL,
1373              SET_BOOKMARK2_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1374     add_key( "key-set-bookmark3", KEY_SET_BOOKMARK3, NULL,
1375              SET_BOOKMARK3_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1376     add_key( "key-set-bookmark4", KEY_SET_BOOKMARK4, NULL,
1377              SET_BOOKMARK4_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1378     add_key( "key-set-bookmark5", KEY_SET_BOOKMARK5, NULL,
1379              SET_BOOKMARK5_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1380     add_key( "key-set-bookmark6", KEY_SET_BOOKMARK6, NULL,
1381              SET_BOOKMARK6_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1382     add_key( "key-set-bookmark7", KEY_SET_BOOKMARK7, NULL,
1383              SET_BOOKMARK7_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1384     add_key( "key-set-bookmark8", KEY_SET_BOOKMARK8, NULL,
1385              SET_BOOKMARK8_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1386     add_key( "key-set-bookmark9", KEY_SET_BOOKMARK9, NULL,
1387              SET_BOOKMARK9_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1388     add_key( "key-set-bookmark10", KEY_SET_BOOKMARK10, NULL,
1389              SET_BOOKMARK10_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1390     add_key( "key-play-bookmark1", KEY_PLAY_BOOKMARK1, NULL,
1391              PLAY_BOOKMARK1_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1392     add_key( "key-play-bookmark2", KEY_PLAY_BOOKMARK2, NULL,
1393              PLAY_BOOKMARK2_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1394     add_key( "key-play-bookmark3", KEY_PLAY_BOOKMARK3, NULL,
1395              PLAY_BOOKMARK3_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1396     add_key( "key-play-bookmark4", KEY_PLAY_BOOKMARK4, NULL,
1397              PLAY_BOOKMARK4_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1398     add_key( "key-play-bookmark5", KEY_PLAY_BOOKMARK5, NULL,
1399              PLAY_BOOKMARK5_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1400     add_key( "key-play-bookmark6", KEY_PLAY_BOOKMARK6, NULL,
1401              PLAY_BOOKMARK6_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1402     add_key( "key-play-bookmark7", KEY_PLAY_BOOKMARK7, NULL,
1403              PLAY_BOOKMARK7_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1404     add_key( "key-play-bookmark8", KEY_PLAY_BOOKMARK8, NULL,
1405              PLAY_BOOKMARK8_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1406     add_key( "key-play-bookmark9", KEY_PLAY_BOOKMARK9, NULL,
1407              PLAY_BOOKMARK9_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1408     add_key( "key-play-bookmark10", KEY_PLAY_BOOKMARK10, NULL,
1409              PLAY_BOOKMARK10_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1410     add_key( "key-history-back", KEY_HISTORY_BACK, NULL, HISTORY_BACK_TEXT,
1411              HISTORY_BACK_LONGTEXT, VLC_TRUE );
1412     add_key( "key-history-forward", KEY_HISTORY_FORWARD, NULL,
1413              HISTORY_FORWARD_TEXT, HISTORY_FORWARD_LONGTEXT, VLC_TRUE );
1414
1415     /* Usage (mainly useful for cmd line stuff) */
1416     add_usage_hint( PLAYLIST_USAGE );
1417
1418     set_description( N_("main program") );
1419     set_capability( "main", 100 );
1420 vlc_module_end();
1421
1422 static module_config_t p_help_config[] =
1423 {
1424     { CONFIG_ITEM_BOOL, NULL, "help", 'h',
1425       N_("print help (can be combined with --advanced)") },
1426     { CONFIG_ITEM_BOOL, NULL, "longhelp", 'H',
1427       N_("print detailed help (can be combined with --advanced)") },
1428     { CONFIG_ITEM_BOOL, NULL, "list", 'l',
1429       N_("print a list of available modules") },
1430     { CONFIG_ITEM_STRING, NULL, "module", 'p',
1431       N_("print help on module (can be combined with --advanced)") },
1432     { CONFIG_ITEM_BOOL, NULL, "save-config", '\0',
1433       N_("save the current command line options in the config") },
1434     { CONFIG_ITEM_BOOL, NULL, "reset-config", '\0',
1435       N_("reset the current config to the default values") },
1436     { CONFIG_ITEM_STRING, NULL, "config", '\0',
1437       N_("use alternate config file") },
1438     { CONFIG_ITEM_BOOL, NULL, "reset-plugins-cache", '\0',
1439       N_("resets the current plugins cache") },
1440     { CONFIG_ITEM_BOOL, NULL, "version", '\0',
1441       N_("print version information") },
1442     { CONFIG_HINT_END, NULL, NULL, '\0', NULL }
1443 };
1444
1445 /*****************************************************************************
1446  * End configuration.
1447  *****************************************************************************/
1448
1449 /*****************************************************************************
1450  * Initializer for the vlc_t structure storing the action / key associations
1451  *****************************************************************************/
1452 static struct hotkey p_hotkeys[] =
1453 {
1454     { "key-quit", ACTIONID_QUIT, 0 },
1455     { "key-play-pause", ACTIONID_PLAY_PAUSE, 0 },
1456     { "key-play", ACTIONID_PLAY, 0 },
1457     { "key-pause", ACTIONID_PAUSE, 0 },
1458     { "key-stop", ACTIONID_STOP, 0 },
1459     { "key-position", ACTIONID_POSITION, 0 },
1460     { "key-jump-10sec", ACTIONID_JUMP_BACKWARD_10SEC, 0 },
1461     { "key-jump+10sec", ACTIONID_JUMP_FORWARD_10SEC, 0 },
1462     { "key-jump-1min", ACTIONID_JUMP_BACKWARD_1MIN, 0 },
1463     { "key-jump+1min", ACTIONID_JUMP_FORWARD_1MIN, 0 },
1464     { "key-jump-5min", ACTIONID_JUMP_BACKWARD_5MIN, 0 },
1465     { "key-jump+5min", ACTIONID_JUMP_FORWARD_5MIN, 0 },
1466     { "key-prev", ACTIONID_PREV, 0 },
1467     { "key-next", ACTIONID_NEXT, 0 },
1468     { "key-faster", ACTIONID_FASTER, 0 },
1469     { "key-slower", ACTIONID_SLOWER, 0 },
1470     { "key-fullscreen", ACTIONID_FULLSCREEN, 0 },
1471     { "key-vol-up", ACTIONID_VOL_UP, 0 },
1472     { "key-vol-down", ACTIONID_VOL_DOWN, 0 },
1473     { "key-vol-mute", ACTIONID_VOL_MUTE, 0 },
1474     { "key-subdelay-down", ACTIONID_SUBDELAY_DOWN, 0 },
1475     { "key-subdelay-up", ACTIONID_SUBDELAY_UP, 0 },
1476     { "key-audiodelay-down", ACTIONID_AUDIODELAY_DOWN, 0 },
1477     { "key-audiodelay-up", ACTIONID_AUDIODELAY_UP, 0 },
1478     { "key-audio-track", ACTIONID_AUDIO_TRACK, 0},
1479     { "key-subtitle-track", ACTIONID_SUBTITLE_TRACK, 0},
1480     { "key-intf-show", ACTIONID_INTF_SHOW, 0},
1481     { "key-snapshot", ACTIONID_SNAPSHOT, 0},
1482     { "key-nav-activate", ACTIONID_NAV_ACTIVATE, 0 },
1483     { "key-nav-up", ACTIONID_NAV_UP, 0 },
1484     { "key-nav-down", ACTIONID_NAV_DOWN, 0 },
1485     { "key-nav-left", ACTIONID_NAV_LEFT, 0 },
1486     { "key-nav-right", ACTIONID_NAV_RIGHT, 0 },
1487     { "key-set-bookmark1", ACTIONID_SET_BOOKMARK1, 0},
1488     { "key-set-bookmark2", ACTIONID_SET_BOOKMARK2, 0},
1489     { "key-set-bookmark3", ACTIONID_SET_BOOKMARK3, 0},
1490     { "key-set-bookmark4", ACTIONID_SET_BOOKMARK4, 0},
1491     { "key-set-bookmark5", ACTIONID_SET_BOOKMARK5, 0},
1492     { "key-set-bookmark6", ACTIONID_SET_BOOKMARK6, 0},
1493     { "key-set-bookmark7", ACTIONID_SET_BOOKMARK7, 0},
1494     { "key-set-bookmark8", ACTIONID_SET_BOOKMARK8, 0},
1495     { "key-set-bookmark9", ACTIONID_SET_BOOKMARK9, 0},
1496     { "key-set-bookmark10", ACTIONID_SET_BOOKMARK10, 0},
1497     { "key-play-bookmark1", ACTIONID_PLAY_BOOKMARK1, 0},
1498     { "key-play-bookmark2", ACTIONID_PLAY_BOOKMARK2, 0},
1499     { "key-play-bookmark3", ACTIONID_PLAY_BOOKMARK3, 0},
1500     { "key-play-bookmark4", ACTIONID_PLAY_BOOKMARK4, 0},
1501     { "key-play-bookmark5", ACTIONID_PLAY_BOOKMARK5, 0},
1502     { "key-play-bookmark6", ACTIONID_PLAY_BOOKMARK6, 0},
1503     { "key-play-bookmark7", ACTIONID_PLAY_BOOKMARK7, 0},
1504     { "key-play-bookmark8", ACTIONID_PLAY_BOOKMARK8, 0},
1505     { "key-play-bookmark9", ACTIONID_PLAY_BOOKMARK9, 0},
1506     { "key-play-bookmark10", ACTIONID_PLAY_BOOKMARK10, 0},
1507     { "key-history-back", ACTIONID_HISTORY_BACK, 0},
1508     { "key-history-forward", ACTIONID_HISTORY_FORWARD, 0},
1509     { NULL, 0, 0 }
1510 };
1511