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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * mixer.c : audio output mixing operations
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2004 VideoLAN
  5.  * $Id: mixer.c 9010 2004-10-18 13:57:03Z 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.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>                            /* calloc(), malloc(), free() */
  27. #include <string.h>
  28. #include <vlc/vlc.h>
  29. #ifdef HAVE_ALLOCA_H
  30. #   include <alloca.h>
  31. #endif
  32. #include "audio_output.h"
  33. #include "aout_internal.h"
  34. /*****************************************************************************
  35.  * aout_MixerNew: prepare a mixer plug-in
  36.  *****************************************************************************
  37.  * Please note that you must hold the mixer lock.
  38.  *****************************************************************************/
  39. int aout_MixerNew( aout_instance_t * p_aout )
  40. {
  41.     p_aout->mixer.p_module = module_Need( p_aout, "audio mixer", NULL, 0 );
  42.     if ( p_aout->mixer.p_module == NULL )
  43.     {
  44.         msg_Err( p_aout, "no suitable aout mixer" );
  45.         return -1;
  46.     }
  47.     p_aout->mixer.b_error = 0;
  48.     return 0;
  49. }
  50. /*****************************************************************************
  51.  * aout_MixerDelete: delete the mixer
  52.  *****************************************************************************
  53.  * Please note that you must hold the mixer lock.
  54.  *****************************************************************************/
  55. void aout_MixerDelete( aout_instance_t * p_aout )
  56. {
  57.     if ( p_aout->mixer.b_error ) return;
  58.     module_Unneed( p_aout, p_aout->mixer.p_module );
  59.     p_aout->mixer.b_error = 1;
  60. }
  61. /*****************************************************************************
  62.  * MixBuffer: try to prepare one output buffer
  63.  *****************************************************************************
  64.  * Please note that you must hold the mixer lock.
  65.  *****************************************************************************/
  66. static int MixBuffer( aout_instance_t * p_aout )
  67. {
  68.     int             i, i_first_input = 0;
  69.     aout_buffer_t * p_output_buffer;
  70.     mtime_t start_date, end_date;
  71.     audio_date_t exact_start_date;
  72.     if ( p_aout->mixer.b_error )
  73.     {
  74.         /* Free all incoming buffers. */
  75.         vlc_mutex_lock( &p_aout->input_fifos_lock );
  76.         for ( i = 0; i < p_aout->i_nb_inputs; i++ )
  77.         {
  78.             aout_input_t * p_input = p_aout->pp_inputs[i];
  79.             aout_buffer_t * p_buffer = p_input->fifo.p_first;
  80.             if ( p_input->b_error ) continue;
  81.             while ( p_buffer != NULL )
  82.             {
  83.                 aout_buffer_t * p_next = p_buffer->p_next;
  84.                 aout_BufferFree( p_buffer );
  85.                 p_buffer = p_next;
  86.             }
  87.         }
  88.         vlc_mutex_unlock( &p_aout->input_fifos_lock );
  89.         return -1;
  90.     }
  91.     vlc_mutex_lock( &p_aout->output_fifo_lock );
  92.     vlc_mutex_lock( &p_aout->input_fifos_lock );
  93.     /* Retrieve the date of the next buffer. */
  94.     memcpy( &exact_start_date, &p_aout->output.fifo.end_date,
  95.             sizeof(audio_date_t) );
  96.     start_date = aout_DateGet( &exact_start_date );
  97.     if ( start_date != 0 && start_date < mdate() )
  98.     {
  99.         /* The output is _very_ late. This can only happen if the user
  100.          * pauses the stream (or if the decoder is buggy, which cannot
  101.          * happen :). */
  102.         msg_Warn( p_aout, "output PTS is out of range ("I64Fd"), clearing out",
  103.                   mdate() - start_date );
  104.         aout_FifoSet( p_aout, &p_aout->output.fifo, 0 );
  105.         aout_DateSet( &exact_start_date, 0 );
  106.         start_date = 0;
  107.     }
  108.     vlc_mutex_unlock( &p_aout->output_fifo_lock );
  109.     /* See if we have enough data to prepare a new buffer for the audio
  110.      * output. First : start date. */
  111.     if ( !start_date )
  112.     {
  113.         /* Find the latest start date available. */
  114.         for ( i = 0; i < p_aout->i_nb_inputs; i++ )
  115.         {
  116.             aout_input_t * p_input = p_aout->pp_inputs[i];
  117.             aout_fifo_t * p_fifo = &p_input->fifo;
  118.             aout_buffer_t * p_buffer;
  119.             if ( p_input->b_error ) continue;
  120.             p_buffer = p_fifo->p_first;
  121.             while ( p_buffer != NULL && p_buffer->start_date < mdate() )
  122.             {
  123.                 msg_Warn( p_aout, "input PTS is out of range ("I64Fd"), "
  124.                           "trashing", mdate() - p_buffer->start_date );
  125.                 p_buffer = aout_FifoPop( p_aout, p_fifo );
  126.                 aout_BufferFree( p_buffer );
  127.                 p_buffer = p_fifo->p_first;
  128.                 p_input->p_first_byte_to_mix = NULL;
  129.             }
  130.             if ( p_buffer == NULL )
  131.             {
  132.                 break;
  133.             }
  134.             if ( !start_date || start_date < p_buffer->start_date )
  135.             {
  136.                 aout_DateSet( &exact_start_date, p_buffer->start_date );
  137.                 start_date = p_buffer->start_date;
  138.             }
  139.         }
  140.         if ( i < p_aout->i_nb_inputs )
  141.         {
  142.             /* Interrupted before the end... We can't run. */
  143.             vlc_mutex_unlock( &p_aout->input_fifos_lock );
  144.             return -1;
  145.         }
  146.     }
  147.     aout_DateIncrement( &exact_start_date, p_aout->output.i_nb_samples );
  148.     end_date = aout_DateGet( &exact_start_date );
  149.     /* Check that start_date and end_date are available for all input
  150.      * streams. */
  151.     for ( i = 0; i < p_aout->i_nb_inputs; i++ )
  152.     {
  153.         aout_input_t * p_input = p_aout->pp_inputs[i];
  154.         aout_fifo_t * p_fifo = &p_input->fifo;
  155.         aout_buffer_t * p_buffer;
  156.         mtime_t prev_date;
  157.         vlc_bool_t b_drop_buffers;
  158.         if ( p_input->b_error )
  159.         {
  160.             if ( i_first_input == i ) i_first_input++;
  161.             continue;
  162.         }
  163.         p_buffer = p_fifo->p_first;
  164.         if ( p_buffer == NULL )
  165.         {
  166.             break;
  167.         }
  168.         /* Check for the continuity of start_date */
  169.         while ( p_buffer != NULL && p_buffer->end_date < start_date - 1 )
  170.         {
  171.             /* We authorize a +-1 because rounding errors get compensated
  172.              * regularly. */
  173.             aout_buffer_t * p_next = p_buffer->p_next;
  174.             msg_Warn( p_aout, "the mixer got a packet in the past ("I64Fd")",
  175.                       start_date - p_buffer->end_date );
  176.             aout_BufferFree( p_buffer );
  177.             p_fifo->p_first = p_buffer = p_next;
  178.             p_input->p_first_byte_to_mix = NULL;
  179.         }
  180.         if ( p_buffer == NULL )
  181.         {
  182.             p_fifo->pp_last = &p_fifo->p_first;
  183.             break;
  184.         }
  185.         /* Check that we have enough samples. */
  186.         for ( ; ; )
  187.         {
  188.             p_buffer = p_fifo->p_first;
  189.             if ( p_buffer == NULL ) break;
  190.             if ( p_buffer->end_date >= end_date ) break;
  191.             /* Check that all buffers are contiguous. */
  192.             prev_date = p_fifo->p_first->end_date;
  193.             p_buffer = p_buffer->p_next;
  194.             b_drop_buffers = 0;
  195.             for ( ; p_buffer != NULL; p_buffer = p_buffer->p_next )
  196.             {
  197.                 if ( prev_date != p_buffer->start_date )
  198.                 {
  199.                     msg_Warn( p_aout,
  200.                               "buffer hole, dropping packets ("I64Fd")",
  201.                               p_buffer->start_date - prev_date );
  202.                     b_drop_buffers = 1;
  203.                     break;
  204.                 }
  205.                 if ( p_buffer->end_date >= end_date ) break;
  206.                 prev_date = p_buffer->end_date;
  207.             }
  208.             if ( b_drop_buffers )
  209.             {
  210.                 aout_buffer_t * p_deleted = p_fifo->p_first;
  211.                 while ( p_deleted != NULL && p_deleted != p_buffer )
  212.                 {
  213.                     aout_buffer_t * p_next = p_deleted->p_next;
  214.                     aout_BufferFree( p_deleted );
  215.                     p_deleted = p_next;
  216.                 }
  217.                 p_fifo->p_first = p_deleted; /* == p_buffer */
  218.             }
  219.             else break;
  220.         }
  221.         if ( p_buffer == NULL ) break;
  222.         p_buffer = p_fifo->p_first;
  223.         if ( !AOUT_FMT_NON_LINEAR( &p_aout->mixer.mixer ) )
  224.         {
  225.             /* Additionally check that p_first_byte_to_mix is well
  226.              * located. */
  227.             mtime_t i_nb_bytes = (start_date - p_buffer->start_date)
  228.                             * p_aout->mixer.mixer.i_bytes_per_frame
  229.                             * p_aout->mixer.mixer.i_rate
  230.                             / p_aout->mixer.mixer.i_frame_length
  231.                             / 1000000;
  232.             ptrdiff_t mixer_nb_bytes;
  233.             if ( p_input->p_first_byte_to_mix == NULL )
  234.             {
  235.                 p_input->p_first_byte_to_mix = p_buffer->p_buffer;
  236.             }
  237.             mixer_nb_bytes = p_input->p_first_byte_to_mix - p_buffer->p_buffer;
  238.             if ( !((i_nb_bytes + p_aout->mixer.mixer.i_bytes_per_frame
  239.                      > mixer_nb_bytes) &&
  240.                    (i_nb_bytes < p_aout->mixer.mixer.i_bytes_per_frame
  241.                      + mixer_nb_bytes)) )
  242.             {
  243.                 msg_Warn( p_aout, "mixer start isn't output start ("I64Fd")",
  244.                           i_nb_bytes - mixer_nb_bytes );
  245.                 /* Round to the nearest multiple */
  246.                 i_nb_bytes /= p_aout->mixer.mixer.i_bytes_per_frame;
  247.                 i_nb_bytes *= p_aout->mixer.mixer.i_bytes_per_frame;
  248.                 if( i_nb_bytes < 0 )
  249.                 {
  250.                     /* Is it really the best way to do it ? */
  251.                     aout_FifoSet( p_aout, &p_aout->output.fifo, 0 );
  252.                     aout_DateSet( &exact_start_date, 0 );
  253.                     break;
  254.                 }
  255.                 p_input->p_first_byte_to_mix = p_buffer->p_buffer + i_nb_bytes;
  256.             }
  257.         }
  258.     }
  259.     if ( i < p_aout->i_nb_inputs || i_first_input == p_aout->i_nb_inputs )
  260.     {
  261.         /* Interrupted before the end... We can't run. */
  262.         vlc_mutex_unlock( &p_aout->input_fifos_lock );
  263.         return -1;
  264.     }
  265.     /* Run the mixer. */
  266.     aout_BufferAlloc( &p_aout->mixer.output_alloc,
  267.                       ((uint64_t)p_aout->output.i_nb_samples * 1000000)
  268.                         / p_aout->output.output.i_rate,
  269.                       /* This is a bit kludgy, but is actually only used
  270.                        * for the S/PDIF dummy mixer : */
  271.                       p_aout->pp_inputs[i_first_input]->fifo.p_first,
  272.                       p_output_buffer );
  273.     if ( p_output_buffer == NULL )
  274.     {
  275.         msg_Err( p_aout, "out of memory" );
  276.         vlc_mutex_unlock( &p_aout->input_fifos_lock );
  277.         return -1;
  278.     }
  279.     /* This is again a bit kludgy - for the S/PDIF mixer. */
  280.     if ( p_aout->mixer.output_alloc.i_alloc_type != AOUT_ALLOC_NONE )
  281.     {
  282.         p_output_buffer->i_nb_samples = p_aout->output.i_nb_samples;
  283.         p_output_buffer->i_nb_bytes = p_aout->output.i_nb_samples
  284.                               * p_aout->mixer.mixer.i_bytes_per_frame
  285.                               / p_aout->mixer.mixer.i_frame_length;
  286.     }
  287.     p_output_buffer->start_date = start_date;
  288.     p_output_buffer->end_date = end_date;
  289.     p_aout->mixer.pf_do_work( p_aout, p_output_buffer );
  290.     vlc_mutex_unlock( &p_aout->input_fifos_lock );
  291.     aout_OutputPlay( p_aout, p_output_buffer );
  292.     return 0;
  293. }
  294. /*****************************************************************************
  295.  * aout_MixerRun: entry point for the mixer & post-filters processing
  296.  *****************************************************************************
  297.  * Please note that you must hold the mixer lock.
  298.  *****************************************************************************/
  299. void aout_MixerRun( aout_instance_t * p_aout )
  300. {
  301.     while( MixBuffer( p_aout ) != -1 );
  302. }
  303. /*****************************************************************************
  304.  * aout_MixerMultiplierSet: set p_aout->mixer.f_multiplier
  305.  *****************************************************************************
  306.  * Please note that we assume that you own the mixer lock when entering this
  307.  * function. This function returns -1 on error.
  308.  *****************************************************************************/
  309. int aout_MixerMultiplierSet( aout_instance_t * p_aout, float f_multiplier )
  310. {
  311.     float f_old = p_aout->mixer.f_multiplier;
  312.     vlc_bool_t b_new_mixer = 0;
  313.     if ( !p_aout->mixer.b_error )
  314.     {
  315.         aout_MixerDelete( p_aout );
  316.         b_new_mixer = 1;
  317.     }
  318.     p_aout->mixer.f_multiplier = f_multiplier;
  319.     if ( b_new_mixer && aout_MixerNew( p_aout ) )
  320.     {
  321.         p_aout->mixer.f_multiplier = f_old;
  322.         aout_MixerNew( p_aout );
  323.         return -1;
  324.     }
  325.     return 0;
  326. }
  327. /*****************************************************************************
  328.  * aout_MixerMultiplierGet: get p_aout->mixer.f_multiplier
  329.  *****************************************************************************
  330.  * Please note that we assume that you own the mixer lock when entering this
  331.  * function. This function returns -1 on error.
  332.  *****************************************************************************/
  333. int aout_MixerMultiplierGet( aout_instance_t * p_aout, float * pf_multiplier )
  334. {
  335.     *pf_multiplier = p_aout->mixer.f_multiplier;
  336.     return 0;
  337. }