diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-09-25 18:27:53 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-09-25 18:27:53 +0000 |
commit | 63bdb086b1daabdd75d68b7cd9056c380b645e9f (patch) | |
tree | b0b80adac30d7170b1c8e450d00da1bb1dc61990 | |
parent | a190b7e94e39ab99f10357d776d72829f6b6ea9a (diff) | |
download | ffmpeg-63bdb086b1daabdd75d68b7cd9056c380b645e9f.tar.gz |
fixed prototype change
Originally committed as revision 150 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffserver.c | 2 |
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; |