]> git.sesse.net Git - vlc/blob - src/libvlc.h
a493e58796269f0d1cffd7c1f1f32e6151f8e146
[vlc] / src / libvlc.h
1 /*****************************************************************************
2  * libvlc.h: main libvlc header
3  *****************************************************************************
4  * Copyright (C) 1998-2002 VideoLAN
5  * $Id: libvlc.h,v 1.32 2003/01/06 00:37:30 garf Exp $
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@netcourrier.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 #define Nothing here, this is just to prevent update-po from being stupid
27
28 /*****************************************************************************
29  * Configuration options for the main program. Each module will also separatly
30  * define its own configuration options.
31  * Look into configuration.h if you need to know more about the following
32  * macros.
33  *****************************************************************************/
34 #define INTF_TEXT N_("interface module")
35 #define INTF_LONGTEXT N_( \
36     "This option allows you to select the interface used by vlc. " \
37     "The default behavior is to automatically select the best module " \
38     "available.")
39
40 #define VERBOSE_TEXT N_("verbosity (0,1,2)")
41 #define VERBOSE_LONGTEXT N_( \
42     "This options sets the verbosity level (0=only errors and " \
43     "standard messages, 1=warnings, 2=debug).")
44
45 #define QUIET_TEXT N_("be quiet")
46 #define QUIET_LONGTEXT N_( \
47     "This options turns off all warning and information messages.")
48
49 #define COLOR_TEXT N_("color messages")
50 #define COLOR_LONGTEXT N_( \
51     "When this option is turned on, the messages sent to the console will " \
52     "be colorized. Your terminal needs Linux color support for this to work.")
53
54 #define INTF_PATH_TEXT N_("interface default search path")
55 #define INTF_PATH_LONGTEXT N_( \
56     "This option allows you to set the default path that the interface will " \
57     "open when looking for a file.")
58
59 #define PLUGIN_PATH_TEXT N_("plugin search path")
60 #define PLUGIN_PATH_LONGTEXT N_( \
61     "This option allows you to specify an additional path for vlc to look" \
62     "for its plugins.")
63
64 #define AOUT_TEXT N_("audio output module")
65 #define AOUT_LONGTEXT N_( \
66     "This option allows you to select the audio output method used by vlc. " \
67     "The default behavior is to automatically select the best method " \
68     "available.")
69
70 #define AUDIO_TEXT N_("enable audio")
71 #define AUDIO_LONGTEXT N_( \
72     "You can completely disable the audio output. In this case the audio " \
73     "decoding stage won't be done, and it will save some processing power.")
74
75 #define MONO_TEXT N_("force mono audio")
76 #define MONO_LONGTEXT N_("This will force a mono audio output")
77
78 #define VOLUME_TEXT N_("audio output volume")
79 #define VOLUME_LONGTEXT N_( \
80     "You can set the default audio output volume here, in a range from 0 to " \
81     "1024.")
82
83 #define FORMAT_TEXT N_("audio output format")
84 #define FORMAT_LONGTEXT N_( \
85     "You can force the audio output format here.\n" \
86     "0 -> 16 bits signed native endian (default)\n" \
87     "1 ->  8 bits unsigned\n"                       \
88     "2 -> 16 bits signed little endian\n"           \
89     "3 -> 16 bits signed big endian\n"              \
90     "4 ->  8 bits signed\n"                         \
91     "5 -> 16 bits unsigned little endian\n"         \
92     "6 -> 16 bits unsigned big endian\n"            \
93     "7 -> MPEG2 audio (unsupported)\n"              \
94     "8 -> A52 pass-through")
95
96 #define AOUT_RATE_TEXT N_("audio output frequency (Hz)")
97 #define AOUT_RATE_LONGTEXT N_( \
98     "You can force the audio output frequency here. Common values are " \
99     "48000, 44100, 32000, 22050, 16000, 11025, 8000.")
100
101 #define AOUT_CHANNELS_TEXT N_("number of channels of audio output")
102 #define AOUT_CHANNELS_LONGTEXT N_( \
103     "Mono is 1, stereo is 2. Higher value (used for 5.1) may not be " \
104     "supported by your audio output module.")
105
106 #define DESYNC_TEXT N_("compensate desynchronization of audio (in ms)")
107 #define DESYNC_LONGTEXT N_( \
108     "This option allows you to delay the audio output. This can be handy if " \
109     "you notice a lag between the video and the audio.")
110
111 #define HEADPHONE_TEXT N_("headphone virtual spatialization effect")
112 #define HEADPHONE_LONGTEXT N_( \
113     "This effect gives you the feeling that you stands in a real room " \
114     "with a complete 5.1 speaker set when using only a headphone, " \
115     "providing a more realistic sound experience. It should also be " \
116     "more comfortable and less tiring when listening to music for " \
117     "long periods of time.\nIt works with any source format from mono " \
118     "to 5.1.")
119
120 #define HEADPHONE_DIM_TEXT N_("characteristic dimension")
121 #define HEADPHONE_DIM_LONGTEXT N_( \
122      "Headphone virtual spatialization effect parameter: "\
123      "distance between front left speaker and listener in meters.")
124
125 #define VOUT_TEXT N_("video output module")
126 #define VOUT_LONGTEXT N_( \
127     "This option allows you to select the video output method used by vlc. " \
128     "The default behavior is to automatically select the best " \
129     "method available.")
130
131 #define VIDEO_TEXT N_("enable video")
132 #define VIDEO_LONGTEXT N_( \
133     "You can completely disable the video output. In this case the video " \
134     "decoding stage won't be done, which will save some processing power.")
135
136 #define DISPLAY_TEXT N_("display identifier")
137 #define DISPLAY_LONGTEXT N_( \
138     "This is the local display port that will be used for X11 drawing. " \
139     "For instance :0.1.")
140
141 #define WIDTH_TEXT N_("video width")
142 #define WIDTH_LONGTEXT N_( \
143     "You can enforce the video width here. By default vlc will " \
144     "adapt to the video characteristics.")
145
146 #define HEIGHT_TEXT N_("video height")
147 #define HEIGHT_LONGTEXT N_( \
148     "You can enforce the video height here. By default vlc will " \
149     "adapt to the video characteristics.")
150
151 #define ZOOM_TEXT N_("zoom video")
152 #define ZOOM_LONGTEXT N_( \
153     "You can zoom the video by the specified factor.")
154
155 #define GRAYSCALE_TEXT N_("grayscale video output")
156 #define GRAYSCALE_LONGTEXT N_( \
157     "When enabled, the color information from the video won't be decoded " \
158     "(this can also allow you to save some processing power).")
159
160 #define FULLSCREEN_TEXT N_("fullscreen video output")
161 #define FULLSCREEN_LONGTEXT N_( \
162     "If this option is enabled, vlc will always start a video in fullscreen " \
163     "mode.")
164
165 #define OVERLAY_TEXT N_("overlay video output")
166 #define OVERLAY_LONGTEXT N_( \
167     "If enabled, vlc will try to take advantage of the overlay capabilities " \
168     "of your graphic card.")
169
170 #define SPUMARGIN_TEXT N_("force SPU position")
171 #define SPUMARGIN_LONGTEXT N_( \
172     "You can use this option to place the subtitles under the movie, " \
173     "instead of over the movie. Try several positions.")
174
175 #define FILTER_TEXT N_("video filter module")
176 #define FILTER_LONGTEXT N_( \
177     "This will allow you to add a post-processing filter to enhance the " \
178     "picture quality, for instance deinterlacing, or to clone or distort " \
179     "the video window.")
180
181 #define ASPECT_RATIO_TEXT N_("source aspect ratio")
182 #define ASPECT_RATIO_LONGTEXT N_( \
183     "This will force the source aspect ratio. For instance, some DVDs claim " \
184     "to be 16:9 while they are actually 4:3. This can also be used as a " \
185     "hint for VLC when a movie does not have aspect ratio information. " \
186     "Accepted formats are x:y (4:3, 16:9, etc.) expressing the global image " \
187     "aspect, or a float value (1.25, 1.3333, etc.) expressing pixel " \
188     "squareness.")
189
190 #if 0
191 #define PIXEL_RATIO_TEXT N_("destination aspect ratio")
192 #define PIXEL_RATIO_LONGTEXT N_( \
193     "This will force the destination pixel size. By default VLC assumes " \
194     "your pixels are square, unless your hardware has a way to tell it " \
195     "otherwise. This may be used when you output VLC's signal to another " \
196     "device such as a TV set. Accepted format is a float value (1, 1.25, " \
197     "1.3333, etc.) expressing pixel squareness.")
198 #endif
199
200 #define SERVER_PORT_TEXT N_("server port")
201 #define SERVER_PORT_LONGTEXT N_( \
202     "This is the port used for UDP streams. By default, we chose 1234.")
203
204 #define MTU_TEXT N_("MTU of the network interface")
205 #define MTU_LONGTEXT N_( \
206     "This is the typical size of UDP packets that we expect. On Ethernet " \
207     "it is usually 1500.")
208
209 #define NETCHANNEL_TEXT N_("enable network channel mode")
210 #define NETCHANNEL_LONGTEXT N_( \
211     "Activate this option if you want to use the VideoLAN Channel Server.")
212
213 #define CHAN_SERV_TEXT N_("channel server address")
214 #define CHAN_SERV_LONGTEXT N_( \
215     "Indicate here the address of the VideoLAN Channel Server.")
216
217 #define CHAN_PORT_TEXT N_("channel server port")
218 #define CHAN_PORT_LONGTEXT N_( \
219     "Indicate here the port on which the VideoLAN Channel Server runs.")
220
221 #define IFACE_TEXT N_("network interface")
222 #define IFACE_LONGTEXT N_( \
223     "If you have several interfaces on your Linux machine and use the " \
224     "VLAN solution, you may indicate here which interface to use.")
225
226 #define IFACE_ADDR_TEXT N_("network interface address")
227 #define IFACE_ADDR_LONGTEXT N_( \
228     "If you have several interfaces on your machine and use the " \
229     "multicast solution, you will probably have to indicate the IP address " \
230     "of your multicasting interface here.")
231
232 #define INPUT_PROGRAM_TEXT N_("choose program (SID)")
233 #define INPUT_PROGRAM_LONGTEXT N_( \
234     "Choose the program to select by giving its Service ID.")
235
236 #define INPUT_AUDIO_TEXT N_("choose audio")
237 #define INPUT_AUDIO_LONGTEXT N_( \
238     "Give the default type of audio you want to use in a DVD.")
239
240 #define INPUT_CHAN_TEXT N_("choose channel")
241 #define INPUT_CHAN_LONGTEXT N_( \
242     "Give the stream number of the audio channel you want to use in a DVD " \
243     "(from 1 to n).")
244
245 #define INPUT_SUBT_TEXT N_("choose subtitles")
246 #define INPUT_SUBT_LONGTEXT N_( \
247     "Give the stream number of the subtitle channel you want to use in a " \
248     "DVD (from 1 to n).")
249
250 #define DVD_DEV_TEXT N_("DVD device")
251 #ifdef WIN32
252 #define DVD_DEV_LONGTEXT N_( \
253     "This is the default DVD drive (or file) to use. Don't forget the colon " \
254     "after the drive letter (eg D:)")
255 #else
256 #define DVD_DEV_LONGTEXT N_( \
257     "This is the default DVD device to use.")
258 #endif
259
260 #define VCD_DEV_TEXT N_("VCD device")
261 #define VCD_DEV_LONGTEXT N_( \
262     "This is the default VCD device to use.")
263
264 #define IPV6_TEXT N_("force IPv6")
265 #define IPV6_LONGTEXT N_( \
266     "If you check this box, IPv6 will be used by default for all UDP and " \
267     "HTTP connections.")
268
269 #define IPV4_TEXT N_("force IPv4")
270 #define IPV4_LONGTEXT N_( \
271     "If you check this box, IPv4 will be used by default for all UDP and " \
272     "HTTP connections.")
273
274 #define CODEC_TEXT N_("choose prefered codec list")
275 #define CODEC_LONGTEXT N_( \
276     "This allows you to select the order in which vlc will choose its " \
277     "codecs. For instance, 'a52old,a52,any' will try the old a52 codec " \
278     "before the new one. Please be aware that vlc does not make any " \
279     "difference between audio or video codecs, so you should always specify " \
280     "'any' at the end of the list to make sure there is a fallback for the " \
281     "types you didn't specify.")
282
283 #define SOUT_TEXT N_("choose a stream output")
284 #define SOUT_LONGTEXT N_( \
285     "Empty if no stream output.")
286
287 #define SOUT_VIDEO_TEXT N_("enable video stream output")
288 #define SOUT_VIDEO_LONGTEXT N_( \
289     "This allows you to choose if the video stream should be redirected to " \
290     "the stream output facility when this last one is enabled.")
291
292 #define SOUT_AUDIO_TEXT N_("enable audio stream output")
293 #define SOUT_AUDIO_LONGTEXT N_( \
294     "This allows you to choose if the video stream should be redirected to " \
295     "the stream output facility when this last one is enabled.")
296
297 #define PACKETIZER_TEXT N_("choose prefered packetizer list")
298 #define PACKETIZER_LONGTEXT N_( \
299     "This allows you to select the order in which vlc will choose its " \
300     "packetizers."  )
301
302 #define MUX_TEXT N_("mux module")
303 #define MUX_LONGTEXT N_( \
304     "This is a legacy entry to let you configure mux modules")
305
306 #define ACCESS_OUTPUT_TEXT N_("access output module")
307 #define ACCESS_OUTPUT_LONGTEXT N_( \
308     "This is a legacy entry to let you configure access output modules")
309
310
311 #define MMX_TEXT N_("enable CPU MMX support")
312 #define MMX_LONGTEXT N_( \
313     "If your processor supports the MMX instructions set, vlc can take " \
314     "advantage of them.")
315
316 #define THREE_DN_TEXT N_("enable CPU 3D Now! support")
317 #define THREE_DN_LONGTEXT N_( \
318     "If your processor supports the 3D Now! instructions set, vlc can take "\
319     "advantage of them.")
320
321 #define MMXEXT_TEXT N_("enable CPU MMX EXT support")
322 #define MMXEXT_LONGTEXT N_( \
323     "If your processor supports the MMX EXT instructions set, vlc can take "\
324     "advantage of them.")
325
326 #define SSE_TEXT N_("enable CPU SSE support")
327 #define SSE_LONGTEXT N_( \
328     "If your processor supports the SSE instructions set, vlc can take " \
329     "advantage of them.")
330
331 #define ALTIVEC_TEXT N_("enable CPU AltiVec support")
332 #define ALTIVEC_LONGTEXT N_( \
333     "If your processor supports the AltiVec instructions set, vlc can take "\
334     "advantage of them.")
335
336 #define RANDOM_TEXT N_("play files randomly forever")
337 #define RANDOM_LONGTEXT N_( \
338     "When selected, vlc will randomly play files in the playlist until " \
339     "interrupted.")
340
341 #define LAUNCH_TEXT N_("launch playlist on startup")
342 #define LAUNCH_LONGTEXT N_( \
343     "If you want vlc to start playing on startup, then enable this option.")
344
345 #define ENQUEUE_TEXT N_("enqueue items in playlist")
346 #define ENQUEUE_LONGTEXT N_( \
347     "If you want vlc to add items to the playlist as you open them, then " \
348     "enable this option.")
349
350 #define LOOP_TEXT N_("loop playlist on end")
351 #define LOOP_LONGTEXT N_( \
352     "If you want vlc to keep playing the playlist indefinitely then enable " \
353     "this option.")
354
355 #define MEMCPY_TEXT N_("memory copy module")
356 #define MEMCPY_LONGTEXT N_( \
357     "You can select which memory copy module you want to use. By default" \
358     "vlc will select the fastest one supported by your hardware.")
359
360 #define ACCESS_TEXT N_("access module")
361 #define ACCESS_LONGTEXT N_( \
362     "This is a legacy entry to let you configure access modules")
363
364 #define DEMUX_TEXT N_("demux module")
365 #define DEMUX_LONGTEXT N_( \
366     "This is a legacy entry to let you configure demux modules")
367
368 #define FAST_MUTEX_TEXT N_("fast mutex on NT/2K/XP (developers only)")
369 #define FAST_MUTEX_LONGTEXT N_( \
370     "On Windows NT/2K/XP we use a slow mutex implementation but which " \
371     "allows us to correctely implement condition variables. " \
372     "You can also use the faster Win9x implementation but you might " \
373     "experience problems with it.")
374
375 #define WIN9X_CV_TEXT N_("Condition variables implementation for Win9x " \
376     "(developers only)")
377 #define WIN9X_CV_LONGTEXT N_( \
378     "On Windows 9x/Me we use a fast but not correct condition variables " \
379     "implementation (more precisely there is a possibility for a race " \
380     "condition to happen). " \
381     "However it is possible to use slower alternatives which should be more " \
382     "robust. " \
383     "Currently you can choose between implementation 0 (which is the " \
384     "default and the fastest), 1 and 2.")
385
386 #define PLAYLIST_USAGE N_("\nPlaylist items:" \
387     "\n  *.mpg, *.vob                   plain MPEG-1/2 files" \
388     "\n  [dvd:][device][@raw_device][@[title][,[chapter][,angle]]]" \
389     "\n                                 DVD device" \
390     "\n  [vcd:][device][@[title][,[chapter]]" \
391     "\n                                 VCD device" \
392     "\n  udpstream:[@[<bind address>][:<bind port>]]" \
393     "\n                                 UDP stream sent by VLS" \
394     "\n  vlc:pause                      pause execution of " \
395     "playlist items" \
396     "\n  vlc:quit                       quit VLC" \
397     "\n")
398
399 #define SAP_TEXT N_( "Session Announcement Protocol support" )
400 #define SAP_LONGTEXT N_( "Session Announcement Protocol support" )
401
402
403 /*
404  * Quick usage guide for the configuration options:
405  *
406  * add_category_hint( N_(text), N_(longtext) );
407  * add_subcategory_hint( N_(text), N_(longtext) );
408  * add_usage_hint( N_(text) );
409  * add_string( option_name, value, p_callback, N_(text), N_(longtext) );
410  * add_file( option_name, psz_value, p_callback, N_(text), N_(longtext) );
411  * add_module( option_name, psz_value, i_capability, p_callback,
412  *             N_(text), N_(longtext) );
413  * add_integer( option_name, i_value, p_callback, N_(text), N_(longtext) );
414  * add_bool( option_name, b_value, p_callback, N_(text), N_(longtext) );
415  */
416
417 vlc_module_begin();
418     /* Interface options */
419     add_category_hint( N_("Interface"), NULL);
420     add_module_with_short( "intf", 'I', "interface", NULL, NULL,
421                            INTF_TEXT, INTF_LONGTEXT );
422     add_integer_with_short( "verbose", 'v', -1, NULL,
423                             VERBOSE_TEXT, VERBOSE_LONGTEXT );
424     add_bool_with_short( "quiet", 'q', 0, NULL, QUIET_TEXT, QUIET_LONGTEXT );
425     add_bool( "color", 0, NULL, COLOR_TEXT, COLOR_LONGTEXT );
426     add_string( "search-path", NULL, NULL, INTF_PATH_TEXT, INTF_PATH_LONGTEXT );
427     add_string( "plugin-path", NULL, NULL,
428                 PLUGIN_PATH_TEXT, PLUGIN_PATH_LONGTEXT );
429
430     /* Audio options */
431     add_category_hint( N_("Audio"), NULL);
432     add_module_with_short( "aout", 'A', "audio output", NULL, NULL,
433                            AOUT_TEXT, AOUT_LONGTEXT );
434     add_bool( "audio", 1, NULL, AUDIO_TEXT, AUDIO_LONGTEXT );
435     add_integer_with_range( "volume", 256, 0, 1024, NULL, VOLUME_TEXT, VOLUME_LONGTEXT );
436     add_integer( "aout-rate", -1, NULL, AOUT_RATE_TEXT, AOUT_RATE_LONGTEXT );
437     add_integer( "aout-channels", -1, NULL,
438                  AOUT_CHANNELS_TEXT, AOUT_CHANNELS_LONGTEXT );
439     add_integer( "desync", 0, NULL, DESYNC_TEXT, DESYNC_LONGTEXT );
440     add_integer( "audio-format", 0, NULL, FORMAT_TEXT, FORMAT_LONGTEXT );
441     add_bool( "headphone", 0, NULL, HEADPHONE_TEXT, HEADPHONE_LONGTEXT );
442     add_integer( "headphone-dim", 5, NULL, HEADPHONE_DIM_TEXT,
443                  HEADPHONE_DIM_LONGTEXT );
444
445     /* Video options */
446     add_category_hint( N_("Video"), NULL );
447     add_module_with_short( "vout", 'V', "video output", NULL, NULL,
448                            VOUT_TEXT, VOUT_LONGTEXT );
449     add_bool( "video", 1, NULL, VIDEO_TEXT, VIDEO_LONGTEXT );
450     add_integer( "width", -1, NULL, WIDTH_TEXT, WIDTH_LONGTEXT );
451     add_integer( "height", -1, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT );
452     add_float( "zoom", 1, NULL, ZOOM_TEXT, ZOOM_LONGTEXT );
453     add_bool( "grayscale", 0, NULL, GRAYSCALE_TEXT, GRAYSCALE_LONGTEXT );
454     add_bool( "fullscreen", 0, NULL, FULLSCREEN_TEXT, FULLSCREEN_LONGTEXT );
455     add_bool( "overlay", 1, NULL, OVERLAY_TEXT, OVERLAY_LONGTEXT );
456     add_integer( "spumargin", -1, NULL, SPUMARGIN_TEXT, SPUMARGIN_LONGTEXT );
457     add_module( "filter", "video filter", NULL, NULL,
458                 FILTER_TEXT, FILTER_LONGTEXT );
459     add_string( "aspect-ratio", "", NULL,
460                 ASPECT_RATIO_TEXT, ASPECT_RATIO_TEXT );
461 #if 0
462     add_string( "pixel-ratio", "1", NULL, PIXEL_RATIO_TEXT, PIXEL_RATIO_TEXT );
463 #endif
464
465     /* Input options */
466     add_category_hint( N_("Input"), NULL );
467     add_integer( "server-port", 1234, NULL,
468                  SERVER_PORT_TEXT, SERVER_PORT_LONGTEXT );
469     add_bool( "network-channel", 0, NULL,
470               NETCHANNEL_TEXT, NETCHANNEL_LONGTEXT );
471     add_string( "channel-server", "localhost", NULL,
472                 CHAN_SERV_TEXT, CHAN_SERV_LONGTEXT );
473     add_integer( "channel-port", 6010, NULL,
474                  CHAN_PORT_TEXT, CHAN_PORT_LONGTEXT );
475     add_integer( "mtu", 1500, NULL, MTU_TEXT, MTU_LONGTEXT );
476 #ifdef SYS_DARWIN
477     add_string( "iface", "en0", NULL, IFACE_TEXT, IFACE_LONGTEXT );
478 #else
479     add_string( "iface", "eth0", NULL, IFACE_TEXT, IFACE_LONGTEXT );
480 #endif
481     add_string( "iface-addr", "", NULL, IFACE_ADDR_TEXT, IFACE_ADDR_LONGTEXT );
482
483     add_integer( "program", 0, NULL,
484                  INPUT_PROGRAM_TEXT, INPUT_PROGRAM_LONGTEXT );
485     add_integer( "audio-type", -1, NULL,
486                  INPUT_AUDIO_TEXT, INPUT_AUDIO_LONGTEXT );
487     add_integer( "audio-channel", -1, NULL,
488                  INPUT_CHAN_TEXT, INPUT_CHAN_LONGTEXT );
489     add_integer( "spu-channel", -1, NULL,
490                  INPUT_SUBT_TEXT, INPUT_SUBT_LONGTEXT );
491
492     add_string( "dvd", DVD_DEVICE, NULL, DVD_DEV_TEXT, DVD_DEV_LONGTEXT );
493     add_string( "vcd", VCD_DEVICE, NULL, VCD_DEV_TEXT, VCD_DEV_LONGTEXT );
494
495     add_bool_with_short( "ipv6", '6', 0, NULL, IPV6_TEXT, IPV6_LONGTEXT );
496     add_bool_with_short( "ipv4", '4', 0, NULL, IPV4_TEXT, IPV4_LONGTEXT );
497
498     /* Decoder options */
499     add_category_hint( N_("Decoders"), NULL );
500     add_module( "codec", "decoder", NULL, NULL, CODEC_TEXT, CODEC_LONGTEXT );
501
502     /* Stream output options */
503     add_category_hint( N_("Stream output"), NULL );
504     add_module( "packetizer", "packetizer", NULL, NULL,
505                 PACKETIZER_TEXT, PACKETIZER_LONGTEXT );
506     add_module( "mux", "sout mux", NULL, NULL, MUX_TEXT, MUX_LONGTEXT );
507     add_module( "access_output", "sout access", NULL, NULL,
508                 ACCESS_OUTPUT_TEXT, ACCESS_OUTPUT_LONGTEXT );
509     add_string( "sout", NULL, NULL, SOUT_TEXT, SOUT_LONGTEXT );
510     add_bool( "sout-video", 1, NULL, SOUT_VIDEO_TEXT, SOUT_VIDEO_LONGTEXT );
511     add_bool( "sout-audio", 1, NULL, SOUT_AUDIO_TEXT, SOUT_AUDIO_LONGTEXT );
512
513     /* CPU options */
514     add_category_hint( N_("CPU"), NULL );
515 #if defined( __i386__ )
516     add_bool( "mmx", 1, NULL, MMX_TEXT, MMX_LONGTEXT );
517     add_bool( "3dn", 1, NULL, THREE_DN_TEXT, THREE_DN_LONGTEXT );
518     add_bool( "mmxext", 1, NULL, MMXEXT_TEXT, MMXEXT_LONGTEXT );
519     add_bool( "sse", 1, NULL, SSE_TEXT, SSE_LONGTEXT );
520 #endif
521 #if defined( __powerpc__ ) || defined( SYS_DARWIN )
522     add_bool( "altivec", 1, NULL, ALTIVEC_TEXT, ALTIVEC_LONGTEXT );
523 #endif
524
525     /* Playlist options */
526     add_category_hint( N_("Playlist"), NULL );
527     add_bool_with_short( "random", 'Z', 0, NULL, RANDOM_TEXT, RANDOM_LONGTEXT );
528     add_bool( "playlist", 0, NULL, LAUNCH_TEXT, LAUNCH_LONGTEXT );
529     add_bool( "enqueue", 0, NULL, ENQUEUE_TEXT, ENQUEUE_LONGTEXT );
530     add_bool( "loop", 0, NULL, LOOP_TEXT, LOOP_LONGTEXT );
531
532     /* Misc options */
533     add_category_hint( N_("Miscellaneous"), NULL );
534 #if defined( SYS_BEOS )
535     add_bool( "sap", 0, NULL, SAP_TEXT, SAP_LONGTEXT );
536 #else
537     add_bool( "sap", 1, NULL, SAP_TEXT, SAP_LONGTEXT );
538 #endif
539     add_module( "memcpy", "memcpy", NULL, NULL, MEMCPY_TEXT, MEMCPY_LONGTEXT );
540     add_module( "access", "access", NULL, NULL, ACCESS_TEXT, ACCESS_LONGTEXT );
541     add_module( "demux", "demux", NULL, NULL, DEMUX_TEXT, DEMUX_LONGTEXT );
542
543 #if defined(WIN32)
544     add_bool( "fast-mutex", 0, NULL, FAST_MUTEX_TEXT, FAST_MUTEX_LONGTEXT );
545     add_integer( "win9x-cv-method", 0, NULL, WIN9X_CV_TEXT, WIN9X_CV_LONGTEXT );
546 #endif
547
548     /* Usage (mainly useful for cmd line stuff) */
549     add_usage_hint( PLAYLIST_USAGE );
550
551     set_description( N_("main program") );
552     set_capability( "main", 100 );
553 vlc_module_end();
554
555 static module_config_t p_help_config[] =
556 {
557     { CONFIG_ITEM_BOOL, NULL, "help", 'h', N_("print help"),
558       NULL, NULL, 0, 0.0, 0, 0, 0.0, 0.0, NULL, NULL, NULL, VLC_FALSE },
559     { CONFIG_ITEM_BOOL, NULL, "longhelp", 'H', N_("print detailed help"),
560       NULL, NULL, 0, 0.0, 0, 0, 0.0, 0.0, NULL, NULL, NULL, VLC_FALSE },
561     { CONFIG_ITEM_BOOL, NULL, "list", 'l',
562                               N_("print a list of available modules"),
563       NULL, NULL, 0, 0.0, 0, 0, 0.0, 0.0, NULL, NULL, NULL, VLC_FALSE },
564     { CONFIG_ITEM_STRING, NULL, "module", 'p', N_("print help on module"),
565       NULL, NULL, 0, 0.0, 0, 0, 0.0, 0.0, NULL, NULL, NULL, VLC_FALSE },
566     { CONFIG_ITEM_BOOL, NULL, "version", '\0',
567                               N_("print version information"),
568       NULL, NULL, 0, 0.0, 0, 0, 0.0, 0.0, NULL, NULL, NULL, VLC_FALSE },
569     { CONFIG_HINT_END, NULL, NULL, '\0', NULL,
570       NULL, NULL, 0, 0.0, 0, 0, 0.0, 0.0, NULL, NULL, NULL, VLC_FALSE }
571 };
572
573 /*****************************************************************************
574  * End configuration.
575  *****************************************************************************/