From c43e7a66110f750c0716c166714b6e29baf68e9a Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Wed, 24 Mar 2004 18:29:30 +0000
Subject: [PATCH] untested win32 binary pipe fix

Originally committed as revision 2922 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavformat/file.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavformat/file.c b/libavformat/file.c
index b1d61caf893..83f2e42ae1d 100644
--- a/libavformat/file.c
+++ b/libavformat/file.c
@@ -103,6 +103,9 @@ static int pipe_open(URLContext *h, const char *filename, int flags)
     } else {
         fd = 0;
     }
+#if defined(CONFIG_WIN32) || defined(CONFIG_OS2) || defined(__CYGWIN__)
+    setmode(fd, O_BINARY);
+#endif
     h->priv_data = (void *)fd;
     return 0;
 }
-- 
GitLab