summaryrefslogtreecommitdiff
path: root/libavformat/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/file.c')
-rw-r--r--libavformat/file.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libavformat/file.c b/libavformat/file.c
index c0134d15df..f61130694f 100644
--- a/libavformat/file.c
+++ b/libavformat/file.c
@@ -110,16 +110,9 @@ static int pipe_open(URLContext *h, const char *filename, int flags)
return 0;
}
-static int pipe_close(URLContext *h)
-{
- return 0;
-}
-
URLProtocol pipe_protocol = {
"pipe",
pipe_open,
file_read,
file_write,
- NULL,
- pipe_close,
};