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/rtspdec.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/rtspdec.c')
-rw-r--r-- | libavformat/rtspdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtspdec.c b/libavformat/rtspdec.c index ad13b170aa..2ebc5156c7 100644 --- a/libavformat/rtspdec.c +++ b/libavformat/rtspdec.c @@ -170,7 +170,7 @@ redo: for (;;) { RTSPMessageHeader reply; - ret = ff_rtsp_read_reply(s, &reply, NULL, 1); + ret = ff_rtsp_read_reply(s, &reply, NULL, 1, NULL); if (ret < 0) return ret; if (ret == 1) /* received '$' */ |