summaryrefslogtreecommitdiff
path: root/libavformat/file.c
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2007-11-16 00:18:48 +0000
committerAlex Beregszaszi <alex@rtfs.hu>2007-11-16 00:18:48 +0000
commitb5298028b050d8c20d741c5219c1b0d2304c9391 (patch)
treec86e8925495228a5156ced5d8d06d82fab8d1e5e /libavformat/file.c
parent7a813b368ac810bb39838854572e300bbda5b799 (diff)
Remove empty pipe_close
Originally committed as revision 11045 to svn://svn.ffmpeg.org/ffmpeg/trunk
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,
};