]> git.sesse.net Git - vlc/blob - include/config.h.in
5ea4e4dfef5083d51e25114355f83ace4dd28acc
[vlc] / include / config.h.in
1 /*****************************************************************************
2  * config.h: limits and configuration
3  * Defines all compilation-time configuration constants and size limits
4  *****************************************************************************
5  * Copyright (C) 1999, 2000 VideoLAN
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /* Conventions regarding names of symbols and variables
26  * ----------------------------------------------------
27  *
28  * - Symbols should begin with a prefix indicating in which module they are
29  *   used, such as INTF_, VOUT_ or ADEC_.
30  *
31  * - Regarding environment variables, which are used as initialization
32  *  parameters for threads :
33  *   + variable names should end with '_VAR'
34  *   + environment variable default value should end with '_DEFAULT'
35  *   + values having a special meaning with '_VAL'
36  *
37  */
38
39 /*****************************************************************************
40  * Program information
41  *****************************************************************************/
42
43 /* Program version and copyright message */
44 #define VERSION_MESSAGE     "vlc @VLC_VERSION@ @VLC_CODENAME@ " \
45                           /* "(" PROGRAM_BUILD ") (" PROGRAM_OPTIONS ")\n" */ \
46                             "Copyright 1996-2000 VideoLAN\n"
47 #define COPYRIGHT_MESSAGE   "VideoLAN Client - version @VLC_VERSION@" \
48                             " @VLC_CODENAME@ - (c)1996-2000 VideoLAN\n"
49
50 #define VERSION             "@VLC_VERSION@"
51
52 /*****************************************************************************
53  * General compilation options
54  *****************************************************************************/
55
56 /* Define for DVB support - Note that some extensions or restrictions may be
57  * incompatible with native MPEG2 streams */
58 //#define DVB_EXTENSIONS
59 //#define DVB_RESTRICTIONS
60
61 /* Define to disable some obscure heuristics behind the video_parser and the
62  * video_decoder that improve performance but are not fully MPEG2 compliant
63  * and might cause problems with some very weird streams. */
64 //#define MPEG2_COMPLIANT
65
66 /* Define for profiling and statistics support - such informations, like FPS
67  * or pictures count won't be available if it not set */
68 /* #define STATS --moved in Makefile */
69
70 /* Define for unthreaded version of the program FIXME: not yet implemented ??*/
71 //#define NO_THREAD
72
73 /*****************************************************************************
74  * Debugging options - define or undefine symbols
75  *****************************************************************************/
76 #if DEBUG == 1
77 /* General debugging support, which depends of the DEBUG define, is determined
78  * in the Makefile */
79
80 /* Modules specific debugging - this will produce a lot of output, but can be
81  * usefull to track a bug */
82 //#define DEBUG_INTF
83 //#define DEBUG_INPUT
84 //#define DEBUG_AUDIO
85 #define DEBUG_VOUT
86 #define DEBUG_VPAR
87
88 /* Debugging log file - if defined, a file can be used to store all messages. If
89  * DEBUG_LOG_ONLY is defined, debug messages will only be printed to the log and
90  * will not appear on the screen */
91 #define DEBUG_LOG                       "vlc-debug.log"
92 #define DEBUG_LOG_ONLY
93
94 #endif
95
96 /*****************************************************************************
97  * General configuration
98  *****************************************************************************/
99
100 #define CLOCK_FREQ 1000000
101
102
103 /* Automagically spawn input, audio and video threads ? */
104 /* XXX?? used ? */
105 #define AUTO_SPAWN
106
107 /* When creating or destroying threads in blocking mode, delay to poll thread
108  * status */
109 #define THREAD_SLEEP                    ((int)(0.010*CLOCK_FREQ))
110
111 /*
112  * Decoders FIFO configuration
113  */
114
115 /* Size of the FIFO. FIFO_SIZE+1 must be a power of 2 */
116 #define FIFO_SIZE                       1023
117
118 /*
119  * Paths
120  */
121
122 #define DATA_PATH                       "@prefix@/share/videolan"
123 #define PLUGIN_PATH                     "@prefix@/lib/videolan/vlc"
124
125 #define MAX_PLUGIN_COUNT                32
126
127 /*****************************************************************************
128  * Interface configuration
129  *****************************************************************************/
130
131 /* Environment variable used to store startup script name and default value */
132 #define INTF_INIT_SCRIPT_VAR            "vlcrc"
133 #define INTF_INIT_SCRIPT_DEFAULT        ".vlcrc"
134
135 /* Environment variable used to store channels file and default value */
136 #define INTF_CHANNELS_VAR               "vlc_channels"
137 #define INTF_CHANNELS_DEFAULT           "vlc.channels"
138
139 /* Base delay in micro second for interface sleeps */
140 #define INTF_IDLE_SLEEP                 ((int)(0.100*CLOCK_FREQ))
141
142 /* Step for changing gamma, and minimum and maximum values */
143 #define INTF_GAMMA_STEP                 .1
144 #define INTF_GAMMA_LIMIT                3
145
146 /* Maximum number of channels */
147 #define INTF_MAX_CHANNELS               10
148
149 /*
150  * X11 settings
151  */
152
153 /* Title of the X11 window */
154 #define VOUT_TITLE                      "VideoLAN Client"
155
156 /*****************************************************************************
157  * Input thread configuration
158  *****************************************************************************/
159
160 /* XXX?? */
161 #define INPUT_IDLE_SLEEP                ((int)(0.100*CLOCK_FREQ))
162
163 /*
164  * General limitations
165  */
166
167 /* Broadcast address, in case of a broadcasted stream */
168 #define INPUT_BCAST_ADDR                "138.195.143.255"
169
170 /* Maximum number of input threads - this value is used exclusively by
171  * interface, and is in fact an interface limitation */
172 #define INPUT_MAX_THREADS               10
173
174 /* Maximum number of programs definitions in a TS stream */
175 #define INPUT_MAX_PGRM                  10
176
177 /* Maximum number of ES definitions in a TS stream */
178 #define INPUT_MAX_ES                    10
179
180 /* Maximum number of ES in a single program */
181 #define INPUT_MAX_PROGRAM_ES            10
182
183 /* Maximum number of selected ES in an input thread */
184 #define INPUT_MAX_SELECTED_ES           10
185
186 /* Maximum number of TS packets in the client at any time
187  * INPUT_MAX_TS + 1 must be a power of 2, to optimize the %(INPUT_MAX_TS+1)
188  * operation with a &INPUT_MAX_TS in the case of a fifo netlist.
189  * It should be > number of fifos * FIFO_SIZE to avoid input deadlock. */
190 #define INPUT_MAX_TS                    32767     /* INPUT_MAX_TS + 1 = 2^15 */
191
192 /* Same thing with PES packets */
193 #define INPUT_MAX_PES                   16383
194
195 /* Maximum number of TS packets we read from the socket in one readv().
196  * Since you can't put more than 7 TS packets in an Ethernet frame,
197  * the maximum value is 7. This number should also limit the stream server,
198  * otherwise any supplementary packet is lost. */
199 #define INPUT_TS_READ_ONCE              7
200
201 /* Use a LIFO or FIFO for TS netlist ? */
202 #undef INPUT_LIFO_TS_NETLIST
203
204 /* Use a LIFO or FIFO for PES netlist ? */
205 #undef INPUT_LIFO_PES_NETLIST
206
207 /* Maximum length of a hostname or source name */
208 #define INPUT_MAX_SOURCE_LENGTH         100
209
210 /* Default remote server */
211 #define INPUT_SERVER_VAR                "vlc_server"
212 #define INPUT_SERVER_DEFAULT            "138.195.143.220"
213
214 /* Default input port */
215 #define INPUT_PORT_VAR                  "vlc_server_port"
216 #define INPUT_PORT_DEFAULT              1234
217
218 /* Broadcast mode */
219 #define INPUT_BROADCAST_VAR             "vlc_broadcast"
220 #define INPUT_BROADCAST_DEFAULT         0
221
222 /*
223  * Vlan method
224  */
225
226 /* Default network interface and environment variable */
227 #define INPUT_IFACE_VAR                 "vlc_iface"
228 #define INPUT_IFACE_DEFAULT             "eth0"
229
230 /* Default server and port */
231 #define INPUT_VLAN_SERVER_VAR           "vlc_vlan_server"
232 #define INPUT_VLAN_SERVER_DEFAULT       "138.195.139.95"
233 #define INPUT_VLAN_PORT_VAR             "vlc_vlan_port"
234 #define INPUT_VLAN_PORT_DEFAULT         6010
235
236 /* Delay between vlan changes - this is required to avoid flooding the VLAN
237  * server */
238 #define INPUT_VLAN_CHANGE_DELAY         (5*CLOCK_FREQ)
239
240 /* Duration between the time we receive the TS packet, and the time we will
241  * mark it to be presented */
242 #define DEFAULT_PTS_DELAY               (.5*CLOCK_FREQ)
243
244 #define INPUT_DVD_AUDIO_VAR             "vlc_dvd_audio"
245 #define INPUT_DVD_CHANNEL_VAR           "vlc_dvd_channel"
246 #define INPUT_DVD_SUBTITLE_VAR          "vlc_dvd_subtitle"
247
248 /*****************************************************************************
249  * Audio configuration
250  *****************************************************************************/
251
252 /* Environment variable containing the audio output method */
253 #define AOUT_METHOD_VAR                 "vlc_aout"
254
255 /* The fallback method */
256 #define AOUT_DEFAULT_METHOD             "dsp"
257
258 /* Environment variable used to store dsp device name, and default value */
259 #define AOUT_DSP_VAR                    "vlc_dsp"
260 #define AOUT_DSP_DEFAULT                "/dev/dsp"
261
262 /* Default audio output format (AOUT_FMT_S16_NE = Native Endianess) */
263 #define AOUT_FORMAT_DEFAULT             AOUT_FMT_S16_NE
264 /* #define AOUT_FORMAT_DEFAULT          AOUT_FMT_S8 */
265 /* #define AOUT_FORMAT_DEFAULT          AOUT_FMT_U8 */
266 /* #define AOUT_FORMAT_DEFAULT          AOUT_FMT_S16_BE */
267 /* #define AOUT_FORMAT_DEFAULT          AOUT_FMT_S16_LE */
268 /* #define AOUT_FORMAT_DEFAULT          AOUT_FMT_U16_BE */
269 /* #define AOUT_FORMAT_DEFAULT          AOUT_FMT_U16_LE */
270
271 /* Environment variable for stereo, and default value */
272 #define AOUT_STEREO_VAR                 "vlc_stereo"
273 #define AOUT_STEREO_DEFAULT             1
274
275 /* Volume */
276 #define VOLUME_DEFAULT                  256
277 #define VOLUME_STEP                     5
278 #define VOLUME_MAX                      765
279
280 /* Environment variable for output rate, and default value */
281 #define AOUT_RATE_VAR                   "vlc_audio_rate"
282 #define AOUT_RATE_DEFAULT               44100
283
284 /* Number of audio output frames contained in an audio output fifo.
285  * (AOUT_FIFO_SIZE + 1) must be a power of 2, in order to optimise the
286  * %(AOUT_FIFO_SIZE + 1) operation with an &AOUT_FIFO_SIZE.
287  * With 511 we have at least 511*384/2/48000=2 seconds of sound */
288 #define AOUT_FIFO_SIZE                  511
289
290 /* Maximum number of audio fifos. The value of AOUT_MAX_FIFOS should be a power
291  * of two, in order to optimize the '/AOUT_MAX_FIFOS' and '*AOUT_MAX_FIFOS'
292  * operations with '>>' and '<<' (gcc changes this at compilation-time) */
293 #define AOUT_MAX_FIFOS                  2
294
295 /* Duration (in microseconds) of an audio output buffer should be :
296  * - short, in order to be able to play a new song very quickly (especially a
297  *   song from the interface)
298  * - long, in order to perform the buffer calculations as few as possible */
299 #define AOUT_BUFFER_DURATION            100000
300
301 /*****************************************************************************
302  * Video configuration
303  *****************************************************************************/
304
305 /*
306  * Default settings for video output threads
307  */
308
309 /* Environment variable containing the display method */
310 #define VOUT_METHOD_VAR                 "vlc_vout"
311
312 /* Environment variable containing the YUV method */
313 #define YUV_METHOD_VAR                  "vlc_yuv"
314
315 /* The fallback method */
316 #define VOUT_DEFAULT_METHOD             "x11"
317
318 /* Environment variable used in place of DISPLAY if available */
319 #define VOUT_DISPLAY_VAR                "vlc_display"
320
321 /* Default dimensions for display window - these dimensions are enough for the
322  * standard width and height broadcasted MPEG-2 streams or DVDs */
323 #define VOUT_WIDTH_VAR                  "vlc_width"
324 #define VOUT_HEIGHT_VAR                 "vlc_height"
325 #define VOUT_WIDTH_DEFAULT              720
326 #define VOUT_HEIGHT_DEFAULT             576
327
328 /* Maximum width of a scaled source picture - this should be relatively high,
329  * since higher stream values will result in no display at all. */
330 #define VOUT_MAX_WIDTH                  4096
331
332 /* Video heap size - remember that a decompressed picture is big
333  * (~1 Mbyte) before using huge values */
334 #define VOUT_MAX_PICTURES               10
335
336 /* Number of simultaneous subpictures */
337 #define VOUT_MAX_SUBPICTURES            10
338
339 /* Maximum number of active areas in a rendering buffer. Active areas are areas
340  * of the picture which need to be cleared before re-using the buffer. If a
341  * picture, including its many additions such as subtitles, additionnal user
342  * informations and interface, has too many active areas, some of them are
343  * joined. */
344 #define VOUT_MAX_AREAS                  5
345
346 /* Environment variable for grayscale output mode, and default value */
347 #define VOUT_GRAYSCALE_VAR              "vlc_grayscale"
348 #define VOUT_GRAYSCALE_DEFAULT          0
349
350 /* Default gamma */
351 #define VOUT_GAMMA                      0.
352
353 /* Default fonts */
354 #define VOUT_DEFAULT_FONT               "default8x9.psf"
355 #define VOUT_LARGE_FONT                 "default8x16.psf"
356
357 /* Statistics are displayed every n loops (=~ pictures) */
358 #define VOUT_STATS_NB_LOOPS             100
359
360 /*
361  * Time settings
362  */
363
364 /* Time during which the thread will sleep if it has nothing to
365  * display (in micro-seconds) */
366 #define VOUT_IDLE_SLEEP                 ((int)(0.020*CLOCK_FREQ))
367
368 /* Maximum lap of time allowed between the beginning of rendering and
369  * display. If, compared to the current date, the next image is too
370  * late, the thread will perform an idle loop. This time should be
371  * at least VOUT_IDLE_SLEEP plus the time required to render a few
372  * images, to avoid trashing of decoded images */
373 #define VOUT_DISPLAY_DELAY              ((int)(0.500*CLOCK_FREQ))
374
375 /* Delay (in microseconds) before an idle screen is displayed */
376 #define VOUT_IDLE_DELAY                 (5*CLOCK_FREQ)
377
378 /* Number of pictures required to computes the FPS rate */
379 #define VOUT_FPS_SAMPLES                20
380
381 /* Better be in advance when awakening than late... */
382 #define VOUT_MWAIT_TOLERANCE            ((int)(0.020*CLOCK_FREQ))
383
384 /*
385  * Framebuffer settings
386  */
387
388 /* Environment variable for framebuffer device, and default value */
389 #define VOUT_FB_DEV_VAR                 "vlc_fb_dev"
390 #define VOUT_FB_DEV_DEFAULT             "/dev/fb0"
391
392 /* Some frame buffers aren't able to support double buffering.
393  * We don't want to lose one frame out of 2, so we may set the
394  * FB_NOYPAN
395  */
396 // #define FB_NOYPAN
397    
398
399 /*****************************************************************************
400  * Video parser configuration
401  *****************************************************************************/
402
403 #define VPAR_IDLE_SLEEP                 ((int)(0.010*CLOCK_FREQ))
404
405 /* Time to sleep when waiting for a buffer (from vout or the video fifo).
406  * It should be approximately the time needed to perform a complete picture
407  * loop. Since it only happens when the video heap is full, it does not need
408  * to be too low, even if it blocks the decoder. */
409 #define VPAR_OUTMEM_SLEEP               ((int)(0.020*CLOCK_FREQ))
410
411 /* Optimization level, from 0 to 2 - 1 is generally a good compromise. Remember
412  * that raising this level dramatically lengthens the compilation time. */
413 #define VPAR_OPTIM_LEVEL                2
414
415 /* The following directives only apply if you define VDEC_SMP below. */
416
417 /* Number of macroblock buffers available. It should be always greater than
418  * twice the number of macroblocks in a picture. VFIFO_SIZE + 1 should also
419  * be a power of two. */
420 #define VFIFO_SIZE                      8191
421
422 /* Maximum number of macroblocks in a picture. */
423 #define MAX_MB                          2048
424
425 /* The synchro variable name */
426 #define VPAR_SYNCHRO_VAR                "vlc_synchro"
427
428 /*****************************************************************************
429  * Video decoder configuration
430  *****************************************************************************/
431
432 //#define VDEC_SMP
433
434 #define VDEC_IDLE_SLEEP                 ((int)(0.100*CLOCK_FREQ))
435
436 /* Number of video_decoder threads to launch on startup of the video_parser.
437  * It should always be less than half the number of macroblocks of a
438  * picture. Only available if you defined VDEC_SMP above. */
439 #define NB_VDEC                         1
440
441 /* Maximum range of values out of the IDCT + motion compensation. */
442 #define VDEC_CROPRANGE                  2048
443
444 /* Nice increments for decoders -- necessary for x11 scheduling */
445 #define VDEC_NICE                                               3
446
447 /*****************************************************************************
448  * Generic decoder configuration
449  *****************************************************************************/
450
451 #define GDEC_IDLE_SLEEP                 ((int)(0.100*CLOCK_FREQ))
452
453 /*****************************************************************************
454  * Messages and console interfaces configuration
455  *****************************************************************************/
456
457 /* Maximal size of a message to be stored in the mesage queue,
458  * it is needed when vasprintf is not avalaible */
459 #define INTF_MAX_MSG_SIZE              512
460
461 /* Maximal size of the message queue - in case of overflow, all messages in the
462  * queue are printed by the calling thread */
463 #define INTF_MSG_QSIZE                  64
464
465 /* Interface warnig message level */
466 #define INTF_WARNING_VAR                "warning_level"
467 #define INTF_WARNING_DEFAULT            12
468
469 /* Define to enable messages queues - disabling messages queue can be usefull
470  * when debugging, since it allows messages which would not otherwise be printed,
471  * due to a crash, to be printed anyway */
472 #ifndef DEBUG
473 #define INTF_MSG_QUEUE
474 #endif
475
476 /* Format of the header for debug messages. The arguments following this header
477  * are the file (char *), the function (char *) and the line (int) in which the
478  * message function was called */
479 #define INTF_MSG_DBG_FORMAT             "## %s:%s(),%i: "
480
481 /* Maximal number of arguments on a command line, including the function name */
482 #define INTF_MAX_ARGS                   20
483
484 /* Maximal size of a command line in a script */
485 #define INTF_MAX_CMD_SIZE               240
486
487 /* Number of memorized lines in console window text zone */
488 #define INTF_CONSOLE_MAX_TEXT           100
489
490 /* Maximal number of commands which can be saved in history list */
491 #define INTF_CONSOLE_MAX_HISTORY        20
492