vlc_config.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:7k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_config.h: limits and configuration
  3.  * Defines all compilation-time configuration constants and size limits
  4.  *****************************************************************************
  5.  * Copyright (C) 1999-2003 the VideoLAN team
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /**
  25.  * file
  26.  * This file defines of values used in interface, vout, aout and vlc core functions.
  27.  */
  28. /* Conventions regarding names of symbols and variables
  29.  * ----------------------------------------------------
  30.  *
  31.  * - Symbols should begin with a prefix indicating in which module they are
  32.  *   used, such as INTF_, VOUT_ or AOUT_.
  33.  */
  34. /*****************************************************************************
  35.  * General configuration
  36.  *****************************************************************************/
  37. /* All timestamp below or equal to this define are invalid/unset
  38.  * XXX the numerical value is 0 because of historical reason and will change.*/
  39. #define VLC_TS_INVALID (0)
  40. #define CLOCK_FREQ 1000000
  41. /* When creating or destroying threads in blocking mode, delay to poll thread
  42.  * status */
  43. #define THREAD_SLEEP                    ((mtime_t)(0.010*CLOCK_FREQ))
  44. /*****************************************************************************
  45.  * Interface configuration
  46.  *****************************************************************************/
  47. /* Base delay in micro second for interface sleeps */
  48. #define INTF_IDLE_SLEEP                 ((mtime_t)(0.050*CLOCK_FREQ))
  49. /* Step for changing gamma, and minimum and maximum values */
  50. #define INTF_GAMMA_STEP                 .1
  51. #define INTF_GAMMA_LIMIT                3
  52. /*****************************************************************************
  53.  * Input thread configuration
  54.  *****************************************************************************/
  55. #define DEFAULT_INPUT_ACTIVITY 1
  56. #define TRANSCODE_ACTIVITY 10
  57. /* Used in ErrorThread */
  58. #define INPUT_IDLE_SLEEP                ((mtime_t)(0.100*CLOCK_FREQ))
  59. /* Time to wait in case of read error */
  60. #define INPUT_ERROR_SLEEP               ((mtime_t)(0.10*CLOCK_FREQ))
  61. /* Number of read() calls needed until we check the file size through
  62.  * fstat() */
  63. #define INPUT_FSTAT_NB_READS            10
  64. /*
  65.  * General limitations
  66.  */
  67. /* Duration between the time we receive the data packet, and the time we will
  68.  * mark it to be presented */
  69. #define DEFAULT_PTS_DELAY               (mtime_t)(.3*CLOCK_FREQ)
  70. /* DVD and VCD devices */
  71. #if !defined( WIN32 ) && !defined( UNDER_CE )
  72. #   define CD_DEVICE      "/dev/cdrom"
  73. #   define DVD_DEVICE     "/dev/dvd"
  74. #else
  75. #   define CD_DEVICE      "D:"
  76. #   define DVD_DEVICE     NULL
  77. #endif
  78. #define VCD_DEVICE        CD_DEVICE
  79. #define CDAUDIO_DEVICE    CD_DEVICE
  80. /*****************************************************************************
  81.  * Audio configuration
  82.  *****************************************************************************/
  83. /* Volume */
  84. /* If you are coding an interface, please see src/audio_output/intf.c */
  85. #define AOUT_VOLUME_DEFAULT             256
  86. #define AOUT_VOLUME_STEP                32
  87. #define AOUT_VOLUME_MAX                 1024
  88. #define AOUT_VOLUME_MIN                 0
  89. /* Max number of pre-filters per input, and max number of post-filters */
  90. #define AOUT_MAX_FILTERS                10
  91. /* Max number of inputs */
  92. #define AOUT_MAX_INPUTS                 5
  93. /* Buffers which arrive in advance of more than AOUT_MAX_ADVANCE_TIME
  94.  * will be considered as bogus and be trashed */
  95. #define AOUT_MAX_ADVANCE_TIME           (mtime_t)(DEFAULT_PTS_DELAY * 5)
  96. /* Buffers which arrive in advance of more than AOUT_MAX_PREPARE_TIME
  97.  * will cause the calling thread to sleep */
  98. #define AOUT_MAX_PREPARE_TIME           (mtime_t)(.5*CLOCK_FREQ)
  99. /* Buffers which arrive after pts - AOUT_MIN_PREPARE_TIME will be trashed
  100.  * to avoid too heavy resampling */
  101. #define AOUT_MIN_PREPARE_TIME           (mtime_t)(.04*CLOCK_FREQ)
  102. /* Max acceptable delay between the coded PTS and the actual presentation
  103.  * time, without resampling */
  104. #define AOUT_PTS_TOLERANCE              (mtime_t)(.04*CLOCK_FREQ)
  105. /* Max acceptable resampling (in %) */
  106. #define AOUT_MAX_RESAMPLING             10
  107. /*****************************************************************************
  108.  * SPU configuration
  109.  *****************************************************************************/
  110. /* Buffer must avoid arriving more than SPU_MAX_PREPARE_TIME in advanced to
  111.  * the SPU */
  112. #define SPU_MAX_PREPARE_TIME ((mtime_t)(0.5*CLOCK_FREQ))
  113. /*****************************************************************************
  114.  * Video configuration
  115.  *****************************************************************************/
  116. /*
  117.  * Default settings for video output threads
  118.  */
  119. /* Multiplier value for aspect ratio calculation (2^7 * 3^3 * 5^3) */
  120. #define VOUT_ASPECT_FACTOR              432000
  121. /* Maximum width of a scaled source picture - this should be relatively high,
  122.  * since higher stream values will result in no display at all. */
  123. #define VOUT_MAX_WIDTH                  4096
  124. /* Number of planes in a picture */
  125. #define VOUT_MAX_PLANES                 5
  126. /* Video heap size - remember that a decompressed picture is big
  127.  * (~1 Mbyte) before using huge values */
  128. #define VOUT_MAX_PICTURES              16
  129. /* Statistics are displayed every n loops (=~ pictures) */
  130. #define VOUT_STATS_NB_LOOPS             100
  131. /*
  132.  * Time settings
  133.  */
  134. /* Time to sleep when waiting for a buffer (from vout or the video fifo).
  135.  * It should be approximately the time needed to perform a complete picture
  136.  * loop. Since it only happens when the video heap is full, it does not need
  137.  * to be too low, even if it blocks the decoder. */
  138. #define VOUT_OUTMEM_SLEEP               ((mtime_t)(0.020*CLOCK_FREQ))
  139. /* The default video output window title */
  140. #define VOUT_TITLE                      "VLC"
  141. /*****************************************************************************
  142.  * Messages and console interfaces configuration
  143.  *****************************************************************************/
  144. /* Maximal size of a message to be stored in the mesage queue,
  145.  * it is needed when vasprintf is not available */
  146. #define INTF_MAX_MSG_SIZE               512
  147. /* Maximal size of the message queue - in case of overflow, all messages in the
  148.  * queue are printed, but not sent to the threads */
  149. #define VLC_MSG_QSIZE                   256
  150. /* Maximal depth of the object tree output by vlc_dumpstructure */
  151. #define MAX_DUMPSTRUCTURE_DEPTH         100