]> git.sesse.net Git - vlc/blobdiff - modules/demux/playlist/b4s.c
Ogg: always show COMMENTS if possible
[vlc] / modules / demux / playlist / b4s.c
index 801dfb85476e64e35e72ccccb715128fe982a255..3234a8629289cb3952cffd028876afc86d802360 100644 (file)
 
 #include "playlist.h"
 
-struct demux_sys_t
-{
-};
-
 /*****************************************************************************
  * Local prototypes
  *****************************************************************************/
 static int Demux( demux_t *p_demux);
-static int Control( demux_t *p_demux, int i_query, va_list args );
 static bool IsWhitespace( const char *psz_string );
 
 /*****************************************************************************
@@ -238,12 +233,6 @@ end:
     return i_ret;
 }
 
-static int Control( demux_t *p_demux, int i_query, va_list args )
-{
-    VLC_UNUSED(p_demux); VLC_UNUSED(i_query); VLC_UNUSED(args);
-    return VLC_EGENERIC;
-}
-
 static bool IsWhitespace( const char *psz_string )
 {
     psz_string += strspn( psz_string, " \t\r\n" );