]> git.sesse.net Git - vlc/blobdiff - src/input/input_dec.c
* ./src/interface/main.c: tidied the help output code.
[vlc] / src / input / input_dec.c
index 3024dbdee63d5c2bd300539a90c503b0805dc2f8..71675b8a20bb09496aec32f91f2d0a1851d92ec6 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
  * input_dec.c: Functions for the management of decoders
  *****************************************************************************
- * Copyright (C) 1999, 2000 VideoLAN
- * $Id: input_dec.c,v 1.9 2001/04/03 03:39:41 stef Exp $
+ * Copyright (C) 1999-2001 VideoLAN
+ * $Id: input_dec.c,v 1.32 2002/04/23 14:16:20 sam Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include "defs.h"
-
 #include <stdlib.h>
-#include "config.h"
-#include "common.h"
-#include "threads.h"
-#include "mtime.h"
-#include "intf_msg.h"
+#include <string.h>                                    /* memcpy(), memset() */
+#include <sys/types.h>                                              /* off_t */
+
+#include <videolan/vlc.h>
 
 #include "stream_control.h"
 #include "input_ext-dec.h"
 #include "input_ext-intf.h"
+#include "input_ext-plugins.h"
 
-#include "input.h"
+static decoder_config_t * CreateDecoderConfig( input_thread_t * p_input,
+                                               es_descriptor_t * p_es );
+static void DeleteDecoderConfig( decoder_config_t * p_config );
 
 /*****************************************************************************
  * input_RunDecoder: spawns a new decoder thread
  *****************************************************************************/
-vlc_thread_t input_RunDecoder( decoder_capabilities_t * p_decoder,
-                               void * p_data )
+vlc_thread_t input_RunDecoder( input_thread_t * p_input,
+                               es_descriptor_t * p_es )
 {
-    return( p_decoder->pf_create_thread( p_data ) );
+    vlc_thread_t thread_id;
+    char * psz_plugin = NULL;
+
+    if( p_es->i_type == MPEG1_AUDIO_ES || p_es->i_type == MPEG2_AUDIO_ES )
+    {
+        psz_plugin = config_GetPszVariable( "mpeg-adec" );
+    }
+    if( p_es->i_type == AC3_AUDIO_ES )
+    {
+        psz_plugin = config_GetPszVariable( "ac3-adec" );
+    }
+
+    /* Get a suitable module */
+    p_es->p_module = module_Need( MODULE_CAPABILITY_DECODER, psz_plugin,
+                                  (void *)&p_es->i_type );
+    if( psz_plugin ) free( psz_plugin );
+    if( p_es->p_module == NULL )
+    {
+        intf_ErrMsg( "input error: no suitable decoder module for type 0x%x",
+                      p_es->i_type );
+        return( 0 );
+    }
+
+    /* Create the decoder configuration structure */
+    p_es->p_config = CreateDecoderConfig( p_input, p_es );
+
+    if( p_es->p_config == NULL )
+    {
+        intf_ErrMsg( "input error: could not create decoder config" );
+        module_Unneed( p_es->p_module );
+        return( 0 );
+    }
+
+    /* Spawn the decoder thread */
+    if ( vlc_thread_create( &thread_id, "decoder",
+         (vlc_thread_func_t)p_es->p_module->
+             p_functions->dec.functions.dec.pf_run,
+         (void *)p_es->p_config) ) 
+    {
+        intf_ErrMsg( "input error: can't spawn decoder thread \"%s\"",
+                     p_es->p_module->psz_name );
+        free( p_es->p_config );
+        module_Unneed( p_es->p_module );
+        return( 0 );
+    }
+
+    return thread_id;
 }
 
+
 /*****************************************************************************
  * input_EndDecoder: kills a decoder thread and waits until it's finished
  *****************************************************************************/
@@ -76,20 +123,13 @@ void input_EndDecoder( input_thread_t * p_input, es_descriptor_t * p_es )
     vlc_thread_join( p_es->thread_id );
 //    vlc_mutex_lock( &p_input->stream.stream_lock );
 
-    /* Freeing all packets still in the decoder fifo. */
-    while( !DECODER_FIFO_ISEMPTY( *p_es->p_decoder_fifo ) )
-    {
-        p_es->p_decoder_fifo->pf_delete_pes(
-                            p_es->p_decoder_fifo->p_packets_mgt,
-                            DECODER_FIFO_START( *p_es->p_decoder_fifo ) );
-        DECODER_FIFO_INCSTART( *p_es->p_decoder_fifo );
-    }
+    /* Delete decoder configuration */
+    DeleteDecoderConfig( p_es->p_config );
 
-    /* Destroy the lock and cond */
-    vlc_cond_destroy( &p_es->p_decoder_fifo->data_wait );
-    vlc_mutex_destroy( &p_es->p_decoder_fifo->data_lock );
+    /* Unneed module */
+    module_Unneed( p_es->p_module );
 
-    free( p_es->p_decoder_fifo );
+    /* Tell the input there is no more decoder */
     p_es->p_decoder_fifo = NULL;
 }
 
