From 3df54c6bf2e5bc03b2dedcd60006d8f1df204ea3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Sun, 2 Jan 2011 10:06:21 +0000 Subject: rtsp: Add a method parameter to ff_rtsp_read_reply Originally committed as revision 26189 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtspenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/rtspenc.c') 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) -- cgit v1.2.3