]> git.sesse.net Git - vlc/blob - include/config.h
Suite des images I.
[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 /*
123  * X11 settings
124  */
125
126 /* Title of the X11 window */
127 #define VOUT_TITLE                      "VideoLAN Client"
128
129 /* Environment variable used in place of DISPLAY if available */
130 #define ENV_VLC_DISPLAY                 "vlc_DISPLAY"
131
132 /*******************************************************************************
133  * Input thread configuration
134  *******************************************************************************/
135
136 /* ?? */
137 #define INPUT_IDLE_SLEEP                100000
138
139 /*
140  * General limitations
141  */
142
143 /* Broadcast address, in case of a broadcasted stream */
144 #define INPUT_BCAST_ADDR                "138.195.143.255"
145
146 /* Maximum number of input threads - this value is used exclusively by
147  * interface, and is in fact an interface limitation */
148 #define INPUT_MAX_THREADS               10
149
150 /* Maximum number of programs definitions in a TS stream */
151 #define INPUT_MAX_PGRM                  10
152
153 /* Maximum number of ES definitions in a TS stream */
154 #define INPUT_MAX_ES                    10
155
156 /* Maximum number of ES in a single program */
157 #define INPUT_MAX_PROGRAM_ES            10
158
159 /* Maximum number of selected ES in an input thread */
160 #define INPUT_MAX_SELECTED_ES           10
161
162 /* Maximum number of TS packets in the client at any time
163  * INPUT_MAX_TS + 1 must be a power of 2, to optimize the %(INPUT_MAX_TS+1)
164  * operation with a &INPUT_MAX_TS in the case of a fifo netlist.
165  * It should be > number of fifos * FIFO_SIZE to avoid input deadlock. */
166 #define INPUT_MAX_TS                    32767      /* INPUT_MAX_TS + 1 = 2^15 */
167
168 /* Same thing with PES packets */
169 #define INPUT_MAX_PES                   16383
170
171 /* Maximum number of TS packets we read from the socket in one readv().
172  * Since you can't put more than 7 TS packets in an Ethernet frame,
173  * the maximum value is 7. This number should also limit the stream server,
174  * otherwise any supplementary packet is lost. */
175 #define INPUT_TS_READ_ONCE              7
176
177 /* Use a LIFO or FIFO for TS netlist ? */
178 #undef INPUT_LIFO_TS_NETLIST
179
180 /* Use a LIFO or FIFO for PES netlist ? */
181 #undef INPUT_LIFO_PES_NETLIST
182
183 /* Maximum length of a hostname */
184 #define INPUT_MAX_HOSTNAME_LENGTH       100
185
186
187 /* Default input method */
188 #define INPUT_DEFAULT_METHOD            INPUT_METHOD_TS_UCAST
189
190 /* Default remote server */
191 #define VIDEOLAN_DEFAULT_SERVER         "vod.via.ecp.fr"
192
193 /* Default videolan port */
194 #define VIDEOLAN_DEFAULT_PORT           1234
195
196 /* Default videolan VLAN */
197 #define VIDEOLAN_DEFAULT_VLAN           3
198
199 /*
200  * Vlan method 
201  */ 
202
203 /* Default VLAN server */
204 #define VLAN_DEFAULT_SERVER             "vlanserver.via.ecp.fr"
205 #define VLAN_DEFAULT_SERVER_PORT        6010
206
207 /*******************************************************************************
208  * Audio configuration
209  *******************************************************************************/
210
211 /* Environment variable used to store dsp device name, and default value */
212 #define AOUT_DSP_VAR                    "vlc_dsp"
213 #define AOUT_DSP_DEFAULT                "/dev/dsp"
214
215 /* Environment variable for stereo, and default value */
216 #define AOUT_STEREO_VAR                 "vlc_stereo"
217 #define AOUT_STEREO_DEFAULT             1
218
219 /* Environment variable for output rate, and default value */
220 #define AOUT_RATE_VAR                   "vlc_audio_rate"
221 #define AOUT_RATE_DEFAULT               44100 
222
223 /*******************************************************************************
224  * Video configuration
225  *******************************************************************************/
226
227 /*
228  * Default settings for video output threads
229  */
230
231 /* Default dimensions for display window - these dimensions are the standard 
232  * width and height for broadcasted MPEG-2 */
233 #define VOUT_WIDTH                      544
234 #define VOUT_HEIGHT                     576
235
236 /* Default video heap size - remember that a decompressed picture is big 
237  * (~1 Mbyte) before using huge values */
238 #define VOUT_MAX_PICTURES               10
239
240 /* Environment variable for grayscale output mode, and default value */
241 #define VOUT_GRAYSCALE_VAR              "vlc_grayscale"
242 #define VOUT_GRAYSCALE_DEFAULT          0
243
244 /*
245  * Time settings
246  */
247
248 /* Time during which the thread will sleep if it has nothing to 
249  * display (in micro-seconds) */
250 /* ?? this constant will probably evolve to a calculated value */
251 #define VOUT_IDLE_SLEEP                 20000
252
253 /* Maximum lap of time allowed between the beginning of rendering and
254  * display. If, compared to the current date, the next image is too
255  * late, the thread will perform an idle loop. This time should be
256  * at least VOUT_IDLE_SLEEP plus the time required to render a few
257  * images, to avoid trashing of decoded images */
258 /* ?? this constant will probably evolve to a calculated value */
259 #define VOUT_DISPLAY_DELAY              100000
260
261 /* Delay (in microseconds) between increments in idle levels */
262 #define VOUT_IDLE_DELAY                 5000000
263
264 /* Number of pictures required to computes the FPS rate */
265 #define VOUT_FPS_SAMPLES                5
266
267 /*
268  * Framebuffer settings
269  */
270
271 /* Environment variable for framebuffer device, and default value */
272 #define VOUT_FB_DEV_VAR                 "vlc_fb_dev"
273 #define VOUT_FB_DEV_DEFAULT             "/dev/fb0"
274
275 /*
276  * X11 settings 
277  */
278
279 /* Allow use of X11 XShm (shared memory) extension if possible */
280 #define VOUT_XSHM                       1
281
282 /* Font maximum and minimum characters - characters outside this range are not
283  * printed - maximum range is 1-256 */
284 #define VOUT_MIN_CHAR                   1
285 #define VOUT_MAX_CHAR                   128
286
287 /*******************************************************************************
288  * Video parser configuration
289  *******************************************************************************/
290
291 #define VPAR_IDLE_SLEEP                 100000
292
293 /* Number of macroblock buffers available. It should be always greater than
294  * twice the number of macroblocks in a picture. VFIFO_SIZE + 1 should also
295  * be a power of two. */
296 #define VFIFO_SIZE                      8191
297
298 /* Maximum number of macroblocks in a picture. */
299 #define MAX_MB                          2048
300
301 /*******************************************************************************
302  * Video decoder configuration
303  *******************************************************************************/
304
305 #define VDEC_IDLE_SLEEP                 100000
306
307 /* Number of video_decoder threads to launch on startup of the video_parser.
308  * It should always be less than half the number of macroblocks of a
309  * picture. */
310 #define NB_VDEC                         1
311
312 /* Maximum range of values out of the IDCT + motion compensation. Only
313  * used if you define MPEG2_COMPLIANT above. */
314 #define VDEC_CROPRANGE                  2048
315
316 /*******************************************************************************
317  * Generic decoder configuration
318  *******************************************************************************/
319
320 #define GDEC_IDLE_SLEEP                 100000
321
322 /*******************************************************************************
323  * Messages and console interfaces configuration
324  *******************************************************************************/
325
326 /* Maximal size of the message queue - in case of overflow, all messages in the
327  * queue are printed by the calling thread */
328 #define INTF_MSG_QSIZE                  64
329
330 /* Define to enable messages queues - disabling messages queue can be usefull
331  * when debugging, since it allows messages which would not otherwise be printed,
332  * due to a crash, to be printed anyway */
333 #define INTF_MSG_QUEUE
334
335 /* Format of the header for debug messages. The arguments following this header
336  * are the file (char *), the function (char *) and the line (int) in which the
337  * message function was called */
338 #define INTF_MSG_DBG_FORMAT             "## %s:%s(),%i: "
339
340 /* Maximal number of arguments on a command line, including the function name */
341 #define INTF_MAX_ARGS                   20
342
343 /* Maximal size of a command line in a script */
344 #define INTF_MAX_CMD_SIZE               240
345
346 /* Number of memorized lines in console window text zone */
347 #define INTF_CONSOLE_MAX_TEXT           100
348
349 /* Maximal number of commands which can be saved in history list */
350 #define INTF_CONSOLE_MAX_HISTORY        20
351
352 /*******************************************************************************
353  * Network and VLAN management
354  *******************************************************************************/
355 /* Default network interface to use */
356 #define NET_DFLT_IF                     "eth0"
357
358 /* Default VLANserver address */
359 #define VLAN_DFLT_VLANSRV               "vlanserver"
360
361 /* Default VLANserver port */
362 #define VLAN_DFLT_VLANPORT              "6010"
363
364 /* Client identification */
365 #define VLAN_LOGIN                      "guest"
366 #define VLAN_PASSWD                     "none"