@@ -102,21 +142,13 @@ void input_DecodePES( decoder_fifo_t * p_decoder_fifo, pes_packet_t * p_pes )
 {
     vlc_mutex_lock( &p_decoder_fifo->data_lock );
 
-    if( !DECODER_FIFO_ISFULL( *p_decoder_fifo ) )
-    {
-        p_decoder_fifo->buffer[p_decoder_fifo->i_end] = p_pes;
-        DECODER_FIFO_INCEND( *p_decoder_fifo );
+    p_pes->p_next = NULL;
+    *p_decoder_fifo->pp_last = p_pes;
+    p_decoder_fifo->pp_last = &p_pes->p_next;
+    p_decoder_fifo->i_depth++;
 
-        /* Warn the decoder that it's got work to do. */
-        vlc_cond_signal( &p_decoder_fifo->data_wait );
-    }
-    else
-    {
-        /* The FIFO is full !!! This should not happen. */
-        p_decoder_fifo->pf_delete_pes( p_decoder_fifo->p_packets_mgt,
-                                       p_pes );
-        intf_ErrMsg( "PES trashed - decoder fifo full !" );
-    }
+    /* Warn the decoder that it's got work to do. */
+    vlc_cond_signal( &p_decoder_fifo->data_wait );
     vlc_mutex_unlock( &p_decoder_fifo->data_lock );
 }
 
@@ -145,22 +177,107 @@ void input_EscapeDiscontinuity( input_thread_t * p_input,
 /*****************************************************************************
  * input_EscapeAudioDiscontinuity: send a NULL packet to the audio decoders
  *****************************************************************************/
-void input_EscapeAudioDiscontinuity( input_thread_t * p_input,
-                                     pgrm_descriptor_t * p_pgrm )
+void input_EscapeAudioDiscontinuity( input_thread_t * p_input )
 {
-    int     i_es, i;
+    int     i_pgrm, i_es, i;
 
-    for( i_es = 0; i_es < p_pgrm->i_es_number; i_es++ )
+    for( i_pgrm = 0; i_pgrm < p_input->stream.i_pgrm_number; i_pgrm++ )
     {
-        es_descriptor_t * p_es = p_pgrm->pp_es[i_es];
+        pgrm_descriptor_t * p_pgrm = p_input->stream.pp_programs[i_pgrm];
 
-        if( p_es->p_decoder_fifo != NULL && p_es->b_audio )
+        for( i_es = 0; i_es < p_pgrm->i_es_number; i_es++ )
         {
-            for( i = 0; i < PADDING_PACKET_NUMBER; i++ )
+            es_descriptor_t * p_es = p_pgrm->pp_es[i_es];
+
+            if( p_es->p_decoder_fifo != NULL && p_es->b_audio )
             {
-                input_NullPacket( p_input, p_es );
+                for( i = 0; i < PADDING_PACKET_NUMBER; i++ )
+                {
+                    input_NullPacket( p_input, p_es );
+                }
             }
         }
     }
 }
 
+/*****************************************************************************
+ * CreateDecoderConfig: create a decoder_config_t
+ *****************************************************************************/
+static decoder_config_t * CreateDecoderConfig( input_thread_t * p_input,
+                                               es_descriptor_t * p_es )
+{
+    decoder_config_t * p_config;
+
+    p_config = (decoder_config_t *)malloc( sizeof(decoder_config_t) );
+    if( p_config == NULL )
+    {
+        intf_ErrMsg( "Unable to allocate memory in CreateDecoderConfig" );
+        return NULL;
+    }
+
+    /* Decoder FIFO */
+    if( (p_config->p_decoder_fifo =
+            (decoder_fifo_t *)malloc( sizeof(decoder_fifo_t) )) == NULL )
+    {
+        intf_ErrMsg( "Out of memory" );
+        free( p_config );
+        return NULL;
+    }
+
+    /* Select a new ES */
+    p_input->stream.i_selected_es_number++;
+    p_input->stream.pp_selected_es = realloc(
+                                       p_input->stream.pp_selected_es,
+                                       p_input->stream.i_selected_es_number
+                                        * sizeof(es_descriptor_t *) );
+    if( p_input->stream.pp_selected_es == NULL )
+    {
+        intf_ErrMsg( "Unable to realloc memory" );
+        free( p_config->p_decoder_fifo );
+        free( p_config );
+        return NULL;
+    }
+    p_input->stream.pp_selected_es[p_input->stream.i_selected_es_number - 1]
+            = p_es;
+
+    /* Initialize the p_config structure */
+    vlc_mutex_init(&p_config->p_decoder_fifo->data_lock);
+    vlc_cond_init(&p_config->p_decoder_fifo->data_wait);
+    p_es->p_decoder_fifo = p_config->p_decoder_fifo;
+
+    p_config->i_id = p_es->i_id;
+    p_config->i_type = p_es->i_type;
+    p_config->p_demux_data = p_es->p_demux_data;
+    
+    p_config->p_stream_ctrl = &p_input->stream.control;
+
+    p_config->p_decoder_fifo->p_first = NULL;
+    p_config->p_decoder_fifo->pp_last = &p_config->p_decoder_fifo->p_first;
+    p_config->p_decoder_fifo->i_depth = 0;
+    p_config->p_decoder_fifo->b_die = p_config->p_decoder_fifo->b_error = 0;
+    p_config->p_decoder_fifo->p_packets_mgt = p_input->p_method_data;
+
+    return p_config;
+}
+
+/*****************************************************************************
+ * DeleteDecoderConfig: create a decoder_config_t
+ *****************************************************************************/
+static void DeleteDecoderConfig( decoder_config_t * p_config )
+{
+    intf_StatMsg( "input stats: killing decoder for 0x%x, type 0x%x, %d PES in FIFO",
+                  p_config->i_id, p_config->i_type,
+                  p_config->p_decoder_fifo->i_depth );
+    /* Free all packets still in the decoder fifo. */
+    input_DeletePES( p_config->p_decoder_fifo->p_packets_mgt,
+                     p_config->p_decoder_fifo->p_first );
+
+    /* Destroy the lock and cond */
+    vlc_cond_destroy( &p_config->p_decoder_fifo->data_wait );
+    vlc_mutex_destroy( &p_config->p_decoder_fifo->data_lock );
+
+    free( p_config->p_decoder_fifo );
+
+    free( p_config );
+}
+