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