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, };