]> git.sesse.net Git - vlc/blobdiff - src/input/input_programs.c
The motion compensation routines are now modules as well ; choose your
[vlc] / src / input / input_programs.c
index 5cd3b4a4b2bbe28b569193f81e6f8c14f57baab4..ddff45529212f1da49f3388715d566a54c82c4db 100644 (file)
@@ -2,7 +2,7 @@
  * input_programs.c: es_descriptor_t, pgrm_descriptor_t management
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: input_programs.c,v 1.19 2001/01/07 03:56:40 henri Exp $
+ * $Id: input_programs.c,v 1.26 2001/01/18 05:13:22 sam Exp $
  *
  * Authors:
  *
@@ -40,7 +40,6 @@
 #include "input_ext-intf.h"
 #include "input_ext-dec.h"
 #include "input.h"
-#include "input_dec.h"
 
 #include "main.h"                                     /* --noaudio --novideo */
 
@@ -76,23 +75,17 @@ void input_InitStream( input_thread_t * p_input, size_t i_data_len )
  *****************************************************************************/
 void input_EndStream( input_thread_t * p_input )
 {
-    int i;
-
     /* Free all programs and associated ES, and associated decoders. */
-    for( i = 0; i < p_input->stream.i_pgrm_number; i++ )
+    while( p_input->stream.i_pgrm_number )
     {
-        /* Don't put i instead of 0 !! */
         input_DelProgram( p_input, p_input->stream.pp_programs[0] );
     }
-    free( p_input->stream.pp_programs );
 
     /* Free standalone ES */
-    for( i = 0; i < p_input->stream.i_es_number; i++ )
+    while( p_input->stream.i_es_number )
     {
         input_DelES( p_input, p_input->stream.pp_es[0] );
     }
-    free( p_input->stream.pp_es );
-    free( p_input->stream.pp_selected_es );
 }
 
 /*****************************************************************************
@@ -134,7 +127,7 @@ pgrm_descriptor_t * input_AddProgram( input_thread_t * p_input,
     if( p_input->stream.pp_programs == NULL )
     {
         intf_ErrMsg( "Unable to realloc memory in input_AddProgram" );
-        return NULL;
+        return( NULL );
     }
     
     /* Allocate the structure to store this description */
