]> git.sesse.net Git - vlc/blob - src/libvlc.h
57c807a695a187a71f614d329c1cf9401b775cc2
[vlc] / src / libvlc.h
1 /*****************************************************************************
2  * libvlc.h: main libvlc header
3  *****************************************************************************
4  * Copyright (C) 1998-2002 VideoLAN
5  * $Id: libvlc.h,v 1.27 2002/12/07 22:29:15 titer 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 VOUT_TEXT N_("video output module")
112 #define VOUT_LONGTEXT N_( \
113     "This option allows you to select the video output method used by vlc. " \
114     "The default behavior is to automatically select the best " \
115     "method available.")
116
117 #define VIDEO_TEXT N_("enable video")
118 #define VIDEO_LONGTEXT N_( \
119     "You can completely disable the video output. In this case the video " \
120     "decoding stage won't be done, which will save some processing power.")
121
122 #define DISPLAY_TEXT N_("display identifier")
123 #define DISPLAY_LONGTEXT N_( \
124     "This is the local display port that will be used for X11 drawing. " \
125     "For instance :0.1.")
126
127 #define WIDTH_TEXT N_("video width")
128 #define WIDTH_LONGTEXT N_( \
129     "You can enforce the video width here. By default vlc will " \
130     "adapt to the video characteristics.")
131
132 #define HEIGHT_TEXT N_("video height")
133 #define HEIGHT_LONGTEXT N_( \
134     "You can enforce the video height here. By default vlc will " \
135     "adapt to the video characteristics.")
136
137 #define ZOOM_TEXT N_("zoom video")
138 #define ZOOM_LONGTEXT N_( \
139     "You can zoom the video by the specified factor.")
140
141 #define GRAYSCALE_TEXT N_("grayscale video output")
142 #define GRAYSCALE_LONGTEXT N_( \
143     "When enabled, the color information from the video won't be decoded " \
144     "(this can also allow you to save some processing power).")
145
146 #define FULLSCREEN_TEXT N_("fullscreen video output")
147 #define FULLSCREEN_LONGTEXT N_( \
148     "If this option is enabled, vlc will always start a video in fullscreen " \
149     "mode.")
150
151 #define OVERLAY_TEXT N_("overlay video output")
152 #define OVERLAY_LONGTEXT N_( \
153     "If enabled, vlc will try to take advantage of the overlay capabilities " \
154     "of your graphic card.")
155
156 #define SPUMARGIN_TEXT N_("force SPU position")
157 #define SPUMARGIN_LONGTEXT N_( \
158     "You can use this option to place the subtitles under the movie, " \
159     "instead of over the movie. Try several positions.")
160
161 #define FILTER_TEXT N_("video filter module")
162 #define FILTER_LONGTEXT N_( \
163     "This will allow you to add a post-processing filter to enhance the " \
164     "picture quality, for instance deinterlacing, or to clone or distort " \
165     "the video window.")
166
167 #define ASPECT_RATIO_TEXT N_("source aspect ratio")
168 #define ASPECT_RATIO_LONGTEXT N_( \
169     "This will force the source aspect ratio. For instance, some DVDs claim " \
170     "to be 16:9 while they are actually 4:3. This can also be used as a " \
171     "hint for VLC when a movie does not have aspect ratio information. " \
172     "Accepted formats are x:y (4:3, 16:9, etc.) expressing the global image " \
173     "aspect, or a float value (1.25, 1.3333, etc.) expressing pixel " \
174     "squareness.")
175
176 #if 0
177 #define PIXEL_RATIO_TEXT N_("destination aspect ratio")
178 #define PIXEL_RATIO_LONGTEXT N_( \
179     "This will force the destination pixel size. By default VLC assumes " \
180     "your pixels are square, unless your hardware has a way to tell it " \
181     "otherwise. This may be used when you output VLC's signal to another " \
182     "device such as a TV set. Accepted format is a float value (1, 1.25, " \
183     "1.3333, etc.) expressing pixel squareness.")
184 #endif
185
186 #define SERVER_PORT_TEXT N_("server port")
187 #define SERVER_PORT_LONGTEXT N_( \
188     "This is the port used for UDP streams. By default, we chose 1234.")
189
190 #define MTU_TEXT N_("MTU of the network interface")
191 #define MTU_LONGTEXT N_( \
192     "This is the typical size of UDP packets that we expect. On Ethernet " \
193     "it is usually 1500.")
194
195 #define NETCHANNEL_TEXT N_("enable network channel mode")
196 #define NETCHANNEL_LONGTEXT N_( \
197     "Activate this option if you want to use the VideoLAN Channel Server.")
198
199 #define CHAN_SERV_TEXT N_("channel server address")
200 #define CHAN_SERV_LONGTEXT N_( \
201     "Indicate here the address of the VideoLAN Channel Server.")
202
203 #define CHAN_PORT_TEXT N_("channel server port")
204 #define CHAN_PORT_LONGTEXT N_( \
205     "Indicate here the port on which the VideoLAN Channel Server runs.")
206
207 #define IFACE_TEXT N_("network interface")
208 #define IFACE_LONGTEXT N_( \
209     "If you have several interfaces on your Linux machine and use the " \
210     "VLAN solution, you may indicate here which interface to use.")
211
212 #define IFACE_ADDR_TEXT N_("network interface address")
213 #define IFACE_ADDR_LONGTEXT N_( \
214     "If you have several interfaces on your machine and use the " \
215     "multicast solution, you will probably have to indicate the IP address " \
216     "of your multicasting interface here.")
217
218 #define INPUT_PROGRAM_TEXT N_("choose program (SID)")
219 #define INPUT_PROGRAM_LONGTEXT N_( \
220     "Choose the program to select by giving its Service ID.")
221
222 #define INPUT_AUDIO_TEXT N_("choose audio")
223 #define INPUT_AUDIO_LONGTEXT N_( \
224     "Give the default type of audio you want to use in a DVD.")
225
226 #define INPUT_CHAN_TEXT N_("choose channel")
227 #define INPUT_CHAN_LONGTEXT N_( \
228     "Give the stream number of the audio channel you want to use in a DVD " \
229     "(from 1 to n).")
230
231 #define INPUT_SUBT_TEXT N_("choose subtitles")
232 #define INPUT_SUBT_LONGTEXT N_( \
233     "Give the stream number of the subtitle channel you want to use in a " \
234     "DVD (from 1 to n).")
235
236 #define DVD_DEV_TEXT N_("DVD device")
237 #ifdef WIN32
238 #define DVD_DEV_LONGTEXT N_( \
239     "This is the default DVD drive (or file) to use. Don't forget the colon " \
240     "after the drive letter (eg D:)")
241 #else
242 #define DVD_DEV_LONGTEXT N_( \
243     "This is the default DVD device to use.")
244 #endif
245
246 #define VCD_DEV_TEXT N_("VCD device")
247 #define VCD_DEV_LONGTEXT N_( \
248     "This is the default VCD device to use.")
249
250 #define IPV6_TEXT N_("force IPv6")
251 #define IPV6_LONGTEXT N_( \
252     "If you check this box, IPv6 will be used by default for all UDP and " \
253     "HTTP connections.")
254
255 #define IPV4_TEXT N_("force IPv4")
256 #define IPV4_LONGTEXT N_( \
257     "If you check this box, IPv4 will be used by default for all UDP and " \
258     "HTTP connections.")
259
260 #define CODEC_TEXT N_("choose prefered codec list")
261 #define CODEC_LONGTEXT N_( \
262     "This allows you to select the order in which vlc will choose its " \
263     "codecs. For instance, 'a52old,a52,any' will try the old a52 codec " \
264     "before the new one. Please be aware that vlc does not make any " \
265     "difference between audio or video codecs, so you should always specify " \
266     "'any' at the end of the list to make sure there is a fallback for the " \
267     "types you didn't specify.")
268
269 #define SOUT_TEXT N_("choose a stream output")
270 #define SOUT_LONGTEXT N_( \
271     "Empty if no stream output.")
272
273 #define MMX_TEXT N_("enable CPU MMX support")
274 #define MMX_LONGTEXT N_( \
275     "If your processor supports the MMX instructions set, vlc can take " \
276     "advantage of them.")
277
278 #define THREE_DN_TEXT N_("enable CPU 3D Now! support")
279 #define THREE_DN_LONGTEXT N_( \
280     "If your processor supports the 3D Now! instructions set, vlc can take "\
281     "advantage of them.")
282
283 #define MMXEXT_TEXT N_("enable CPU MMX EXT support")
284 #define MMXEXT_LONGTEXT N_( \
285     "If your processor supports the MMX EXT instructions set, vlc can take "\
286     "advantage of them.")
287
288 #define SSE_TEXT N_("enable CPU SSE support")
289 #define SSE_LONGTEXT N_( \
290     "If your processor supports the SSE instructions set, vlc can take " \
291     "advantage of them.")
292
293 #define ALTIVEC_TEXT N_("enable CPU AltiVec support")
294 #define ALTIVEC_LONGTEXT N_( \
295     "If your processor supports the AltiVec instructions set, vlc can take "\
296     "advantage of them.")
297
298 #define RANDOM_TEXT N_("play files randomly forever")
299 #define RANDOM_LONGTEXT N_( \
300     "When selected, vlc will randomly play files in the playlist until " \
301     "interrupted.")
302
303 #define LAUNCH_TEXT N_("launch playlist on startup")
304 #define LAUNCH_LONGTEXT N_( \
305     "If you want vlc to start playing on startup, then enable this option.")
306
307 #define ENQUEUE_TEXT N_("enqueue items in playlist")
308 #define ENQUEUE_LONGTEXT N_( \
309     "If you want vlc to add items to the playlist as you open them, then " \
310     "enable this option.")
311
312 #define LOOP_TEXT N_("loop playlist on end")
313 #define LOOP_LONGTEXT N_( \
314     "If you want vlc to keep playing the playlist indefinitely then enable " \
315     "this option.")
316
317 #define MEMCPY_TEXT N_("memory copy module")
318 #define MEMCPY_LONGTEXT N_( \
319     "You can select which memory copy module you want to use. By default" \
320     "vlc will select the fastest one supported by your hardware.")
321
322 #define ACCESS_TEXT N_("access module")
323 #define ACCESS_LONGTEXT N_( \
324     "This is a legacy entry to let you configure access modules")
325
326 #define DEMUX_TEXT N_("demux module")
327 #define DEMUX_LONGTEXT N_( \
328     "This is a legacy entry to let you configure demux modules")
329
330 #define FAST_MUTEX_TEXT N_("fast mutex on NT/2K/XP (developers only)")
331 #define FAST_MUTEX_LONGTEXT N_( \
332     "On Windows NT/2K/XP we use a slow mutex implementation but which " \
333     "allows us to correctely implement condition variables. " \
334     "You can also use the faster Win9x implementation but you might " \
335     "experience problems with it.")
336
337 #define WIN9X_CV_TEXT N_("Condition variables implementation for Win9x " \
338     "(developers only)")
339 #define WIN9X_CV_LONGTEXT N_( \
340     "On Windows 9x/Me we use a fast but not correct condition variables " \
341     "implementation (more precisely there is a possibility for a race " \
342     "condition to happen). " \
343     "However it is possible to use slower alternatives which should be more " \
344     "robust. " \
345     "Currently you can choose between implementation 0 (which is the " \
346     "default and the fastest), 1 and 2.")
347
348 #define PLAYLIST_USAGE N_("\nPlaylist items:" \
349     "\n  *.mpg, *.vob                   plain MPEG-1/2 files" \
350     "\n  [dvd:][device][@raw_device][@[title][,[chapter][,angle]]]" \
351     "\n                                 DVD device" \
352     "\n  [vcd:][device][@[title][,[chapter]]" \
353     "\n                                 VCD device" \
354     "\n  udpstream:[@[<bind address>][:<bind port>]]" \
355     "\n                                 UDP stream sent by VLS" \
356     "\n  vlc:pause                      pause execution of " \
357     "playlist items" \
358     "\n  vlc:quit                       quit VLC" \
359     "\n")
360
361 #define SAP_TEXT N_( "Session Announcement Protocol support" )
362 #define SAP_LONGTEXT N_( "Session Announcement Protocol support" )
363
364
365 /*
366  * Quick usage guide for the configuration options:
367  *
368  * add_category_hint( N_(text), N_(longtext) );
369  * add_subcategory_hint( N_(text), N_(longtext) );
370  * add_usage_hint( N_(text) );
371  * add_string( option_name, value, p_callback, N_(text), N_(longtext) );
372  * add_file( option_name, psz_value, p_callback, N_(text), N_(longtext) );
373  * add_module( option_name, psz_value, i_capability, p_callback,
374  *             N_(text), N_(longtext) );
375  * add_integer( option_name, i_value, p_callback, N_(text), N_(longtext) );
376  * add_bool( option_name, b_value, p_callback, N_(text), N_(longtext) );
377  */
378
379 vlc_module_begin();
380     /* Interface options */
381     add_category_hint( N_("Interface"), NULL);
382     add_module_with_short( "intf", 'I', "interface", NULL, NULL,
383                            INTF_TEXT, INTF_LONGTEXT );
384     add_integer_with_short( "verbose", 'v', -1, NULL,
385                             VERBOSE_TEXT, VERBOSE_LONGTEXT );
386     add_bool_with_short( "quiet", 'q', 0, NULL, QUIET_TEXT, QUIET_LONGTEXT );
387     add_bool( "color", 0, NULL, COLOR_TEXT, COLOR_LONGTEXT );
388     add_string( "search-path", NULL, NULL, INTF_PATH_TEXT, INTF_PATH_LONGTEXT );
389     add_string( "plugin-path", NULL, NULL,
390                 PLUGIN_PATH_TEXT, PLUGIN_PATH_LONGTEXT );
391
392     /* Audio options */
393     add_category_hint( N_("Audio"), NULL);
394     add_module_with_short( "aout", 'A', "audio output", NULL, NULL,
395                            AOUT_TEXT, AOUT_LONGTEXT );
396     add_bool( "audio", 1, NULL, AUDIO_TEXT, AUDIO_LONGTEXT );
397     add_integer( "volume", -1, NULL, VOLUME_TEXT, VOLUME_LONGTEXT );
398     add_integer( "aout-rate", -1, NULL, AOUT_RATE_TEXT, AOUT_RATE_LONGTEXT );
399     add_integer( "aout-channels", -1, NULL,
400                  AOUT_CHANNELS_TEXT, AOUT_CHANNELS_LONGTEXT );
401     add_integer( "desync", 0, NULL, DESYNC_TEXT, DESYNC_LONGTEXT );
402     add_integer( "audio-format", 0, NULL, FORMAT_TEXT, FORMAT_LONGTEXT );
403
404     /* Video options */
405     add_category_hint( N_("Video"), NULL );
406     add_module_with_short( "vout", 'V', "video output", NULL, NULL,
407                            VOUT_TEXT, VOUT_LONGTEXT );
408     add_bool( "video", 1, NULL, VIDEO_TEXT, VIDEO_LONGTEXT );
409     add_integer( "width", -1, NULL, WIDTH_TEXT, WIDTH_LONGTEXT );
410     add_integer( "height", -1, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT );
411     add_float( "zoom", 1, NULL, ZOOM_TEXT, ZOOM_LONGTEXT );
412     add_bool( "grayscale", 0, NULL, GRAYSCALE_TEXT, GRAYSCALE_LONGTEXT );
413     add_bool( "fullscreen", 0, NULL, FULLSCREEN_TEXT, FULLSCREEN_LONGTEXT );
414     add_bool( "overlay", 1, NULL, OVERLAY_TEXT, OVERLAY_LONGTEXT );
415     add_integer( "spumargin", -1, NULL, SPUMARGIN_TEXT, SPUMARGIN_LONGTEXT );
416     add_module( "filter", "video filter", NULL, NULL,
417                 FILTER_TEXT, FILTER_LONGTEXT );
418     add_string( "aspect-ratio", "", NULL,
419                 ASPECT_RATIO_TEXT, ASPECT_RATIO_TEXT );
420 #if 0
421     add_string( "pixel-ratio", "1", NULL, PIXEL_RATIO_TEXT, PIXEL_RATIO_TEXT );
422 #endif
423
424     /* Input options */
425     add_category_hint( N_("Input"), NULL );
426     add_integer( "server-port", 1234, NULL,
427                  SERVER_PORT_TEXT, SERVER_PORT_LONGTEXT );
428     add_bool( "network-channel", 0, NULL,
429               NETCHANNEL_TEXT, NETCHANNEL_LONGTEXT );
430     add_string( "channel-server", "localhost", NULL,
431                 CHAN_SERV_TEXT, CHAN_SERV_LONGTEXT );
432     add_integer( "channel-port", 6010, NULL,
433                  CHAN_PORT_TEXT, CHAN_PORT_LONGTEXT );
434     add_integer( "mtu", 1500, NULL, MTU_TEXT, MTU_LONGTEXT );
435 #ifdef SYS_DARWIN
436     add_string( "iface", "en0", NULL, IFACE_TEXT, IFACE_LONGTEXT );
437 #else
438     add_string( "iface", "eth0", NULL, IFACE_TEXT, IFACE_LONGTEXT );
439 #endif
440     add_string( "iface-addr", "", NULL, IFACE_ADDR_TEXT, IFACE_ADDR_LONGTEXT );
441
442     add_integer( "program", 0, NULL,
443                  INPUT_PROGRAM_TEXT, INPUT_PROGRAM_LONGTEXT );
444     add_integer( "audio-type", -1, NULL,
445                  INPUT_AUDIO_TEXT, INPUT_AUDIO_LONGTEXT );
446     add_integer( "audio-channel", -1, NULL,
447                  INPUT_CHAN_TEXT, INPUT_CHAN_LONGTEXT );
448     add_integer( "spu-channel", -1, NULL,
449                  INPUT_SUBT_TEXT, INPUT_SUBT_LONGTEXT );
450
451     add_string( "dvd", DVD_DEVICE, NULL, DVD_DEV_TEXT, DVD_DEV_LONGTEXT );
452     add_string( "vcd", VCD_DEVICE, NULL, VCD_DEV_TEXT, VCD_DEV_LONGTEXT );
453
454     add_bool_with_short( "ipv6", '6', 0, NULL, IPV6_TEXT, IPV6_LONGTEXT );
455     add_bool_with_short( "ipv4", '4', 0, NULL, IPV4_TEXT, IPV4_LONGTEXT );
456
457     /* Decoder options */
458     add_category_hint( N_("Decoders"), NULL );
459     add_module( "codec", "decoder", NULL, NULL, CODEC_TEXT, CODEC_LONGTEXT );
460
461     /* CPU options */
462     add_category_hint( N_("CPU"), NULL );
463 #if defined( __i386__ )
464     add_bool( "mmx", 1, NULL, MMX_TEXT, MMX_LONGTEXT );
465     add_bool( "3dn", 1, NULL, THREE_DN_TEXT, THREE_DN_LONGTEXT );
466     add_bool( "mmxext", 1, NULL, MMXEXT_TEXT, MMXEXT_LONGTEXT );
467     add_bool( "sse", 1, NULL, SSE_TEXT, SSE_LONGTEXT );
468 #endif
469 #if defined( __powerpc__ ) || defined( SYS_DARWIN )
470     add_bool( "altivec", 1, NULL, ALTIVEC_TEXT, ALTIVEC_LONGTEXT );
471 #endif
472
473     /* Playlist options */
474     add_category_hint( N_("Playlist"), NULL );
475     add_bool_with_short( "random", 'Z', 0, NULL, RANDOM_TEXT, RANDOM_LONGTEXT );
476     add_bool( "playlist", 0, NULL, LAUNCH_TEXT, LAUNCH_LONGTEXT );
477     add_bool( "enqueue", 0, NULL, ENQUEUE_TEXT, ENQUEUE_LONGTEXT );
478     add_bool( "loop", 0, NULL, LOOP_TEXT, LOOP_LONGTEXT );
479
480     /* Misc options */
481     add_category_hint( N_("Miscellaneous"), NULL );
482 #if defined( SYS_BEOS )
483     add_bool( "sap", 0, NULL, SAP_TEXT, SAP_LONGTEXT );
484 #else
485     add_bool( "sap", 1, NULL, SAP_TEXT, SAP_LONGTEXT );
486 #endif
487     add_module( "memcpy", "memcpy", NULL, NULL, MEMCPY_TEXT, MEMCPY_LONGTEXT );
488     add_module( "access", "access", NULL, NULL, ACCESS_TEXT, ACCESS_LONGTEXT );
489     add_module( "demux", "demux", NULL, NULL, DEMUX_TEXT, DEMUX_LONGTEXT );
490     add_string( "sout", NULL, NULL, SOUT_TEXT, SOUT_LONGTEXT );
491
492 #if defined(WIN32)
493     add_bool( "fast-mutex", 0, NULL, FAST_MUTEX_TEXT, FAST_MUTEX_LONGTEXT );
494     add_integer( "win9x-cv-method", 0, NULL, WIN9X_CV_TEXT, WIN9X_CV_LONGTEXT );
495 #endif
496
497     /* Usage (mainly useful for cmd line stuff) */
498     add_usage_hint( PLAYLIST_USAGE );
499
500     set_description( N_("main program") );
501     set_capability( "main", 100 );
502 vlc_module_end();
503
504 static module_config_t p_help_config[] =
505 {
506     { CONFIG_ITEM_BOOL, NULL, "help", 'h', N_("print help"),
507       NULL, NULL, 0, 0.0, NULL, NULL, NULL, VLC_FALSE },
508     { CONFIG_ITEM_BOOL, NULL, "longhelp", 'H', N_("print detailed help"),
509       NULL, NULL, 0, 0.0, NULL, NULL, NULL, VLC_FALSE },
510     { CONFIG_ITEM_BOOL, NULL, "list", 'l',
511                               N_("print a list of available modules"),
512       NULL, NULL, 0, 0.0, NULL, NULL, NULL, VLC_FALSE },
513     { CONFIG_ITEM_STRING, NULL, "module", 'p', N_("print help on module"),
514       NULL, NULL, 0, 0.0, NULL, NULL, NULL, VLC_FALSE },
515     { CONFIG_ITEM_BOOL, NULL, "version", '\0',
516                               N_("print version information"),
517       NULL, NULL, 0, 0.0, NULL, NULL, NULL, VLC_FALSE },
518     { CONFIG_HINT_END, NULL, NULL, '\0', NULL,
519       NULL, NULL, 0, 0.0, NULL, NULL, NULL, VLC_FALSE }
520 };
521
522 /*****************************************************************************
523  * End configuration.
524  *****************************************************************************/