aout_internal.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:14k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * aout_internal.h : internal defines for audio output
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 VideoLAN
  5.  * $Id: aout_internal.h 7379 2004-04-19 10:48:04Z gbazin $
  6.  *
  7.  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * aout_alloc_t : allocation of memory in the audio output
  25.  *****************************************************************************/
  26. typedef struct aout_alloc_t
  27. {
  28.     int                     i_alloc_type;
  29.     int                     i_bytes_per_sec;
  30. } aout_alloc_t;
  31. #define AOUT_ALLOC_NONE     0
  32. #define AOUT_ALLOC_STACK    1
  33. #define AOUT_ALLOC_HEAP     2
  34. #ifdef HAVE_ALLOCA
  35. #   define ALLOCA_TEST( p_alloc, p_new_buffer )                             
  36.         if ( (p_alloc)->i_alloc_type == AOUT_ALLOC_STACK )                  
  37.         {                                                                   
  38.             (p_new_buffer) = alloca( i_alloc_size + sizeof(aout_buffer_t) );
  39.         }                                                                   
  40.         else
  41. #else
  42. #   define ALLOCA_TEST( p_alloc, p_new_buffer )
  43. #endif
  44. #define aout_BufferAlloc( p_alloc, i_nb_usec, p_previous_buffer,            
  45.                           p_new_buffer )                                    
  46.     if ( (p_alloc)->i_alloc_type == AOUT_ALLOC_NONE )                       
  47.     {                                                                       
  48.         (p_new_buffer) = p_previous_buffer;                                 
  49.     }                                                                       
  50.     else                                                                    
  51.     {                                                                       
  52.         int i_alloc_size;                                                   
  53.         i_alloc_size = (int)( (uint64_t)(p_alloc)->i_bytes_per_sec          
  54.                                             * (i_nb_usec) / 1000000 + 1 );  
  55.         ALLOCA_TEST( p_alloc, p_new_buffer )                                
  56.         {                                                                   
  57.             (p_new_buffer) = malloc( i_alloc_size + sizeof(aout_buffer_t) );
  58.         }                                                                   
  59.         if ( p_new_buffer != NULL )                                         
  60.         {                                                                   
  61.             (p_new_buffer)->i_alloc_type = (p_alloc)->i_alloc_type;         
  62.             (p_new_buffer)->i_size = i_alloc_size;                          
  63.             (p_new_buffer)->p_buffer = (byte_t *)(p_new_buffer)             
  64.                                          + sizeof(aout_buffer_t);           
  65.             if ( (p_previous_buffer) != NULL )                              
  66.             {                                                               
  67.                 (p_new_buffer)->start_date =                                
  68.                            ((aout_buffer_t *)p_previous_buffer)->start_date;
  69.                 (p_new_buffer)->end_date =                                  
  70.                            ((aout_buffer_t *)p_previous_buffer)->end_date;  
  71.             }                                                               
  72.         }                                                                   
  73.         /* we'll keep that for a while --Meuuh */                           
  74.         /* else printf("%s:%dn", __FILE__, __LINE__); */                   
  75.     }
  76. #define aout_BufferFree( p_buffer )                                         
  77.     if ( (p_buffer)->i_alloc_type == AOUT_ALLOC_HEAP )                      
  78.     {                                                                       
  79.         free( p_buffer );                                                   
  80.     }
  81. /*****************************************************************************
  82.  * aout_fifo_t : audio output buffer FIFO
  83.  *****************************************************************************/
  84. struct aout_fifo_t
  85. {
  86.     aout_buffer_t *         p_first;
  87.     aout_buffer_t **        pp_last;
  88.     audio_date_t            end_date;
  89. };
  90. /*****************************************************************************
  91.  * aout_filter_t : audio output filter
  92.  *****************************************************************************/
  93. struct aout_filter_t
  94. {
  95.     VLC_COMMON_MEMBERS
  96.     audio_sample_format_t   input;
  97.     audio_sample_format_t   output;
  98.     aout_alloc_t            output_alloc;
  99.     module_t *              p_module;
  100.     struct aout_filter_sys_t * p_sys;
  101.     void                 (* pf_do_work)( struct aout_instance_t *,
  102.                                          struct aout_filter_t *,
  103.                                          struct aout_buffer_t *,
  104.                                          struct aout_buffer_t * );
  105.     vlc_bool_t              b_in_place;
  106.     vlc_bool_t              b_continuity;
  107. };
  108. /*****************************************************************************
  109.  * aout_mixer_t : audio output mixer
  110.  *****************************************************************************/
  111. typedef struct aout_mixer_t
  112. {
  113.     audio_sample_format_t   mixer;
  114.     aout_alloc_t            output_alloc;
  115.     module_t *              p_module;
  116.     struct aout_mixer_sys_t * p_sys;
  117.     void                 (* pf_do_work)( struct aout_instance_t *,
  118.                                          struct aout_buffer_t * );
  119.     /* If b_error == 1, there is no mixer. */
  120.     vlc_bool_t              b_error;
  121.     /* Multiplier used to raise or lower the volume of the sound in
  122.      * software. Beware, this creates sound distortion and should be avoided
  123.      * as much as possible. This isn't available for non-float32 mixer. */
  124.     float                   f_multiplier;
  125. } aout_mixer_t;
  126. /*****************************************************************************
  127.  * aout_input_t : input stream for the audio output
  128.  *****************************************************************************/
  129. #define AOUT_RESAMPLING_NONE     0
  130. #define AOUT_RESAMPLING_UP       1
  131. #define AOUT_RESAMPLING_DOWN     2
  132. struct aout_input_t
  133. {
  134.     /* When this lock is taken, the pipeline cannot be changed by a
  135.      * third-party. */
  136.     vlc_mutex_t             lock;
  137.     audio_sample_format_t   input;
  138.     aout_alloc_t            input_alloc;
  139.     /* pre-filters */
  140.     aout_filter_t *         pp_filters[AOUT_MAX_FILTERS];
  141.     int                     i_nb_filters;
  142.     /* resamplers */
  143.     aout_filter_t *         pp_resamplers[AOUT_MAX_FILTERS];
  144.     int                     i_nb_resamplers;
  145.     int                     i_resampling_type;
  146.     mtime_t                 i_resamp_start_date;
  147.     int                     i_resamp_start_drift;
  148.     aout_fifo_t             fifo;
  149.     /* Mixer information */
  150.     byte_t *                p_first_byte_to_mix;
  151.     /* If b_restart == 1, the input pipeline will be re-created. */
  152.     vlc_bool_t              b_restart;
  153.     /* If b_error == 1, there is no input pipeline. */
  154.     vlc_bool_t              b_error;
  155.     /* Did we just change the output format? (expect buffer inconsistencies) */
  156.     vlc_bool_t              b_changed;
  157.     /* internal caching delay from input */
  158.     int                     i_pts_delay;
  159.     /* desynchronisation delay request by the user */
  160.     int                     i_desync;
  161. };
  162. /*****************************************************************************
  163.  * aout_output_t : output stream for the audio output
  164.  *****************************************************************************/
  165. typedef struct aout_output_t
  166. {
  167.     audio_sample_format_t   output;
  168.     /* Indicates whether the audio output is currently starving, to avoid
  169.      * printing a 1,000 "output is starving" messages. */
  170.     vlc_bool_t              b_starving;
  171.     /* post-filters */
  172.     aout_filter_t *         pp_filters[AOUT_MAX_FILTERS];
  173.     int                     i_nb_filters;
  174.     aout_fifo_t             fifo;
  175.     struct module_t *       p_module;
  176.     struct aout_sys_t *     p_sys;
  177.     void                 (* pf_play)( aout_instance_t * );
  178.     int                  (* pf_volume_get )( aout_instance_t *, audio_volume_t * );
  179.     int                  (* pf_volume_set )( aout_instance_t *, audio_volume_t );
  180.     int                  (* pf_volume_infos )( aout_instance_t *, audio_volume_t * );
  181.     int                     i_nb_samples;
  182.     /* Current volume for the output - it's just a placeholder, the plug-in
  183.      * may or may not use it. */
  184.     audio_volume_t          i_volume;
  185.     /* If b_error == 1, there is no audio output pipeline. */
  186.     vlc_bool_t              b_error;
  187. } aout_output_t;
  188. /*****************************************************************************
  189.  * aout_instance_t : audio output thread descriptor
  190.  *****************************************************************************/
  191. struct aout_instance_t
  192. {
  193.     VLC_COMMON_MEMBERS
  194.     /* Locks : please note that if you need several of these locks, it is
  195.      * mandatory (to avoid deadlocks) to take them in the following order :
  196.      * mixer_lock, p_input->lock, output_fifo_lock, input_fifos_lock.
  197.      * --Meuuh */
  198.     /* When input_fifos_lock is taken, none of the p_input->fifo structures
  199.      * can be read or modified by a third-party thread. */
  200.     vlc_mutex_t             input_fifos_lock;
  201.     /* When mixer_lock is taken, all decoder threads willing to mix a
  202.      * buffer must wait until it is released. The output pipeline cannot
  203.      * be modified. No input stream can be added or removed. */
  204.     vlc_mutex_t             mixer_lock;
  205.     /* When output_fifo_lock is taken, the p_aout->output.fifo structure
  206.      * cannot be read or written  by a third-party thread. */
  207.     vlc_mutex_t             output_fifo_lock;
  208.     /* Input streams & pre-filters */
  209.     aout_input_t *          pp_inputs[AOUT_MAX_INPUTS];
  210.     int                     i_nb_inputs;
  211.     /* Mixer */
  212.     aout_mixer_t            mixer;
  213.     /* Output plug-in */
  214.     aout_output_t           output;
  215. };
  216. /*****************************************************************************
  217.  * Prototypes
  218.  *****************************************************************************/
  219. /* From input.c : */
  220. int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input );
  221. int aout_InputDelete( aout_instance_t * p_aout, aout_input_t * p_input );
  222. int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input,
  223.                     aout_buffer_t * p_buffer );
  224. /* From filters.c : */
  225. VLC_EXPORT( int, aout_FiltersCreatePipeline, ( aout_instance_t * p_aout, aout_filter_t ** pp_filters, int * pi_nb_filters, const audio_sample_format_t * p_input_format, const audio_sample_format_t * p_output_format ) );
  226. VLC_EXPORT( void, aout_FiltersDestroyPipeline, ( aout_instance_t * p_aout, aout_filter_t ** pp_filters, int i_nb_filters ) );
  227. VLC_EXPORT( void, aout_FiltersPlay, ( aout_instance_t * p_aout, aout_filter_t ** pp_filters, int i_nb_filters, aout_buffer_t ** pp_input_buffer ) );
  228. void aout_FiltersHintBuffers( aout_instance_t * p_aout, aout_filter_t ** pp_filters, int i_nb_filters, aout_alloc_t * p_first_alloc );
  229. /* From mixer.c : */
  230. int aout_MixerNew( aout_instance_t * p_aout );
  231. void aout_MixerDelete( aout_instance_t * p_aout );
  232. void aout_MixerRun( aout_instance_t * p_aout );
  233. int aout_MixerMultiplierSet( aout_instance_t * p_aout, float f_multiplier );
  234. int aout_MixerMultiplierGet( aout_instance_t * p_aout, float * pf_multiplier );
  235. /* From output.c : */
  236. int aout_OutputNew( aout_instance_t * p_aout,
  237.                     audio_sample_format_t * p_format );
  238. void aout_OutputPlay( aout_instance_t * p_aout, aout_buffer_t * p_buffer );
  239. void aout_OutputDelete( aout_instance_t * p_aout );
  240. VLC_EXPORT( aout_buffer_t *, aout_OutputNextBuffer, ( aout_instance_t *, mtime_t, vlc_bool_t ) );
  241. /* From common.c : */
  242. VLC_EXPORT( unsigned int, aout_FormatNbChannels, ( const audio_sample_format_t * p_format ) );
  243. VLC_EXPORT( void, aout_FormatPrepare, ( audio_sample_format_t * p_format ) );
  244. VLC_EXPORT( void, aout_FormatPrint, ( aout_instance_t * p_aout, const char * psz_text, const audio_sample_format_t * p_format ) );
  245. VLC_EXPORT( void, aout_FormatsPrint, ( aout_instance_t * p_aout, const char * psz_text, const audio_sample_format_t * p_format1, const audio_sample_format_t * p_format2 ) );
  246. VLC_EXPORT( const char *, aout_FormatPrintChannels, ( const audio_sample_format_t * ) );
  247. void aout_FifoInit( aout_instance_t *, aout_fifo_t *, uint32_t );
  248. mtime_t aout_FifoNextStart( aout_instance_t *, aout_fifo_t * );
  249. void aout_FifoPush( aout_instance_t *, aout_fifo_t *, aout_buffer_t * );
  250. void aout_FifoSet( aout_instance_t *, aout_fifo_t *, mtime_t );
  251. void aout_FifoMoveDates( aout_instance_t *, aout_fifo_t *, mtime_t );
  252. VLC_EXPORT( aout_buffer_t *, aout_FifoPop, ( aout_instance_t * p_aout, aout_fifo_t * p_fifo ) );
  253. void aout_FifoDestroy( aout_instance_t * p_aout, aout_fifo_t * p_fifo );
  254. VLC_EXPORT( mtime_t, aout_FifoFirstDate, ( aout_instance_t *, aout_fifo_t * ) );
  255. /* From intf.c :*/
  256. VLC_EXPORT( void, aout_VolumeSoftInit, ( aout_instance_t * ) );
  257. int aout_VolumeSoftGet( aout_instance_t *, audio_volume_t * );
  258. int aout_VolumeSoftSet( aout_instance_t *, audio_volume_t );
  259. int aout_VolumeSoftInfos( aout_instance_t *, audio_volume_t * );
  260. VLC_EXPORT( void, aout_VolumeNoneInit, ( aout_instance_t * ) );
  261. int aout_VolumeNoneGet( aout_instance_t *, audio_volume_t * );
  262. int aout_VolumeNoneSet( aout_instance_t *, audio_volume_t );
  263. int aout_VolumeNoneInfos( aout_instance_t *, audio_volume_t * );