diff options
author | Martin Storsjö <martin@martin.st> | 2011-01-02 10:06:21 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-01-02 10:06:21 +0000 |
commit | 3df54c6bf2e5bc03b2dedcd60006d8f1df204ea3 (patch) | |
tree | 34b8c0bebf53cbe1e0c5797174081e0daecba9ef /libavformat/rtspenc.c | |
parent | 7f8ffc4efddf796aa3aa8174fb008007cb8f8c1c (diff) | |
download | ffmpeg-3df54c6bf2e5bc03b2dedcd60006d8f1df204ea3.tar.gz |
rtsp: Add a method parameter to ff_rtsp_read_reply
Originally committed as revision 26189 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtspenc.c')
-rw-r--r-- | libavformat/rtspenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtspenc.c b/libavformat/rtspenc.c index 007014ef1c..3a0b2c7e44 100644 --- a/libavformat/rtspenc.c +++ b/libavformat/rtspenc.c @@ -195,7 +195,7 @@ static int rtsp_write_packet(AVFormatContext *s, AVPacket *pkt) * since it would block and wait for an RTSP reply on the socket * (which may not be coming any time soon) if it handles * interleaved packets internally. */ - ret = ff_rtsp_read_reply(s, &reply, NULL, 1); + ret = ff_rtsp_read_reply(s, &reply, NULL, 1, NULL); if (ret < 0) return AVERROR(EPIPE); if (ret == 1) |