]> git.sesse.net Git - vlc/commitdiff
Comment for myself
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Sun, 21 Dec 2008 13:30:37 +0000 (15:30 +0200)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Sun, 21 Dec 2008 13:36:24 +0000 (15:36 +0200)
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]);