@@ -143,7 +136,7 @@ pgrm_descriptor_t * input_AddProgram( input_thread_t * p_input,
     if( p_input->stream.pp_programs[i_pgrm_index] == NULL )
     {
         intf_ErrMsg( "Unable to allocate memory in input_AddProgram" );
-        return NULL;
+        return( NULL );
     }
     
     /* Init this entry */
@@ -174,7 +167,7 @@ pgrm_descriptor_t * input_AddProgram( input_thread_t * p_input,
         if( p_input->stream.pp_programs[i_pgrm_index]->p_demux_data == NULL )
         {
             intf_ErrMsg( "Unable to allocate memory in input_AddProgram" );
-            return NULL;
+            return( NULL );
         }
         memset( p_input->stream.pp_programs[i_pgrm_index]->p_demux_data, 0,
                 i_data_len );
@@ -190,21 +183,18 @@ pgrm_descriptor_t * input_AddProgram( input_thread_t * p_input,
  *****************************************************************************/
 void input_DelProgram( input_thread_t * p_input, pgrm_descriptor_t * p_pgrm )
 {
-    int i_index, i_pgrm_index;
+    int i_pgrm_index;
 
     ASSERT( p_pgrm );
 
     intf_DbgMsg("Deleting description for pgrm %d", p_pgrm->i_number);
 
     /* Free the structures that describe the es that belongs to that program */
-    for( i_index = 0; i_index < p_pgrm->i_es_number; i_index++ )
+    while( p_pgrm->i_es_number )
     {
-        input_DelES( p_input, p_pgrm->pp_es[i_index] );
+        input_DelES( p_input, p_pgrm->pp_es[0] );
     }
 
-    /* Free the table of es descriptors */
-    free( p_pgrm->pp_es );
-
     /* Free the demux data */
     if( p_pgrm->p_demux_data != NULL )
     {
@@ -221,16 +211,19 @@ void input_DelProgram( input_thread_t * p_input, pgrm_descriptor_t * p_pgrm )
 
     /* Remove this program from the stream's list of programs */
     p_input->stream.i_pgrm_number--;
+
     p_input->stream.pp_programs[i_pgrm_index] =
         p_input->stream.pp_programs[p_input->stream.i_pgrm_number];
     p_input->stream.pp_programs = realloc( p_input->stream.pp_programs,
                                            p_input->stream.i_pgrm_number
                                             * sizeof(pgrm_descriptor_t *) );
 
-    if( p_input->stream.pp_programs == NULL)
+    if( p_input->stream.i_pgrm_number && p_input->stream.pp_programs == NULL)
     {
-        intf_ErrMsg( "Unable to realloc memory in input_DelProgram" );
+        intf_ErrMsg( "input error: unable to realloc program list"
+                     " in input_DelProgram" );
     }
+
     /* Free the description of this program */
     free( p_pgrm );
 }
@@ -272,7 +265,7 @@ es_descriptor_t * input_AddES( input_thread_t * p_input,
     if( p_es == NULL )
     {
         intf_ErrMsg( "Unable to allocate memory in input_AddES" );
-        return NULL;
+        return( NULL);
     }
     p_input->stream.i_es_number++;
     p_input->stream.pp_es = realloc( p_input->stream.pp_es,
@@ -281,7 +274,7 @@ es_descriptor_t * input_AddES( input_thread_t * p_input,
     if( p_input->stream.pp_es == NULL )
     {
         intf_ErrMsg( "Unable to realloc memory in input_AddES" );
-        return NULL;
+        return( NULL );
     }
     p_input->stream.pp_es[p_input->stream.i_es_number - 1] = p_es;
     p_es->i_id = i_es_id;
@@ -297,7 +290,7 @@ es_descriptor_t * input_AddES( input_thread_t * p_input,
         if( p_es->p_demux_data == NULL )
         {
             intf_ErrMsg( "Unable to allocate memory in input_AddES" );
-            return NULL;
+            return( NULL );
         }
         memset( p_es->p_demux_data, 0, i_data_len );
     }
@@ -316,7 +309,7 @@ es_descriptor_t * input_AddES( input_thread_t * p_input,
         if( p_pgrm->pp_es == NULL )
         {
             intf_ErrMsg( "Unable to realloc memory in input_AddES" );
-            return NULL;
+            return( NULL );
         }
         p_pgrm->pp_es[p_pgrm->i_es_number - 1] = p_es;
         p_es->p_pgrm = p_pgrm;
@@ -343,8 +336,7 @@ void input_DelES( input_thread_t * p_input, es_descriptor_t * p_es )
     /* Kill associated decoder, if any. */
     if( p_es->p_decoder_fifo != NULL )
     {
-        input_EndDecoder( p_es->p_decoder_fifo, p_es->thread_id );
-        free( p_es->p_decoder_fifo );
+        input_EndDecoder( p_input, p_es );
     }
 
     /* Remove this ES from the description of the program if it is associated to
@@ -360,7 +352,7 @@ void input_DelES( input_thread_t * p_input, es_descriptor_t * p_es )
                 p_pgrm->pp_es = realloc( p_pgrm->pp_es,
                                          p_pgrm->i_es_number
                                           * sizeof(es_descriptor_t *));
-                if( p_pgrm->pp_es == NULL )
+                if( p_pgrm->i_es_number && p_pgrm->pp_es == NULL )
                 {
                     intf_ErrMsg( "Unable to realloc memory in input_DelES" );
                 }
@@ -391,7 +383,7 @@ void input_DelES( input_thread_t * p_input, es_descriptor_t * p_es )
     p_input->stream.pp_es = realloc( p_input->stream.pp_es,
                                      p_input->stream.i_es_number
                                       * sizeof(es_descriptor_t *));
-    if( p_input->stream.pp_es == NULL )
+    if( p_input->stream.i_es_number && p_input->stream.pp_es == NULL )
     {
         intf_ErrMsg( "Unable to realloc memory in input_DelES" );
     }
@@ -477,16 +469,17 @@ static vdec_config_t * GetVdecConfig( input_thread_t * p_input,
 {
     vdec_config_t *     p_config;
 
-    if( (p_config = (vdec_config_t *)malloc( sizeof(vdec_config_t) )) == NULL)
+    p_config = (vdec_config_t *)malloc( sizeof(vdec_config_t) );
+    if( p_config == NULL )
     {
         intf_ErrMsg( "Unable to allocate memory in GetVdecConfig" );
-        return NULL;
+        return( NULL );
     }
     p_config->p_vout = p_input->p_default_vout;
     if( InitDecConfig( p_input, p_es, &p_config->decoder_config ) == -1 )
     {
         free( p_config );
-        return NULL;
+        return( NULL );
     }
 
     return( p_config );
@@ -500,16 +493,17 @@ static adec_config_t * GetAdecConfig( input_thread_t * p_input,
 {
     adec_config_t *     p_config;
 
-    if ( (p_config = (adec_config_t *)malloc( sizeof(adec_config_t))) ==NULL )
+    p_config = (adec_config_t *)malloc( sizeof(adec_config_t));
+    if( p_config == NULL )
     {
         intf_ErrMsg( "Unable to allocate memory in GetAdecConfig" );
-        return NULL;
+        return( NULL );
     }
     p_config->p_aout = p_input->p_default_aout;
     if( InitDecConfig( p_input, p_es, &p_config->decoder_config ) == -1 )
     {
         free( p_config );
-        return NULL;
+        return( NULL );
     }
 
     return( p_config );
@@ -585,6 +579,11 @@ int input_SelectES( input_thread_t * p_input, es_descriptor_t * p_es )
         break;
     }
 
+    if( p_es->thread_id == 0 )
+    {
+        return( -1 );
+    }
+
     if( p_es->p_decoder_fifo != NULL )
     {
         p_input->stream.i_selected_es_number++;