summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.h
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-01-02 10:06:21 +0000
committerMartin Storsjö <martin@martin.st>2011-01-02 10:06:21 +0000
commit3df54c6bf2e5bc03b2dedcd60006d8f1df204ea3 (patch)
tree34b8c0bebf53cbe1e0c5797174081e0daecba9ef /libavformat/rtsp.h
parent7f8ffc4efddf796aa3aa8174fb008007cb8f8c1c (diff)
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/rtsp.h')
-rw-r--r--libavformat/rtsp.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h
index ba0526052b..c0e025110d 100644
--- a/libavformat/rtsp.h
+++ b/libavformat/rtsp.h
@@ -434,13 +434,15 @@ int ff_rtsp_send_cmd(AVFormatContext *s, const char *method,
* data packets (if they are encountered), until a reply
* has been fully parsed. If no more data is available
* without parsing a reply, it will return an error.
+ * @param method the RTSP method this is a reply to. This affects how
+ * some response headers are acted upon. May be NULL.
*
* @return 1 if a data packets is ready to be received, -1 on error,
* and 0 on success.
*/
int ff_rtsp_read_reply(AVFormatContext *s, RTSPMessageHeader *reply,
unsigned char **content_ptr,
- int return_on_interleaved_data);
+ int return_on_interleaved_data, const char *method);
/**
* Skip a RTP/TCP interleaved packet.