[vlc-devel] [PATCH] input/access: fix argument to stream_FilterChainNew

Filip Roséen filip at atch.se
Fri Jul 29 01:49:25 CEST 2016


From: Filip Roséen <filip at videolabs.io>

stream_FilterChainNew accepts a list of stream-filters to append to the
stream passed, it however uses ":" as delimiter and not ",".

vlc_module_load, which is indirectly called from stream_FilterChainNew,
splits on ",", but the semantics are not the same.

---
 src/input/access.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/input/access.c b/src/input/access.c
index e7df2ee..3c032d3 100644
--- a/src/input/access.c
+++ b/src/input/access.c
@@ -408,7 +408,7 @@ stream_t *stream_AccessNew(vlc_object_t *parent, input_thread_t *input,
     if (sys->access->pf_read != NULL)
     {
         s->pf_read = AStreamReadStream;
-        cachename = "prefetch,cache_read";
+        cachename = "prefetch:cache_read";
     }
     else
     {
-- 
2.9.0



More information about the vlc-devel mailing list