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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * dec.c : audio output API towards decoders
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2007 the VideoLAN team
  5.  * $Id: b31b02f4af6b4db366d8aff428f48994a001a3e3 $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #ifdef HAVE_ALLOCA_H
  31. #   include <alloca.h>
  32. #endif
  33. #include <vlc_aout.h>
  34. #include <vlc_input.h>
  35. #include "aout_internal.h"
  36. /*****************************************************************************
  37.  * aout_DecNew : create a decoder
  38.  *****************************************************************************/
  39. static aout_input_t * DecNew( aout_instance_t * p_aout,
  40.                               audio_sample_format_t *p_format,
  41.                               const audio_replay_gain_t *p_replay_gain,
  42.                               const aout_request_vout_t *p_request_vout )
  43. {
  44.     aout_input_t * p_input;
  45.     /* Sanitize audio format */
  46.     if( p_format->i_channels > 32 )
  47.     {
  48.         msg_Err( p_aout, "too many audio channels (%u)",
  49.                  p_format->i_channels );
  50.         return NULL;
  51.     }
  52.     if( p_format->i_channels <= 0 )
  53.     {
  54.         msg_Err( p_aout, "no audio channels" );
  55.         return NULL;
  56.     }
  57.     if( p_format->i_channels != aout_FormatNbChannels( p_format ) )
  58.     {
  59.         msg_Err( p_aout, "incompatible audio channels count with layout mask" );
  60.         return NULL;
  61.     }
  62.     if( p_format->i_rate > 192000 )
  63.     {
  64.         msg_Err( p_aout, "excessive audio sample frequency (%u)",
  65.                  p_format->i_rate );
  66.         return NULL;
  67.     }
  68.     if( p_format->i_rate < 4000 )
  69.     {
  70.         msg_Err( p_aout, "too low audio sample frequency (%u)",
  71.                  p_format->i_rate );
  72.         return NULL;
  73.     }
  74.     /* We can only be called by the decoder, so no need to lock
  75.      * p_input->lock. */
  76.     aout_lock_mixer( p_aout );
  77.     if ( p_aout->i_nb_inputs >= AOUT_MAX_INPUTS )
  78.     {
  79.         msg_Err( p_aout, "too many inputs already (%d)", p_aout->i_nb_inputs );
  80.         goto error;
  81.     }
  82.     p_input = calloc( 1, sizeof(aout_input_t));
  83.     if( !p_input )
  84.         goto error;
  85.     vlc_mutex_init( &p_input->lock );
  86.     p_input->b_changed = false;
  87.     p_input->b_error = true;
  88.     p_input->b_paused = false;
  89.     p_input->i_pause_date = 0;
  90.     aout_FormatPrepare( p_format );
  91.     memcpy( &p_input->input, p_format,
  92.             sizeof(audio_sample_format_t) );
  93.     if( p_replay_gain )
  94.         p_input->replay_gain = *p_replay_gain;
  95.     aout_lock_input_fifos( p_aout );
  96.     p_aout->pp_inputs[p_aout->i_nb_inputs] = p_input;
  97.     p_aout->i_nb_inputs++;
  98.     if ( p_aout->mixer.b_error )
  99.     {
  100.         int i;
  101.         var_Destroy( p_aout, "audio-device" );
  102.         var_Destroy( p_aout, "audio-channels" );
  103.         /* Recreate the output using the new format. */
  104.         if ( aout_OutputNew( p_aout, p_format ) < 0 )
  105.         {
  106.             for ( i = 0; i < p_aout->i_nb_inputs - 1; i++ )
  107.             {
  108.                 aout_lock_input( p_aout, p_aout->pp_inputs[i] );
  109.                 aout_InputDelete( p_aout, p_aout->pp_inputs[i] );
  110.                 aout_unlock_input( p_aout, p_aout->pp_inputs[i] );
  111.             }
  112.             aout_unlock_input_fifos( p_aout );
  113.             aout_unlock_mixer( p_aout );
  114.             return p_input;
  115.         }
  116.         /* Create other input streams. */
  117.         for ( i = 0; i < p_aout->i_nb_inputs - 1; i++ )
  118.         {
  119.             aout_input_t *p_input = p_aout->pp_inputs[i];
  120.             aout_lock_input( p_aout, p_input );
  121.             aout_InputDelete( p_aout, p_input );
  122.             aout_InputNew( p_aout, p_input, &p_input->request_vout );
  123.             aout_unlock_input( p_aout, p_input );
  124.         }
  125.     }
  126.     else
  127.     {
  128.         aout_MixerDelete( p_aout );
  129.     }
  130.     if ( aout_MixerNew( p_aout ) == -1 )
  131.     {
  132.         aout_OutputDelete( p_aout );
  133.         aout_unlock_input_fifos( p_aout );
  134.         goto error;
  135.     }
  136.     aout_InputNew( p_aout, p_input, p_request_vout );
  137.     aout_unlock_input_fifos( p_aout );
  138.     aout_unlock_mixer( p_aout );
  139.     return p_input;
  140. error:
  141.     aout_unlock_mixer( p_aout );
  142.     return NULL;
  143. }
  144. aout_input_t * __aout_DecNew( vlc_object_t * p_this,
  145.                               aout_instance_t ** pp_aout,
  146.                               audio_sample_format_t * p_format,
  147.                               const audio_replay_gain_t *p_replay_gain,
  148.                               const aout_request_vout_t *p_request_video )
  149. {
  150.     aout_instance_t *p_aout = *pp_aout;
  151.     if ( p_aout == NULL )
  152.     {
  153.         msg_Dbg( p_this, "no aout present, spawning one" );
  154.         p_aout = aout_New( p_this );
  155.         /* Everything failed, I'm a loser, I just wanna die */
  156.         if( p_aout == NULL )
  157.             return NULL;
  158.         vlc_object_attach( p_aout, p_this );
  159.         *pp_aout = p_aout;
  160.     }
  161.     return DecNew( p_aout, p_format, p_replay_gain, p_request_video );
  162. }
  163. /*****************************************************************************
  164.  * aout_DecDelete : delete a decoder
  165.  *****************************************************************************/
  166. int aout_DecDelete( aout_instance_t * p_aout, aout_input_t * p_input )
  167. {
  168.     int i_input;
  169.     /* This function can only be called by the decoder itself, so no need
  170.      * to lock p_input->lock. */
  171.     aout_lock_mixer( p_aout );
  172.     for ( i_input = 0; i_input < p_aout->i_nb_inputs; i_input++ )
  173.     {
  174.         if ( p_aout->pp_inputs[i_input] == p_input )
  175.         {
  176.             break;
  177.         }
  178.     }
  179.     if ( i_input == p_aout->i_nb_inputs )
  180.     {
  181.         msg_Err( p_aout, "cannot find an input to delete" );
  182.         aout_unlock_mixer( p_aout );
  183.         return -1;
  184.     }
  185.     /* Remove the input from the list. */
  186.     memmove( &p_aout->pp_inputs[i_input], &p_aout->pp_inputs[i_input + 1],
  187.              (AOUT_MAX_INPUTS - i_input - 1) * sizeof(aout_input_t *) );
  188.     p_aout->i_nb_inputs--;
  189.     aout_InputDelete( p_aout, p_input );
  190.     vlc_mutex_destroy( &p_input->lock );
  191.     free( p_input );
  192.     if ( !p_aout->i_nb_inputs )
  193.     {
  194.         aout_OutputDelete( p_aout );
  195.         aout_MixerDelete( p_aout );
  196.         if ( var_Type( p_aout, "audio-device" ) != 0 )
  197.         {
  198.             var_Destroy( p_aout, "audio-device" );
  199.         }
  200.         if ( var_Type( p_aout, "audio-channels" ) != 0 )
  201.         {
  202.             var_Destroy( p_aout, "audio-channels" );
  203.         }
  204.     }
  205.     aout_unlock_mixer( p_aout );
  206.     return 0;
  207. }
  208. /*
  209.  * Buffer management
  210.  */
  211. /*****************************************************************************
  212.  * aout_DecNewBuffer : ask for a new empty buffer
  213.  *****************************************************************************/
  214. aout_buffer_t * aout_DecNewBuffer( aout_input_t * p_input,
  215.                                    size_t i_nb_samples )
  216. {
  217.     aout_buffer_t * p_buffer;
  218.     mtime_t duration;
  219.     aout_lock_input( NULL, p_input );
  220.     if ( p_input->b_error )
  221.     {
  222.         aout_unlock_input( NULL, p_input );
  223.         return NULL;
  224.     }
  225.     duration = (1000000 * (mtime_t)i_nb_samples) / p_input->input.i_rate;
  226.     /* This necessarily allocates in the heap. */
  227.     aout_BufferAlloc( &p_input->input_alloc, duration, NULL, p_buffer );
  228.     if( p_buffer != NULL )
  229.         p_buffer->i_nb_bytes = i_nb_samples * p_input->input.i_bytes_per_frame
  230.                                   / p_input->input.i_frame_length;
  231.     /* Suppose the decoder doesn't have more than one buffered buffer */
  232.     p_input->b_changed = false;
  233.     aout_unlock_input( NULL, p_input );
  234.     if( p_buffer == NULL )
  235.         return NULL;
  236.     p_buffer->i_nb_samples = i_nb_samples;
  237.     p_buffer->start_date = p_buffer->end_date = 0;
  238.     return p_buffer;
  239. }
  240. /*****************************************************************************
  241.  * aout_DecDeleteBuffer : destroy an undecoded buffer
  242.  *****************************************************************************/
  243. void aout_DecDeleteBuffer( aout_instance_t * p_aout, aout_input_t * p_input,
  244.                            aout_buffer_t * p_buffer )
  245. {
  246.     (void)p_aout; (void)p_input;
  247.     aout_BufferFree( p_buffer );
  248. }
  249. /*****************************************************************************
  250.  * aout_DecPlay : filter & mix the decoded buffer
  251.  *****************************************************************************/
  252. int aout_DecPlay( aout_instance_t * p_aout, aout_input_t * p_input,
  253.                   aout_buffer_t * p_buffer, int i_input_rate )
  254. {
  255.     assert( i_input_rate >= INPUT_RATE_DEFAULT / AOUT_MAX_INPUT_RATE &&
  256.             i_input_rate <= INPUT_RATE_DEFAULT * AOUT_MAX_INPUT_RATE );
  257.     assert( p_buffer->start_date > 0 );
  258.     p_buffer->end_date = p_buffer->start_date
  259.                             + (mtime_t)p_buffer->i_nb_samples * 1000000
  260.                                 / p_input->input.i_rate;
  261.     aout_lock_input( p_aout, p_input );
  262.     if( p_input->b_error )
  263.     {
  264.         aout_unlock_input( p_aout, p_input );
  265.         aout_BufferFree( p_buffer );
  266.         return -1;
  267.     }
  268.     if( p_input->b_changed )
  269.     {
  270.         /* Maybe the allocation size has changed. Re-allocate a buffer. */
  271.         aout_buffer_t * p_new_buffer;
  272.         mtime_t duration = (1000000 * (mtime_t)p_buffer->i_nb_samples)
  273.                             / p_input->input.i_rate;
  274.         aout_BufferAlloc( &p_input->input_alloc, duration, NULL, p_new_buffer );
  275.         vlc_memcpy( p_new_buffer->p_buffer, p_buffer->p_buffer,
  276.                     p_buffer->i_nb_bytes );
  277.         p_new_buffer->i_nb_samples = p_buffer->i_nb_samples;
  278.         p_new_buffer->i_nb_bytes = p_buffer->i_nb_bytes;
  279.         p_new_buffer->start_date = p_buffer->start_date;
  280.         p_new_buffer->end_date = p_buffer->end_date;
  281.         aout_BufferFree( p_buffer );
  282.         p_buffer = p_new_buffer;
  283.         p_input->b_changed = false;
  284.     }
  285.     int i_ret = aout_InputPlay( p_aout, p_input, p_buffer, i_input_rate );
  286.     aout_unlock_input( p_aout, p_input );
  287.     if( i_ret == -1 )
  288.         return -1;
  289.     /* Run the mixer if it is able to run. */
  290.     aout_lock_mixer( p_aout );
  291.     aout_MixerRun( p_aout );
  292.     aout_unlock_mixer( p_aout );
  293.     return 0;
  294. }
  295. int aout_DecGetResetLost( aout_instance_t *p_aout, aout_input_t *p_input )
  296. {
  297.     aout_lock_input( p_aout, p_input );
  298.     int i_value = p_input->i_buffer_lost;
  299.     p_input->i_buffer_lost = 0;
  300.     aout_unlock_input( p_aout, p_input );
  301.     return i_value;
  302. }
  303. void aout_DecChangePause( aout_instance_t *p_aout, aout_input_t *p_input, bool b_paused, mtime_t i_date )
  304. {
  305.     mtime_t i_duration = 0;
  306.     aout_lock_input( p_aout, p_input );
  307.     assert( !p_input->b_paused || !b_paused );
  308.     if( p_input->b_paused )
  309.     {
  310.         i_duration = i_date - p_input->i_pause_date;
  311.     }
  312.     p_input->b_paused = b_paused;
  313.     p_input->i_pause_date = i_date;
  314.     aout_unlock_input( p_aout, p_input );
  315.     if( i_duration != 0 )
  316.     {
  317.         aout_lock_mixer( p_aout );
  318.         for( aout_buffer_t *p = p_input->fifo.p_first; p != NULL; p = p->p_next )
  319.         {
  320.             p->start_date += i_duration;
  321.             p->end_date += i_duration;
  322.         }
  323.         aout_unlock_mixer( p_aout );
  324.     }
  325. }
  326. void aout_DecFlush( aout_instance_t *p_aout, aout_input_t *p_input )
  327. {
  328.     aout_lock_input_fifos( p_aout );
  329.     aout_FifoSet( p_aout, &p_input->fifo, 0 );
  330.     p_input->p_first_byte_to_mix = NULL;
  331.     aout_unlock_input_fifos( p_aout );
  332. }