diff options
author | Fabrice Bellard | 2003-11-10 18:39:26 +0000 |
---|---|---|
committer | Fabrice Bellard | 2003-11-10 18:39:26 +0000 |
commit | ff762d6ed2cfeb9329f5fc8d711003f6f8624eee (patch) | |
tree | d1169f95c88c2c430f9db5bc97a9263cf78212f5 /libavformat/rtsp.h | |
parent | fb2758c83d28bf8ec74d28e323da1c4a1a121637 (diff) |
initial seek support - more generic play/pause support
Originally committed as revision 2495 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index 83d88633b5..3a2713f655 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -50,6 +50,8 @@ typedef struct RTSPHeader { int content_length; enum RTSPStatusCode status_code; /* response code from server */ int nb_transports; + /* in AV_TIME_BASE unit, AV_NOPTS_VALUE if not used */ + int64_t range_start, range_end; RTSPTransportField transports[RTSP_MAX_TRANSPORTS]; int seq; /* sequence number */ char session_id[512]; |