summaryrefslogtreecommitdiff
path: root/ffserver.c
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2001-09-25 18:27:53 +0000
committerFabrice Bellard <fabrice@bellard.org>2001-09-25 18:27:53 +0000
commit63bdb086b1daabdd75d68b7cd9056c380b645e9f (patch)
treeb0b80adac30d7170b1c8e450d00da1bb1dc61990 /ffserver.c
parenta190b7e94e39ab99f10357d776d72829f6b6ea9a (diff)
fixed prototype change
Originally committed as revision 150 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffserver.c')
-rw-r--r--ffserver.c2
1 files changed, 1 insertions, 1 deletions
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;