]> git.sesse.net Git - vlc/blobdiff - src/input/stream_filter.c
Installing KDE4 solid files.
[vlc] / src / input / stream_filter.c
index 99060f89c74e0480bfb737e54820b853e74e1b82..fc06b6fa5f1072b65e7ca6c22dfb28c50b68d89b 100644 (file)
@@ -29,6 +29,8 @@
 #include <vlc_stream.h>
 #include <libvlc.h>
 
+#include <assert.h>
+
 #include "stream.h"
 
 static void StreamDelete( stream_t * );
@@ -37,11 +39,14 @@ stream_t *stream_FilterNew( stream_t *p_source,
                             const char *psz_stream_filter )
 {
     stream_t *s;
+    assert( p_source != NULL );
 
     s = stream_CommonNew( VLC_OBJECT( p_source ) );
     if( s == NULL )
         return NULL;
 
+    s->p_input = p_source->p_input;
+
     /* */
     s->psz_path = strdup( p_source->psz_path );
     if( !s->psz_path )