[vlc-devel] commit: Comment for myself ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sun Dec 21 14:36:37 CET 2008
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sun Dec 21 15:30:37 2008 +0200| [c2e0af90cfa124f43e79df2ad7be602e7314d083] | committer: Rémi Denis-Courmont
Comment for myself
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c2e0af90cfa124f43e79df2ad7be602e7314d083
---
modules/stream_filter/decomp.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/modules/stream_filter/decomp.c b/modules/stream_filter/decomp.c
index 81a3572..f083fc7 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]);
More information about the vlc-devel
mailing list