]> git.sesse.net Git - vlc/blob - include/config.h
Les I marchent !!!!!!!!!!!!!!!!!!!!!!!!
[vlc] / include / config.h
1 /*******************************************************************************
2  * config.h: limits and configuration
3  * (c)1999 VideoLAN
4  *******************************************************************************
5  * Defines all compilation-time configuration constants and size limits
6  *******************************************************************************/
7
8 /* Conventions regarding names of symbols and variables
9  * ----------------------------------------------------
10  *
11  * - Symbols should begin with a prefix indicating in which module they are
12  *   used, such as INTF_, VOUT_ or ADEC_.
13  *
14  * - Regarding environment variables, which are used as initialization parameters 
15  *   for threads :
16  *   + variable names should end with '_VAR'
17  *   + environment variable default value should end with '_DEFAULT'
18  *   + values having a special meaning with '_VAL' 
19  *   
20  */
21
22 /*******************************************************************************
23  * Program information
24  *******************************************************************************/
25
26 /* Program options - this part will produce a copyright message with compilation
27  * options informations, based on some definines set in the Makefile - do not
28  * edit */
29 #if defined(VIDEO_X11)
30 #define VIDEO_OPTIONS                   "X11"
31 #elif defined(VIDEO_FB)
32 #define VIDEO_OPTIONS                   "Framebuffer"
33 #elif defined(VIDEO_GGI)
34 #define VIDEO_OPTIONS                   "GGI"
35 #else
36 #define VIDEO_OPTIONS                   ""
37 #endif
38 #if defined(HAVE_MMX)
39 #define ARCH_OPTIONS                    "MMX"
40 #else
41 #define ARCH_OPTIONS                    ""
42 #endif
43 #define PROGRAM_OPTIONS                 VIDEO_OPTIONS " " ARCH_OPTIONS
44
45 /* Program version and copyright message */
46 #define PROGRAM_VERSION                 "1.0-dev"
47 #define COPYRIGHT_MESSAGE               "VideoLAN Client v" PROGRAM_VERSION " (" __DATE__ ") - " \
48                                         PROGRAM_OPTIONS " - (c)1999 VideoLAN"
49
50 /*******************************************************************************
51  * General compilation options
52  *******************************************************************************/
53
54 /* Define for DVB support - Note that some extensions or restrictions may be
55  * incompatible with native MPEG2 streams */
56 //#define DVB_EXTENSIONS
57 //#define DVB_RESTRICTIONS
58
59 /* Define to disable some obscure heuristics behind the video_parser and the
60  * video_decoder that improve performance but are not fully MPEG2 compliant
61  * and might cause problems with some very weird streams. */
62 //#define MPEG2_COMPLIANT
63
64 /* Define for profiling and statistics support - such informations, like FPS
65  * or pictures count won't be available if it not set */
66 #define STATS
67
68 /* Define for unthreaded version of the program - ?? not yet implemented */
69 //#define NO_THREAD
70
71 /*******************************************************************************
72  * Debugging options - define or undefine symbols
73  *******************************************************************************/
74
75 /* General debugging support */
76 #define DEBUG
77
78 /* Modules specific debugging - this will produce a lot of output, but can be
79  * usefull to track a bug */
80 #define DEBUG_INTF
81 #define DEBUG_INPUT
82 #define DEBUG_AUDIO
83 #define DEBUG_VIDEO
84
85 /* Debugging log file - if defined, a file can be used to store all messages. If
86  * DEBUG_LOG_ONLY is defined, debug messages will only be printed to the log and
87  * will not appear on the screen */
88 #define DEBUG_LOG                       "vlc-debug.log"
89 #define DEBUG_LOG_ONLY
90
91 /*******************************************************************************
92  * General configuration
93  *******************************************************************************/
94
95 /* Automagically spawn input, audio and video threads ? */
96 // ?? used ?
97 #define AUTO_SPAWN
98
99 /* When creating or destroying threads in blocking mode, delay to poll thread
100  * status */
101 #define THREAD_SLEEP                    10000
102
103 /*
104  * Decoders FIFO configuration
105  */
106
107 /* Size of the FIFO. FIFO_SIZE+1 must be a multiple of 2 */
108 #define FIFO_SIZE                       1023
109
110
111 /*******************************************************************************
112  * Interface configuration
113  *******************************************************************************/
114
115 /* Environment variable used to store startup script name and default value */
116 #define INTF_INIT_SCRIPT_VAR            "vlc_init"
117 #define INTF_INIT_SCRIPT_DEFAULT        "vlc.init"
118
119 /* Base delay in micro second for interface sleeps */
120 #define INTF_IDLE_SLEEP                 100000
121
122 /* Factor for changing gamma, and minimum and maximum values */
123 #define INTF_GAMMA_FACTOR               1.1
124 #define INTF_GAMMA_MIN                  0.1
125 #define INTF_GAMMA_MAX                  10
126
127 /*
128  * X11 settings
129  */
130
131 /* Title of the X11 window */
132 #define VOUT_TITLE                      "VideoLAN Client"
133
134 /* Environment variable used in place of DISPLAY if available */
135 #define ENV_VLC_DISPLAY                 "vlc_DISPLAY"
136
137 /*******************************************************************************
138  * Input thread configuration
139  *******************************************************************************/
140
141 /* ?? */
142 #define INPUT_IDLE_SLEEP                100000
143
144 /*
145  * General limitations
146  */
147
148 /* Broadcast address, in case of a broadcasted stream */
149 #define INPUT_BCAST_ADDR                "138.195.143.255"
150
151 /* Maximum number of input threads - this value is used exclusively by
152  * interface, and is in fact an interface limitation */
153 #define INPUT_MAX_THREADS               10
154
155 /* Maximum number of programs definitions in a TS stream */
156 #define INPUT_MAX_PGRM                  10
157
158 /* Maximum number of ES definitions in a TS stream */
159 #define INPUT_MAX_ES                    10
160
161 /* Maximum number of ES in a single program */
162 #define INPUT_MAX_PROGRAM_ES            10
163
164 /* Maximum number of selected ES in an input thread */
165 #define INPUT_MAX_SELECTED_ES           10
166
167 /* Maximum number of TS packets in the client at any time
168  * INPUT_MAX_TS + 1 must be a power of 2, to optimize the %(INPUT_MAX_TS+1)
169  * operation with a &INPUT_MAX_TS in the case of a fifo netlist.
170  * It should be > number of fifos * FIFO_SIZE to avoid input deadlock. */
171 #define INPUT_MAX_TS                    32767      /* INPUT_MAX_TS + 1 = 2^15 */
172
173 /* Same thing with PES packets */
174 #define INPUT_MAX_PES                   16383
175
176 /* Maximum number of TS packets we read from the socket in one readv().
177  * Since you can't put more than 7 TS packets in an Ethernet frame,
178  * the maximum value is 7. This number should also limit the stream server,
179  * otherwise any supplementary packet is lost. */
180 #define INPUT_TS_READ_ONCE              7
181
182 /* Use a LIFO or FIFO for TS netlist ? */
183 #undef INPUT_LIFO_TS_NETLIST
184
185 /* Use a LIFO or FIFO for PES netlist ? */
186 #undef INPUT_LIFO_PES_NETLIST
187
188 /* Maximum length of a hostname */
189 #define INPUT_MAX_HOSTNAME_LENGTH       100
190
191
192 /* Default input method */
193 #define INPUT_DEFAULT_METHOD            INPUT_METHOD_TS_UCAST
194
195 /* Default remote server */
196 #define VIDEOLAN_DEFAULT_SERVER         "vod.via.ecp.fr"
197
198 /* Default videolan port */
199 #define VIDEOLAN_DEFAULT_PORT           1234
200
201 /* Default videolan VLAN */
202 #define VIDEOLAN_DEFAULT_VLAN           3
203
204 /*
205  * Vlan method 
206  */ 
207
208 /* Default VLAN server */
209 #define VLAN_DEFAULT_SERVER             "vlanserver.via.ecp.fr"
210 #define VLAN_DEFAULT_SERVER_PORT        6010
211
212 /*******************************************************************************
213  * Audio configuration
214  *******************************************************************************/
215
216 /* Environment variable used to store dsp device name, and default value */
217 #define AOUT_DSP_VAR                    "vlc_dsp"
218 #define AOUT_DSP_DEFAULT                "/dev/dsp"
219
220 /* Environment variable for stereo, and default value */
221 #define AOUT_STEREO_VAR                 "vlc_stereo"
222 #define AOUT_STEREO_DEFAULT             1
223
224 /* Environment variable for output rate, and default value */
225 #define AOUT_RATE_VAR                   "vlc_audio_rate"
226 #define AOUT_RATE_DEFAULT               44100 
227
228 /*******************************************************************************
229  * Video configuration
230  *******************************************************************************/
231
232 /*
233  * Default settings for video output threads
234  */
235
236 /* Default dimensions for display window - these dimensions are the standard 
237  * width and height for broadcasted MPEG-2 */
238 #define VOUT_WIDTH                      544
239 #define VOUT_HEIGHT                     576
240
241 /* Default video heap size - remember that a decompressed picture is big 
242  * (~1 Mbyte) before using huge values */
243 #define VOUT_MAX_PICTURES               10
244
245 /* Environment variable for grayscale output mode, and default value */
246 #define VOUT_GRAYSCALE_VAR              "vlc_grayscale"
247 #define VOUT_GRAYSCALE_DEFAULT          0
248
249 /* Default gamma */
250 #define VOUT_GAMMA                      1.
251
252 /*
253  * Time settings
254  */
255
256 /* Time during which the thread will sleep if it has nothing to 
257  * display (in micro-seconds) */
258 /* ?? this constant will probably evolve to a calculated value */
259 #define VOUT_IDLE_SLEEP                 20000
260
261 /* Maximum lap of time allowed between the beginning of rendering and
262  * display. If, compared to the current date, the next image is too
263  * late, the thread will perform an idle loop. This time should be
264  * at least VOUT_IDLE_SLEEP plus the time required to render a few
265  * images, to avoid trashing of decoded images */
266 /* ?? this constant will probably evolve to a calculated value */
267 #define VOUT_DISPLAY_DELAY              100000
268
269 /* Delay (in microseconds) between increments in idle levels */
270 #define VOUT_IDLE_DELAY                 5000000000
271
272 /* Number of pictures required to computes the FPS rate */
273 #define VOUT_FPS_SAMPLES                5
274
275 /*
276  * Framebuffer settings
277  */
278
279 /* Environment variable for framebuffer device, and default value */
280 #define VOUT_FB_DEV_VAR                 "vlc_fb_dev"
281 #define VOUT_FB_DEV_DEFAULT             "/dev/fb0"
282
283 /*
284  * X11 settings 
285  */
286
287 /* Allow use of X11 XShm (shared memory) extension if possible */
288 #define VOUT_XSHM                       1
289
290 /* Font maximum and minimum characters - characters outside this range are not
291  * printed - maximum range is 1-256 */
292 #define VOUT_MIN_CHAR                   1
293 #define VOUT_MAX_CHAR                   128
294
295 /*******************************************************************************
296  * Video parser configuration
297  *******************************************************************************/
298
299 #define VPAR_IDLE_SLEEP                 100000
300
301 /* Number of macroblock buffers available. It should be always greater than
302  * twice the number of macroblocks in a picture. VFIFO_SIZE + 1 should also
303  * be a power of two. */
304 #define VFIFO_SIZE                      8191
305
306 /* Maximum number of macroblocks in a picture. */
307 #define MAX_MB                          2048
308
309 /*******************************************************************************
310  * Video decoder configuration
311  *******************************************************************************/
312
313 #define VDEC_IDLE_SLEEP                 100000
314
315 /* Number of video_decoder threads to launch on startup of the video_parser.
316  * It should always be less than half the number of macroblocks of a
317  * picture. */
318 #define NB_VDEC                         1
319
320 /* Maximum range of values out of the IDCT + motion compensation. Only
321  * used if you define MPEG2_COMPLIANT above. */
322 #define VDEC_CROPRANGE                  2048
323
324 /*******************************************************************************
325  * Generic decoder configuration
326  *******************************************************************************/
327
328 #define GDEC_IDLE_SLEEP                 100000
329
330 /*******************************************************************************
331  * Messages and console interfaces configuration
332  *******************************************************************************/
333
334 /* Maximal size of the message queue - in case of overflow, all messages in the
335  * queue are printed by the calling thread */
336 #define INTF_MSG_QSIZE                  64
337
338 /* Define to enable messages queues - disabling messages queue can be usefull
339  * when debugging, since it allows messages which would not otherwise be printed,
340  * due to a crash, to be printed anyway */
341 #define INTF_MSG_QUEUE
342
343 /* Format of the header for debug messages. The arguments following this header
344  * are the file (char *), the function (char *) and the line (int) in which the
345  * message function was called */
346 #define INTF_MSG_DBG_FORMAT             "## %s:%s(),%i: "
347
348 /* Maximal number of arguments on a command line, including the function name */
349 #define INTF_MAX_ARGS                   20
350
351 /* Maximal size of a command line in a script */
352 #define INTF_MAX_CMD_SIZE               240
353
354 /* Number of memorized lines in console window text zone */
355 #define INTF_CONSOLE_MAX_TEXT           100
356
357 /* Maximal number of commands which can be saved in history list */
358 #define INTF_CONSOLE_MAX_HISTORY        20
359
360 /*******************************************************************************
361  * Network and VLAN management
362  *******************************************************************************/
363 /* Default network interface to use */
364 #define NET_DFLT_IF                     "eth0"
365
366 /* Default VLANserver address */
367 #define VLAN_DFLT_VLANSRV               "vlanserver"
368
369 /* Default VLANserver port */
370 #define VLAN_DFLT_VLANPORT              "6010"
371
372 /* Client identification */
373 #define VLAN_LOGIN                      "guest"
374 #define VLAN_PASSWD                     "none"