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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * dec.c : audio output API towards decoders
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2004 VideoLAN
  5.  * $Id: dec.c 8905 2004-10-04 13:34:42Z 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. #include <vlc/input.h>                 /* for input_thread_t and i_pts_delay */
  35. /*
  36.  * Creation/Deletion
  37.  */
  38. /*****************************************************************************
  39.  * aout_DecNew : create a decoder
  40.  *****************************************************************************/
  41. static aout_input_t * DecNew( vlc_object_t * p_this, aout_instance_t * p_aout,
  42.                               audio_sample_format_t * p_format )
  43. {
  44.     aout_input_t * p_input;
  45.     input_thread_t * p_input_thread;
  46.     vlc_value_t val;
  47.     /* We can only be called by the decoder, so no need to lock
  48.      * p_input->lock. */
  49.     vlc_mutex_lock( &p_aout->mixer_lock );
  50.     if ( p_aout->i_nb_inputs >= AOUT_MAX_INPUTS )
  51.     {
  52.         msg_Err( p_aout, "too many inputs already (%d)", p_aout->i_nb_inputs );
  53.         return NULL;
  54.     }
  55.     p_input = malloc(sizeof(aout_input_t));
  56.     if ( p_input == NULL )
  57.     {
  58.         msg_Err( p_aout, "out of memory" );
  59.         return NULL;
  60.     }
  61.     vlc_mutex_init( p_aout, &p_input->lock );
  62.     p_input->b_changed = 0;
  63.     p_input->b_error = 1;
  64.     aout_FormatPrepare( p_format );
  65.     memcpy( &p_input->input, p_format,
  66.             sizeof(audio_sample_format_t) );
  67.     p_aout->pp_inputs[p_aout->i_nb_inputs] = p_input;
  68.     p_aout->i_nb_inputs++;
  69.     if ( p_aout->mixer.b_error )
  70.     {
  71.         int i;
  72.         var_Destroy( p_aout, "audio-device" );
  73.         var_Destroy( p_aout, "audio-channels" );
  74.         /* Recreate the output using the new format. */
  75.         if ( aout_OutputNew( p_aout, p_format ) < 0 )
  76.         {
  77.             for ( i = 0; i < p_aout->i_nb_inputs - 1; i++ )
  78.             {
  79.                 vlc_mutex_lock( &p_aout->pp_inputs[i]->lock );
  80.                 aout_InputDelete( p_aout, p_aout->pp_inputs[i] );
  81.                 vlc_mutex_unlock( &p_aout->pp_inputs[i]->lock );
  82.             }
  83.             vlc_mutex_unlock( &p_aout->mixer_lock );
  84.             return p_input;
  85.         }
  86.         /* Create other input streams. */
  87.         for ( i = 0; i < p_aout->i_nb_inputs - 1; i++ )
  88.         {
  89.             vlc_mutex_lock( &p_aout->pp_inputs[i]->lock );
  90.             aout_InputDelete( p_aout, p_aout->pp_inputs[i] );
  91.             aout_InputNew( p_aout, p_aout->pp_inputs[i] );
  92.             vlc_mutex_unlock( &p_aout->pp_inputs[i]->lock );
  93.         }
  94.     }
  95.     else
  96.     {
  97.         aout_MixerDelete( p_aout );
  98.     }
  99.     if ( aout_MixerNew( p_aout ) == -1 )
  100.     {
  101.         aout_OutputDelete( p_aout );
  102.         vlc_mutex_unlock( &p_aout->mixer_lock );
  103.         return NULL;
  104.     }
  105.     aout_InputNew( p_aout, p_input );
  106.     vlc_mutex_unlock( &p_aout->mixer_lock );
  107.     var_Create( p_this, "audio-desync", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  108.     var_Get( p_this, "audio-desync", &val );
  109.     p_input->i_desync = val.i_int * 1000;
  110.     p_input_thread = (input_thread_t *)vlc_object_find( p_this,
  111.                                            VLC_OBJECT_INPUT, FIND_PARENT );
  112.     if( p_input_thread )
  113.     {
  114.         p_input->i_pts_delay = p_input_thread->i_pts_delay;
  115.         p_input->i_pts_delay += p_input->i_desync;
  116.         vlc_object_release( p_input_thread );
  117.     }
  118.     else
  119.     {
  120.         p_input->i_pts_delay = DEFAULT_PTS_DELAY;
  121.         p_input->i_pts_delay += p_input->i_desync;
  122.     }
  123.     return p_input;
  124. }
  125. aout_input_t * __aout_DecNew( vlc_object_t * p_this,
  126.                               aout_instance_t ** pp_aout,
  127.                               audio_sample_format_t * p_format )
  128. {
  129.     if ( *pp_aout == NULL )
  130.     {
  131.         /* Create an audio output if there is none. */
  132.         *pp_aout = vlc_object_find( p_this, VLC_OBJECT_AOUT, FIND_ANYWHERE );
  133.         if( *pp_aout == NULL )
  134.         {
  135.             msg_Dbg( p_this, "no aout present, spawning one" );
  136.             *pp_aout = aout_New( p_this );
  137.             /* Everything failed, I'm a loser, I just wanna die */
  138.             if( *pp_aout == NULL )
  139.             {
  140.                 return NULL;
  141.             }
  142.             vlc_object_attach( *pp_aout, p_this->p_vlc );
  143.         }
  144.         else
  145.         {
  146.             vlc_object_release( *pp_aout );
  147.         }
  148.     }
  149.     return DecNew( p_this, *pp_aout, p_format );
  150. }
  151. /*****************************************************************************
  152.  * aout_DecDelete : delete a decoder
  153.  *****************************************************************************/
  154. int aout_DecDelete( aout_instance_t * p_aout, aout_input_t * p_input )
  155. {
  156.     int i_input;
  157.     /* This function can only be called by the decoder itself, so no need
  158.      * to lock p_input->lock. */
  159.     vlc_mutex_lock( &p_aout->mixer_lock );
  160.     for ( i_input = 0; i_input < p_aout->i_nb_inputs; i_input++ )
  161.     {
  162.         if ( p_aout->pp_inputs[i_input] == p_input )
  163.         {
  164.             break;
  165.         }
  166.     }
  167.     if ( i_input == p_aout->i_nb_inputs )
  168.     {
  169.         msg_Err( p_aout, "cannot find an input to delete" );
  170.         return -1;
  171.     }
  172.     /* Remove the input from the list. */
  173.     memmove( &p_aout->pp_inputs[i_input], &p_aout->pp_inputs[i_input + 1],
  174.              (AOUT_MAX_INPUTS - i_input - 1) * sizeof(aout_input_t *) );
  175.     p_aout->i_nb_inputs--;
  176.     aout_InputDelete( p_aout, p_input );
  177.     vlc_mutex_destroy( &p_input->lock );
  178.     free( p_input );
  179.     if ( !p_aout->i_nb_inputs )
  180.     {
  181.         aout_OutputDelete( p_aout );
  182.         aout_MixerDelete( p_aout );
  183.         if ( var_Type( p_aout, "audio-device" ) != 0 )
  184.         {
  185.             var_Destroy( p_aout, "audio-device" );
  186.         }
  187.         if ( var_Type( p_aout, "audio-channels" ) != 0 )
  188.         {
  189.             var_Destroy( p_aout, "audio-channels" );
  190.         }
  191.     }
  192.     vlc_mutex_unlock( &p_aout->mixer_lock );
  193.     return 0;
  194. }
  195. /*
  196.  * Buffer management
  197.  */
  198. /*****************************************************************************
  199.  * aout_DecNewBuffer : ask for a new empty buffer
  200.  *****************************************************************************/
  201. aout_buffer_t * aout_DecNewBuffer( aout_instance_t * p_aout,
  202.                                    aout_input_t * p_input,
  203.                                    size_t i_nb_samples )
  204. {
  205.     aout_buffer_t * p_buffer;
  206.     mtime_t duration;
  207.     vlc_mutex_lock( &p_input->lock );
  208.     if ( p_input->b_error )
  209.     {
  210.         vlc_mutex_unlock( &p_input->lock );
  211.         return NULL;
  212.     }
  213.     duration = (1000000 * (mtime_t)i_nb_samples) / p_input->input.i_rate;
  214.     /* This necessarily allocates in the heap. */
  215.     aout_BufferAlloc( &p_input->input_alloc, duration, NULL, p_buffer );
  216.     p_buffer->i_nb_samples = i_nb_samples;
  217.     p_buffer->i_nb_bytes = i_nb_samples * p_input->input.i_bytes_per_frame
  218.                               / p_input->input.i_frame_length;
  219.     /* Suppose the decoder doesn't have more than one buffered buffer */
  220.     p_input->b_changed = 0;
  221.     vlc_mutex_unlock( &p_input->lock );
  222.     if ( p_buffer == NULL )
  223.     {
  224.         msg_Err( p_aout, "NULL buffer !" );
  225.     }
  226.     else
  227.     {
  228.         p_buffer->start_date = p_buffer->end_date = 0;
  229.     }
  230.     return p_buffer;
  231. }
  232. /*****************************************************************************
  233.  * aout_DecDeleteBuffer : destroy an undecoded buffer
  234.  *****************************************************************************/
  235. void aout_DecDeleteBuffer( aout_instance_t * p_aout, aout_input_t * p_input,
  236.                            aout_buffer_t * p_buffer )
  237. {
  238.     aout_BufferFree( p_buffer );
  239. }
  240. /*****************************************************************************
  241.  * aout_DecPlay : filter & mix the decoded buffer
  242.  *****************************************************************************/
  243. int aout_DecPlay( aout_instance_t * p_aout, aout_input_t * p_input,
  244.                   aout_buffer_t * p_buffer )
  245. {
  246.     if ( p_buffer->start_date == 0 )
  247.     {
  248.         msg_Warn( p_aout, "non-dated buffer received" );
  249.         aout_BufferFree( p_buffer );
  250.         return -1;
  251.     }
  252.     /* Apply the desynchronisation requested by the user */
  253.     p_buffer->start_date += p_input->i_desync;
  254.     p_buffer->end_date += p_input->i_desync;
  255.     if ( p_buffer->start_date > mdate() + p_input->i_pts_delay +
  256.          AOUT_MAX_ADVANCE_TIME )
  257.     {
  258.         msg_Warn( p_aout, "received buffer in the future ("I64Fd")",
  259.                   p_buffer->start_date - mdate());
  260.         aout_BufferFree( p_buffer );
  261.         return -1;
  262.     }
  263.     p_buffer->end_date = p_buffer->start_date
  264.                             + (mtime_t)(p_buffer->i_nb_samples * 1000000)
  265.                                 / p_input->input.i_rate;
  266.     vlc_mutex_lock( &p_input->lock );
  267.     if ( p_input->b_error )
  268.     {
  269.         vlc_mutex_unlock( &p_input->lock );
  270.         aout_BufferFree( p_buffer );
  271.         return -1;
  272.     }
  273.     if ( p_input->b_changed )
  274.     {
  275.         /* Maybe the allocation size has changed. Re-allocate a buffer. */
  276.         aout_buffer_t * p_new_buffer;
  277.         mtime_t duration = (1000000 * (mtime_t)p_buffer->i_nb_samples)
  278.                             / p_input->input.i_rate;
  279.         aout_BufferAlloc( &p_input->input_alloc, duration, NULL, p_new_buffer );
  280.         p_aout->p_vlc->pf_memcpy( p_new_buffer->p_buffer, p_buffer->p_buffer,
  281.                                   p_buffer->i_nb_bytes );
  282.         p_new_buffer->i_nb_samples = p_buffer->i_nb_samples;
  283.         p_new_buffer->i_nb_bytes = p_buffer->i_nb_bytes;
  284.         p_new_buffer->start_date = p_buffer->start_date;
  285.         p_new_buffer->end_date = p_buffer->end_date;
  286.         aout_BufferFree( p_buffer );
  287.         p_buffer = p_new_buffer;
  288.         p_input->b_changed = 0;
  289.     }
  290.     /* If the buffer is too early, wait a while. */
  291.     mwait( p_buffer->start_date - AOUT_MAX_PREPARE_TIME );
  292.     if ( aout_InputPlay( p_aout, p_input, p_buffer ) == -1 )
  293.     {
  294.         vlc_mutex_unlock( &p_input->lock );
  295.         return -1;
  296.     }
  297.     vlc_mutex_unlock( &p_input->lock );
  298.     /* Run the mixer if it is able to run. */
  299.     vlc_mutex_lock( &p_aout->mixer_lock );
  300.     aout_MixerRun( p_aout );
  301.     vlc_mutex_unlock( &p_aout->mixer_lock );
  302.     return 0;
  303. }