From f9a35124a7b4bde1898727b52c3bc62587ff1505 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 6 Dec 2004 00:08:37 +0000 Subject: fixing pipe seek bug Originally committed as revision 3730 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/file.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavformat/file.c') diff --git a/libavformat/file.c b/libavformat/file.c index f7329e7923..fc75ee015c 100644 --- a/libavformat/file.c +++ b/libavformat/file.c @@ -107,6 +107,7 @@ static int pipe_open(URLContext *h, const char *filename, int flags) setmode(fd, O_BINARY); #endif h->priv_data = (void *)(size_t)fd; + h->is_streamed = 1; return 0; } -- cgit v1.2.3