diff options
author | Martin Storsjö <martin@martin.st> | 2011-05-09 20:11:16 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-05-11 10:42:34 +0300 |
commit | 0b4949b51816bc2fd23ba4c4de183b877b58aa25 (patch) | |
tree | f7d251606dc8461ba0533591baa8667a13b49403 /libavformat/rtsp.c | |
parent | 3fd62c6e247468d792ce8f1d3c458017d1ea9eb5 (diff) | |
download | ffmpeg-0b4949b51816bc2fd23ba4c4de183b877b58aa25.tar.gz |
rtsp: Only do keepalive using GET_PARAMETER if the server supports it
This is more like what VLC does. If the server doesn't mention
supporting GET_PARAMETER in response to an OPTIONS request,
VLC doesn't send any keepalive requests at all. After this patch,
libavformat will still send OPTIONS keepalives if GET_PARAMETER
isn't explicitly said to be supported.
Some RTSP cameras don't support GET_PARAMETER, and will
close the connection if this is sent as keepalive request
(but support OPTIONS just fine, but probably don't need any
keepalive at all). Some other cameras don't support using
OPTIONS as keepalive, but require GET_PARAMETER instead.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r-- | libavformat/rtsp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 14111e69fd..2ebf7e0510 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -808,6 +808,10 @@ void ff_rtsp_parse_line(RTSPMessageHeader *reply, const char *buf, p += strspn(p, SPACE_CHARS); if (method && !strcmp(method, "PLAY")) rtsp_parse_rtp_info(rt, p); + } else if (av_stristart(p, "Public:", &p) && rt) { + if (strstr(p, "GET_PARAMETER") && + method && !strcmp(method, "OPTIONS")) + rt->get_parameter_supported = 1; } } |