]> git.sesse.net Git - vlc/blobdiff - modules/stream_out/dummy.c
switch to jdk 1.5
[vlc] / modules / stream_out / dummy.c
index b86c709e3e42e06f397811bef268c9297189a6f8..94a384cbda39a356aa3d4bdb5d07bc3788004fcf 100644 (file)
  * Preamble
  *****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <vlc/vlc.h>
 #include <vlc_block.h>
 #include <vlc_sout.h>
@@ -75,11 +79,13 @@ static void Close( vlc_object_t * p_this )
 
 static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
 {
+    VLC_UNUSED(p_stream); VLC_UNUSED(p_fmt);
     return malloc( 0 );
 }
 
 static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
 {
+    VLC_UNUSED(p_stream);
     free( id );
 
     return VLC_SUCCESS;