]> git.sesse.net Git - vlc/commitdiff
Removed unused structure.
authorChristophe Massiot <massiot@videolan.org>
Thu, 15 Nov 2001 16:15:59 +0000 (16:15 +0000)
committerChristophe Massiot <massiot@videolan.org>
Thu, 15 Nov 2001 16:15:59 +0000 (16:15 +0000)
include/input_ext-dec.h

index bea98bc345826a65025ae8959718d659f87f561f..0777321683ef3edc4f669bb0ce78606cd5f571d1 100644 (file)
@@ -2,7 +2,7 @@
  * input_ext-dec.h: structures exported to the VideoLAN decoders
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: input_ext-dec.h,v 1.37 2001/11/13 12:09:17 henri Exp $
+ * $Id: input_ext-dec.h,v 1.38 2001/11/15 16:15:59 massiot Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *          Michel Kaempf <maxx@via.ecp.fr>
@@ -538,26 +538,3 @@ typedef struct decoder_config_s
 
 } decoder_config_t;
 
-/*
- * Communication interface between decoders and input
- */
-
-/*****************************************************************************
- * decoder_capabilities_t
- *****************************************************************************
- * Structure returned by a call to GetCapabilities() of the decoder.
- *****************************************************************************/
-typedef struct decoder_capabilities_s
-{
-    int                     i_dec_type;
-    u8                      i_stream_type;   /* == i_type in es_descriptor_t */
-    int                     i_weight; /* for a given stream type, the decoder
-                                       * with higher weight will be spawned  */
-
-    vlc_thread_t         (* pf_create_thread)( void * );
-} decoder_capabilities_t;
-
-/* Decoder types */
-#define NONE_D              0
-#define VIDEO_D             1
-#define AUDIO_D             2