]> git.sesse.net Git - vlc/commitdiff
Another fix.
authorChristophe Massiot <massiot@videolan.org>
Tue, 1 Jan 2002 11:35:28 +0000 (11:35 +0000)
committerChristophe Massiot <massiot@videolan.org>
Tue, 1 Jan 2002 11:35:28 +0000 (11:35 +0000)
plugins/mad_adec/mad_adec.c

index 23f0ef32bbd669e4720785e7cb111d7c1dd94b7c..f539f81f1ee2617084202434efadccf6a1c1875e 100644 (file)
@@ -61,7 +61,7 @@
 static int  decoder_Probe  ( probedata_t * );
 static int  decoder_Run    ( decoder_config_t * );
 static int  InitThread     ( mad_adec_thread_t * p_mad_adec );
-static void EndThread      ( mad_adec_thread_t * p_mad_adec );
+static void mad_adec_EndThread      ( mad_adec_thread_t * p_mad_adec );
 
 /*****************************************************************************
  * Capabilities
@@ -155,7 +155,7 @@ static int decoder_Run ( decoder_config_t * p_config )
        {
          intf_ErrMsg( "mad_adec error: libmad decoder returns abnormally");
           DecoderError( p_mad_adec->p_fifo );
-         EndThread(p_mad_adec);
+         mad_adec_EndThread(p_mad_adec);
          return( -1 );
        }
     }
@@ -167,7 +167,7 @@ static int decoder_Run ( decoder_config_t * p_config )
     }
 
     /* End of the ac3 decoder thread */
-    EndThread (p_mad_adec);
+    mad_adec_EndThread (p_mad_adec);
 
     return( 0 );
 }