diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2009-03-17 12:34:57 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2009-03-17 12:34:57 +0000 |
commit | 1a30d5415f6fa2bcc42fd6d81c9e5fbce54e3d9e (patch) | |
tree | 4e4b4c65e97b3e238004a9e0507a0acf341110d9 /libavformat/rtsp.h | |
parent | 6d050dd673b4cda3876698208571fbfb644dde61 (diff) | |
download | ffmpeg-1a30d5415f6fa2bcc42fd6d81c9e5fbce54e3d9e.tar.gz |
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.h | 6 |
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; /** |