From 7a86bafa20aca6cdb38c425d23aa5aaf4271210a Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Wed, 7 Jan 2009 14:55:47 +0000 Subject: Use the "server" RTSP field to detect whether the server that we're talking to is a Microsoft Windows Media Server (the field will be "WMServer/version"). See "[PATCH] RTSP-MS 3/15: Add Windows Media Server type" thread on mailinglist. Originally committed as revision 16472 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtsp.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavformat/rtsp.h') diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index 36297e98c0..ebc7ab79b5 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -66,6 +66,7 @@ typedef struct RTSPHeader { int seq; /**< sequence number */ char session_id[512]; char real_challenge[64]; /**< the RealChallenge1 field from the server */ + char server[64]; } RTSPHeader; enum RTSPClientState { @@ -77,6 +78,7 @@ enum RTSPClientState { enum RTSPServerType { RTSP_SERVER_RTP, /*< Standard-compliant RTP-server */ RTSP_SERVER_REAL, /*< Realmedia-style server */ + RTSP_SERVER_WMS, /*< Windows Media server */ RTSP_SERVER_LAST }; -- cgit v1.2.3