diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2007-11-16 00:18:48 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2007-11-16 00:18:48 +0000 |
commit | b5298028b050d8c20d741c5219c1b0d2304c9391 (patch) | |
tree | c86e8925495228a5156ced5d8d06d82fab8d1e5e /libavformat | |
parent | 7a813b368ac810bb39838854572e300bbda5b799 (diff) | |
download | ffmpeg-b5298028b050d8c20d741c5219c1b0d2304c9391.tar.gz |
Remove empty pipe_close
Originally committed as revision 11045 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/file.c | 7 |
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, }; |