vlc_config.h

Go to the documentation of this file.
00001 /*****************************************************************************
00002  * vlc_config.h: limits and configuration
00003  * Defines all compilation-time configuration constants and size limits
00004  *****************************************************************************
00005  * Copyright (C) 1999-2003 the VideoLAN team
00006  *
00007  * Authors: Vincent Seguin <seguin@via.ecp.fr>
00008  *          Samuel Hocevar <sam@via.ecp.fr>
00009  *
00010  * This program is free software; you can redistribute it and/or modify
00011  * it under the terms of the GNU General Public License as published by
00012  * the Free Software Foundation; either version 2 of the License, or
00013  * (at your option) any later version.
00014  *
00015  * This program is distributed in the hope that it will be useful,
00016  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00017  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018  * GNU General Public License for more details.
00019  *
00020  * You should have received a copy of the GNU General Public License
00021  * along with this program; if not, write to the Free Software
00022  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
00023  *****************************************************************************/
00024 
00025 /* Conventions regarding names of symbols and variables
00026  * ----------------------------------------------------
00027  *
00028  * - Symbols should begin with a prefix indicating in which module they are
00029  *   used, such as INTF_, VOUT_ or AOUT_.
00030  */
00031 
00032 /*****************************************************************************
00033  * General configuration
00034  *****************************************************************************/
00035 
00036 #define CLOCK_FREQ 1000000
00037 
00038 
00039 /* When creating or destroying threads in blocking mode, delay to poll thread
00040  * status */
00041 #define THREAD_SLEEP                    ((mtime_t)(0.010*CLOCK_FREQ))
00042 
00043 /*****************************************************************************
00044  * Interface configuration
00045  *****************************************************************************/
00046 
00047 /* Base delay in micro second for interface sleeps */
00048 #define INTF_IDLE_SLEEP                 ((mtime_t)(0.050*CLOCK_FREQ))
00049 
00050 /* Step for changing gamma, and minimum and maximum values */
00051 #define INTF_GAMMA_STEP                 .1
00052 #define INTF_GAMMA_LIMIT                3
00053 
00054 /*****************************************************************************
00055  * Input thread configuration
00056  *****************************************************************************/
00057 
00058 #define DEFAULT_INPUT_ACTIVITY 1
00059 #define TRANSCODE_ACTIVITY 10
00060 
00061 /* Used in ErrorThread */
00062 #define INPUT_IDLE_SLEEP                ((mtime_t)(0.100*CLOCK_FREQ))
00063 
00064 /* Time to wait in case of read error */
00065 #define INPUT_ERROR_SLEEP               ((mtime_t)(0.10*CLOCK_FREQ))
00066 
00067 /* Number of read() calls needed until we check the file size through
00068  * fstat() */
00069 #define INPUT_FSTAT_NB_READS            10
00070 
00071 /*
00072  * General limitations
00073  */
00074 
00075 /* Duration between the time we receive the data packet, and the time we will
00076  * mark it to be presented */
00077 #define DEFAULT_PTS_DELAY               (mtime_t)(.3*CLOCK_FREQ)
00078 
00079 /* DVD and VCD devices */
00080 #if !defined( WIN32 ) && !defined( UNDER_CE )
00081 #   define CD_DEVICE      "/dev/cdrom"
00082 #   define DVD_DEVICE     "/dev/dvd"
00083 #else
00084 #   define CD_DEVICE      "D:"
00085 #   define DVD_DEVICE     NULL
00086 #endif
00087 #define VCD_DEVICE        CD_DEVICE
00088 #define CDAUDIO_DEVICE    CD_DEVICE
00089 
00090 /*****************************************************************************
00091  * Audio configuration
00092  *****************************************************************************/
00093 
00094 /* Volume */
00095 /* If you are coding an interface, please see src/audio_output/intf.c */
00096 #define AOUT_VOLUME_DEFAULT             256
00097 #define AOUT_VOLUME_STEP                32
00098 #define AOUT_VOLUME_MAX                 1024
00099 #define AOUT_VOLUME_MIN                 0
00100 
00101 /* Max number of pre-filters per input, and max number of post-filters */
00102 #define AOUT_MAX_FILTERS                10
00103 
00104 /* Max number of inputs */
00105 #define AOUT_MAX_INPUTS                 5
00106 
00107 /* Buffers which arrive in advance of more than AOUT_MAX_ADVANCE_TIME
00108  * will be considered as bogus and be trashed */
00109 #define AOUT_MAX_ADVANCE_TIME           (mtime_t)(DEFAULT_PTS_DELAY * 5)
00110 
00111 /* Buffers which arrive in advance of more than AOUT_MAX_PREPARE_TIME
00112  * will cause the calling thread to sleep */
00113 #define AOUT_MAX_PREPARE_TIME           (mtime_t)(.5*CLOCK_FREQ)
00114 
00115 /* Buffers which arrive after pts - AOUT_MIN_PREPARE_TIME will be trashed
00116  * to avoid too heavy resampling */
00117 #define AOUT_MIN_PREPARE_TIME           (mtime_t)(.04*CLOCK_FREQ)
00118 
00119 /* Max acceptable delay between the coded PTS and the actual presentation
00120  * time, without resampling */
00121 #define AOUT_PTS_TOLERANCE              (mtime_t)(.04*CLOCK_FREQ)
00122 
00123 /* Max acceptable resampling (in %) */
00124 #define AOUT_MAX_RESAMPLING             10
00125 
00126 /*****************************************************************************
00127  * Video configuration
00128  *****************************************************************************/
00129 
00130 /*
00131  * Default settings for video output threads
00132  */
00133 
00134 /* Multiplier value for aspect ratio calculation (2^7 * 3^3 * 5^3) */
00135 #define VOUT_ASPECT_FACTOR              432000
00136 
00137 /* Maximum width of a scaled source picture - this should be relatively high,
00138  * since higher stream values will result in no display at all. */
00139 #define VOUT_MAX_WIDTH                  4096
00140 
00141 /* Number of planes in a picture */
00142 #define VOUT_MAX_PLANES                 5
00143 
00144 /* Video heap size - remember that a decompressed picture is big
00145  * (~1 Mbyte) before using huge values */
00146 #define VOUT_MAX_PICTURES               8
00147 
00148 /* Minimum number of direct pictures the video output will accept without
00149  * creating additional pictures in system memory */
00150 #define VOUT_MIN_DIRECT_PICTURES        6
00151 
00152 /* Number of simultaneous subpictures */
00153 #define VOUT_MAX_SUBPICTURES            8
00154 
00155 /* Statistics are displayed every n loops (=~ pictures) */
00156 #define VOUT_STATS_NB_LOOPS             100
00157 
00158 /*
00159  * Time settings
00160  */
00161 
00162 /* Time during which the thread will sleep if it has nothing to
00163  * display (in micro-seconds) */
00164 #define VOUT_IDLE_SLEEP                 ((int)(0.020*CLOCK_FREQ))
00165 
00166 /* Maximum lap of time allowed between the beginning of rendering and
00167  * display. If, compared to the current date, the next image is too
00168  * late, the thread will perform an idle loop. This time should be
00169  * at least VOUT_IDLE_SLEEP plus the time required to render a few
00170  * images, to avoid trashing of decoded images */
00171 #define VOUT_DISPLAY_DELAY              ((int)(0.200*CLOCK_FREQ))
00172 
00173 /* Pictures which are VOUT_BOGUS_DELAY or more in advance probably have
00174  * a bogus PTS and won't be displayed */
00175 #define VOUT_BOGUS_DELAY                ((mtime_t)(DEFAULT_PTS_DELAY * 30))
00176 
00177 /* Delay (in microseconds) before an idle screen is displayed */
00178 #define VOUT_IDLE_DELAY                 (5*CLOCK_FREQ)
00179 
00180 /* Number of pictures required to computes the FPS rate */
00181 #define VOUT_FPS_SAMPLES                20
00182 
00183 /* Better be in advance when awakening than late... */
00184 #define VOUT_MWAIT_TOLERANCE            ((mtime_t)(0.020*CLOCK_FREQ))
00185 
00186 /* Time to sleep when waiting for a buffer (from vout or the video fifo).
00187  * It should be approximately the time needed to perform a complete picture
00188  * loop. Since it only happens when the video heap is full, it does not need
00189  * to be too low, even if it blocks the decoder. */
00190 #define VOUT_OUTMEM_SLEEP               ((mtime_t)(0.020*CLOCK_FREQ))
00191 
00192 /* The default video output window title */
00193 #define VOUT_TITLE                      "VLC"
00194 
00195 /*****************************************************************************
00196  * Messages and console interfaces configuration
00197  *****************************************************************************/
00198 
00199 /* Maximal size of a message to be stored in the mesage queue,
00200  * it is needed when vasprintf is not available */
00201 #define INTF_MAX_MSG_SIZE               512
00202 
00203 /* Maximal size of the message queue - in case of overflow, all messages in the
00204  * queue are printed, but not sent to the threads */
00205 #define VLC_MSG_QSIZE                   256
00206 
00207 /* Maximal depth of the object tree output by vlc_dumpstructure */
00208 #define MAX_DUMPSTRUCTURE_DEPTH         100

Generated on Wed Aug 13 08:02:37 2008 for VLC by  doxygen 1.5.1