]> git.sesse.net Git - vlc/blobdiff - modules/stream_filter/decomp.c
Comment for myself
[vlc] / modules / stream_filter / decomp.c
index 81a35728b948587dc539e0ef9c0a4c5ad44a8c2f..f083fc7f9842df47bfca017ec26abdab7a63ec46 100644 (file)
@@ -255,6 +255,8 @@ static int Open (stream_t *stream, const char *path)
     int ret = VLC_EGENERIC;
     int comp[2];
 
+    /* We use two pipes rather than one stream socket pair, so that we can
+     * use vmsplice() on Linux. */
     if (pipe (comp) == 0)
     {
         cloexec (comp[1]);