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