diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2009-07-27 14:00:10 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2009-07-27 14:00:10 +0000 |
commit | c2f3eec445389d67afc8c699ba23915a20cae51c (patch) | |
tree | 56948f82774e53c46fcf1a97938870de8f136297 /libavformat/rtsp.h | |
parent | e9a832e50833b4265fd8ed93fe58038a40131402 (diff) | |
download | ffmpeg-c2f3eec445389d67afc8c699ba23915a20cae51c.tar.gz |
Implement RTSP-MS/ASF packet parsing - this completes RTSP-MS support. See
discussion in "[PATCH] RTSP-MS 14/15: ASF packet parsing" thread on mailinglist.
Originally committed as revision 19516 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index 37e7ead38e..0772f74cac 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -249,6 +249,10 @@ typedef struct RTSPState { //@{ /** ASF demuxer context for the embedded ASF stream from WMS servers */ AVFormatContext *asf_ctx; + + /** cache for position of the asf demuxer, since we load a new + * data packet in the bytecontext for each incoming RTSP packet. */ + uint64_t asf_pb_pos; //@} } RTSPState; |