summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2009-03-17 12:34:57 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2009-03-17 12:34:57 +0000
commit1a30d5415f6fa2bcc42fd6d81c9e5fbce54e3d9e (patch)
tree4e4b4c65e97b3e238004a9e0507a0acf341110d9 /libavformat/rtsp.h
parent6d050dd673b4cda3876698208571fbfb644dde61 (diff)
Add RTP/ASF header parsing, which is part of the SDP of these streams. See
patch discussion in "[PATCH] RTSP-MS 10/15: ASF header parsing" thread. Originally committed as revision 18023 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r--libavformat/rtsp.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h
index d44926ac3a..60d8c30f87 100644
--- a/libavformat/rtsp.h
+++ b/libavformat/rtsp.h
@@ -223,6 +223,12 @@ typedef struct RTSPState {
* before sending a new "Subscribe:" command. */
char last_subscription[1024];
//@}
+
+ /** The following are used for RTP/ASF streams */
+ //@{
+ /** ASF demuxer context for the embedded ASF stream from WMS servers */
+ AVFormatContext *asf_ctx;
+ //@}
} RTSPState;
/**