[vlc-commits] stream_filter: assign type name for now

Rémi Denis-Courmont git at videolan.org
Fri Apr 6 20:05:08 CEST 2018


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Fri Apr  6 20:35:45 2018 +0300| [6692050c706e01867cf47db2e346a3868b01d700] | committer: Rémi Denis-Courmont

stream_filter: assign type name for now

(though it will probably be merged with demux soon)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6692050c706e01867cf47db2e346a3868b01d700
---

 src/input/stream_filter.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/input/stream_filter.c b/src/input/stream_filter.c
index f7c7ea5fe9..fc06dcd56a 100644
--- a/src/input/stream_filter.c
+++ b/src/input/stream_filter.c
@@ -47,7 +47,8 @@ stream_t *vlc_stream_FilterNew( stream_t *p_source,
     stream_t *s;
     assert( p_source != NULL );
 
-    s = vlc_stream_CommonNew( p_source->obj.parent, StreamDelete );
+    s = vlc_stream_CustomNew(p_source->obj.parent, StreamDelete, 0,
+                             "stream filter");
     if( s == NULL )
         return NULL;
 



More information about the vlc-commits mailing list