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