From c2e0af90cfa124f43e79df2ad7be602e7314d083 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 21 Dec 2008 15:30:37 +0200 Subject: [PATCH] Comment for myself --- modules/stream_filter/decomp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/stream_filter/decomp.c b/modules/stream_filter/decomp.c index 81a35728b9..f083fc7f98 100644 --- a/modules/stream_filter/decomp.c +++ b/modules/stream_filter/decomp.c @@ -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]); -- 2.39.2