[FFmpeg-cvslog] rtsp: Include an User-Agent header field in all requests

Martin Storsjö git at videolan.org
Mon Jul 15 12:45:49 CEST 2013


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Fri Jul 12 12:14:12 2013 +0300| [1dd1b2332ebbac710d8e0214cec7595e118f2105] | committer: Martin Storsjö

rtsp: Include an User-Agent header field in all requests

Some rtsp servers like the IP Cam IcyBox IB-CAM2002 need it.

Based on a patch by Carl Eugen Hoyos.

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1dd1b2332ebbac710d8e0214cec7595e118f2105
---

 libavformat/rtsp.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index 761aa11..29ef403 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -1133,6 +1133,7 @@ static int rtsp_send_cmd_with_content_async(AVFormatContext *s,
     if (headers)
         av_strlcat(buf, headers, sizeof(buf));
     av_strlcatf(buf, sizeof(buf), "CSeq: %d\r\n", rt->seq);
+    av_strlcatf(buf, sizeof(buf), "User-Agent: %s\r\n", LIBAVFORMAT_IDENT);
     if (rt->session_id[0] != '\0' && (!headers ||
         !strstr(headers, "\nIf-Match:"))) {
         av_strlcatf(buf, sizeof(buf), "Session: %s\r\n", rt->session_id);



More information about the ffmpeg-cvslog mailing list