]> git.sesse.net Git - vlc/blob - include/config.h
* ./plugins/a52/a52.c : Added a global lock to prevent two VLC threads to
[vlc] / include / config.h
1 /*****************************************************************************
2  * config.h: limits and configuration
3  * Defines all compilation-time configuration constants and size limits
4  *****************************************************************************
5  * Copyright (C) 1999, 2000, 2001 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
32 /*****************************************************************************
33  * General configuration
34  *****************************************************************************/
35
36 #define CLOCK_FREQ 1000000
37
38
39 /* Automagically spawn audio and video decoder threads */
40 #define AUTO_SPAWN
41
42 /* When creating or destroying threads in blocking mode, delay to poll thread
43  * status */
44 #define THREAD_SLEEP                    ((mtime_t)(0.010*CLOCK_FREQ))
45
46 /* When a thread waits on a condition in debug mode, delay to wait before
47  * outputting an error message (in second) */
48 #define THREAD_COND_TIMEOUT             5
49
50 /* The configuration file and directory */
51 #ifdef SYS_BEOS
52 #  define CONFIG_DIR                    "config/settings"
53 #elif defined( WIN32 )
54 #  define CONFIG_DIR                    "vlc"
55 #else
56 #  define CONFIG_DIR                    ".vlc"
57 #endif
58 #define CONFIG_FILE                     "vlcrc"
59
60 /*****************************************************************************
61  * Interface configuration
62  *****************************************************************************/
63
64 /* Base delay in micro second for interface sleeps */
65 #define INTF_IDLE_SLEEP                 ((mtime_t)(0.050*CLOCK_FREQ))
66
67 /* Step for changing gamma, and minimum and maximum values */
68 #define INTF_GAMMA_STEP                 .1
69 #define INTF_GAMMA_LIMIT                3
70
71 /*****************************************************************************
72  * Input thread configuration
73  *****************************************************************************/
74
75 /* XXX?? */
76 #define INPUT_IDLE_SLEEP                ((mtime_t)(0.100*CLOCK_FREQ))
77
78 /*
79  * General limitations
80  */
81
82 /* Maximum number of input threads - this value is used exclusively by
83  * interface, and is in fact an interface limitation */
84 #define INPUT_MAX_THREADS               10
85
86 /* Maximum size of a data packet (128 kB) */
87 #define INPUT_MAX_PACKET_SIZE           131072
88
89 /* Maximum length of a pre-parsed chunk (4 MB) */
90 #define INPUT_PREPARSE_LENGTH           4194304
91
92 /* Maximum length of a hostname or source name */
93 #define INPUT_MAX_SOURCE_LENGTH         100
94
95 /* Maximum memory the input is allowed to use (20 MB) */
96 #define INPUT_MAX_ALLOCATION            20971520
97
98 /*
99  * Channel method
100  */
101
102 /* Delay between channel changes - this is required to avoid flooding the 
103  * channel server */
104 #define INPUT_CHANNEL_CHANGE_DELAY         (mtime_t)(5*CLOCK_FREQ)
105
106 /* Duration between the time we receive the data packet, and the time we will
107  * mark it to be presented */
108 #define DEFAULT_PTS_DELAY               (mtime_t)(.45*CLOCK_FREQ)
109
110 /* DVD and VCD devices */
111 #ifndef WIN32
112 #  define DVD_DEVICE "/dev/dvd"
113 #  define VCD_DEVICE "/dev/cdrom"
114 #else
115 #  define DVD_DEVICE "D"
116 #  define VCD_DEVICE "D"
117 #endif
118
119 /*****************************************************************************
120  * Audio configuration
121  *****************************************************************************/
122
123 /* Maximum number of audio output threads */
124 #define AOUT_MAX_THREADS                10
125
126 /* Volume */
127 #define VOLUME_DEFAULT                  256
128 #define VOLUME_STEP                     32
129 #define VOLUME_MAX                      1024
130 #define VOLUME_MIN                      0
131
132 /* Number of audio output frames contained in an audio output fifo.
133  * (AOUT_FIFO_SIZE + 1) must be a power of 2, in order to optimise the
134  * %(AOUT_FIFO_SIZE + 1) operation with an &AOUT_FIFO_SIZE.
135  * With 255 we have at least 255*384/2/48000=1 second of sound */
136 #define AOUT_FIFO_SIZE                  255
137
138 /* Maximum number of audio fifos. The value of AOUT_MAX_FIFOS should be a power
139  * of two, in order to optimize the '/AOUT_MAX_FIFOS' and '*AOUT_MAX_FIFOS'
140  * operations with '>>' and '<<' (gcc changes this at compilation-time) */
141 #define AOUT_MAX_FIFOS                  2
142
143 /* Duration (in microseconds) of an audio output buffer should be :
144  * - short, in order to be able to play a new song very quickly (especially a
145  *   song from the interface)
146  * - long, in order to perform the buffer calculations as few as possible */
147 #define AOUT_BUFFER_DURATION            90000
148
149 /*****************************************************************************
150  * Video configuration
151  *****************************************************************************/
152
153 /* Maximum number of video output threads */
154 #define VOUT_MAX_THREADS                256
155
156 /*
157  * Default settings for video output threads
158  */
159
160 /* Multiplier value for aspect ratio calculation (2^7 * 3^3 * 5^3) */
161 #define VOUT_ASPECT_FACTOR              432000
162
163 /* Maximum width of a scaled source picture - this should be relatively high,
164  * since higher stream values will result in no display at all. */
165 #define VOUT_MAX_WIDTH                  4096
166
167 /* Number of planes in a picture */
168 #define VOUT_MAX_PLANES                 5
169
170 /* Video heap size - remember that a decompressed picture is big
171  * (~1 Mbyte) before using huge values */
172 #define VOUT_MAX_PICTURES               8
173
174 /* Number of simultaneous subpictures */
175 #define VOUT_MAX_SUBPICTURES            8
176
177 /* Maximum number of active areas in a rendering buffer. Active areas are areas
178  * of the picture which need to be cleared before re-using the buffer. If a
179  * picture, including its many additions such as subtitles, additionnal user
180  * informations and interface, has too many active areas, some of them are
181  * joined. */
182 #define VOUT_MAX_AREAS                  5
183
184 /* Default fonts */
185 #define VOUT_DEFAULT_FONT               "default8x9.psf"
186 #define VOUT_LARGE_FONT                 "default8x16.psf"
187
188 /* Statistics are displayed every n loops (=~ pictures) */
189 #define VOUT_STATS_NB_LOOPS             100
190
191 /*
192  * Time settings
193  */
194
195 /* Time during which the thread will sleep if it has nothing to
196  * display (in micro-seconds) */
197 #define VOUT_IDLE_SLEEP                 ((int)(0.020*CLOCK_FREQ))
198
199 /* Maximum lap of time allowed between the beginning of rendering and
200  * display. If, compared to the current date, the next image is too
201  * late, the thread will perform an idle loop. This time should be
202  * at least VOUT_IDLE_SLEEP plus the time required to render a few
203  * images, to avoid trashing of decoded images */
204 #define VOUT_DISPLAY_DELAY              ((int)(0.200*CLOCK_FREQ))
205
206 /* Pictures which are VOUT_BOGUS_DELAY or more in advance probably have
207  * a bogus PTS and won't be displayed */
208 #define VOUT_BOGUS_DELAY                ((int)(0.800*CLOCK_FREQ))
209
210 /* Delay (in microseconds) before an idle screen is displayed */
211 #define VOUT_IDLE_DELAY                 (5*CLOCK_FREQ)
212
213 /* Number of pictures required to computes the FPS rate */
214 #define VOUT_FPS_SAMPLES                20
215
216 /* Better be in advance when awakening than late... */
217 #define VOUT_MWAIT_TOLERANCE            ((mtime_t)(0.020*CLOCK_FREQ))
218
219 /* Time to sleep when waiting for a buffer (from vout or the video fifo).
220  * It should be approximately the time needed to perform a complete picture
221  * loop. Since it only happens when the video heap is full, it does not need
222  * to be too low, even if it blocks the decoder. */
223 #define VOUT_OUTMEM_SLEEP               ((mtime_t)(0.020*CLOCK_FREQ))
224
225 /* The default video output window title */
226 #define VOUT_TITLE                      "VideoLAN Client " VERSION
227
228 /*****************************************************************************
229  * Video parser configuration
230  *****************************************************************************/
231
232 #define VPAR_IDLE_SLEEP                 ((mtime_t)(0.010*CLOCK_FREQ))
233
234 /* Optimization level, from 0 to 2 - 1 is generally a good compromise. Remember
235  * that raising this level dramatically lengthens the compilation time. */
236 #if defined( HAVE_RELEASE ) || defined( __pentiumpro__ )
237 #   define VPAR_OPTIM_LEVEL             2
238 #else
239 #   define VPAR_OPTIM_LEVEL             1
240 #endif
241
242 /* Maximum number of macroblocks in a picture. */
243 #define MAX_MB                          2048
244
245 /*****************************************************************************
246  * Video decoder configuration
247  *****************************************************************************/
248
249 #define VDEC_IDLE_SLEEP                 ((mtime_t)(0.100*CLOCK_FREQ))
250
251 /* Maximum range of values out of the IDCT + motion compensation. */
252 #define VDEC_CROPRANGE                  2048
253
254 /* No SMP by default, since it slows down things on non-smp machines. */
255 #define VDEC_SMP_DEFAULT                0
256
257 /* Nice increments for decoders -- necessary for x11 scheduling */
258 #define VDEC_NICE                       3
259
260 /*****************************************************************************
261  * Messages and console interfaces configuration
262  *****************************************************************************/
263
264 /* Maximal size of a message to be stored in the mesage queue,
265  * it is needed when vasprintf is not avalaible */
266 #define INTF_MAX_MSG_SIZE               512
267
268 /* Maximal size of the message queue - in case of overflow, all messages in the
269  * queue are printed, but not sent to the threads */
270 #define VLC_MSG_QSIZE                   256
271
272 /* Maximal depth of the object tree output by vlc_dumpstructure */
273 #define MAX_DUMPSTRUCTURE_DEPTH         100