Remove empty pipe_close

Originally committed as revision 11045 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Alex Beregszaszi 2007-11-16 00:18:48 +00:00
parent 7a813b368a
commit b5298028b0

View File

@ -110,16 +110,9 @@ static int pipe_open(URLContext *h, const char *filename, int flags)
return 0; return 0;
} }
static int pipe_close(URLContext *h)
{
return 0;
}
URLProtocol pipe_protocol = { URLProtocol pipe_protocol = {
"pipe", "pipe",
pipe_open, pipe_open,
file_read, file_read,
file_write, file_write,
NULL,
pipe_close,
}; };