]> git.sesse.net Git - vlc/blobdiff - src/input/input_ext-intf.c
* ALL: new module API. Makes a few things a lot simpler, and we gain
[vlc] / src / input / input_ext-intf.c
index d820a4a68b238317308de35b75ac8d02def01f55..f88d802112865aa0df66ceda2c80ac0c15cd9362 100644 (file)
@@ -2,7 +2,7 @@
  * input_ext-intf.c: services to the interface
  *****************************************************************************
  * Copyright (C) 1998-2001 VideoLAN
- * $Id: input_ext-intf.c,v 1.39 2002/07/23 00:39:17 sam Exp $
+ * $Id: input_ext-intf.c,v 1.40 2002/07/31 20:56:52 sam Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -414,17 +414,3 @@ int input_ToggleMute( input_thread_t * p_input )
     return 0;
 }
 
-/****************************************************************************
- * input_SetSMP: change the number of video decoder threads
- ****************************************************************************/
-int input_SetSMP( input_thread_t * p_input, int i_smp )
-{
-    /* No need to warn the input thread since only the decoders
-     * worry about it. */
-    vlc_mutex_lock( &p_input->stream.control.control_lock );
-    p_input->stream.control.i_smp = i_smp;
-    vlc_mutex_unlock( &p_input->stream.control.control_lock );
-
-    return 0;
-}
-