From 63bdb086b1daabdd75d68b7cd9056c380b645e9f Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Tue, 25 Sep 2001 18:27:53 +0000 Subject: [PATCH] fixed prototype change Originally committed as revision 150 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffserver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffserver.c b/ffserver.c index 1cb9450ecc..36d0977dc1 100644 --- a/ffserver.c +++ b/ffserver.c @@ -733,7 +733,7 @@ static int open_input_stream(HTTPContext *c, const char *info) return -1; /* open stream */ - s = av_open_input_file(input_filename, buf_size); + s = av_open_input_file(input_filename, NULL, buf_size, NULL); if (!s) return -1; c->fmt_in = s;