diff rtsp.h @ 4744:51899c07a4f1 libavformat

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.
author rbultje
date Tue, 17 Mar 2009 12:34:57 +0000
parents e1a5b4f5b9be
children 2e0ea6f96564
line wrap: on
line diff
--- a/rtsp.h	Tue Mar 17 12:27:32 2009 +0000
+++ b/rtsp.h	Tue Mar 17 12:34:57 2009 +0000
@@ -223,6 +223,12 @@
      * 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;
 
 /**