diff options
author | Martin Storsjö <martin@martin.st> | 2011-01-02 10:07:56 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-01-02 10:07:56 +0000 |
commit | acc9ed14507c8a25c6ba633065311ceafb09e8e0 (patch) | |
tree | 2194461f7de5b595db978789f6d63179d1be6750 /libavformat/rtsp.h | |
parent | 3df54c6bf2e5bc03b2dedcd60006d8f1df204ea3 (diff) | |
download | ffmpeg-acc9ed14507c8a25c6ba633065311ceafb09e8e0.tar.gz |
rtsp: Pass RTSPState to ff_rtsp_parse_line, instead of HTTPAuthState
This allows ff_rtsp_parse_line to do more changes directly in RTSPState
when parsing the reply, instead of having to store large amounts of
temporary data in RTSPMessageHeader.
Originally committed as revision 26190 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index c0e025110d..fbe9e1a689 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -353,7 +353,7 @@ typedef struct RTSPStream { } RTSPStream; void ff_rtsp_parse_line(RTSPMessageHeader *reply, const char *buf, - HTTPAuthState *auth_state); + RTSPState *rt); extern int rtsp_rtp_port_min; extern int rtsp_rtp_port_max; |