diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2009-07-27 14:03:53 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2009-07-27 14:03:53 +0000 |
commit | fccb1770e6f8b21716e61193396fd9dc2e43b79d (patch) | |
tree | 4739090110c8f69680ce582fc66658898e152af2 /libavformat/rtsp.h | |
parent | c2f3eec445389d67afc8c699ba23915a20cae51c (diff) | |
download | ffmpeg-fccb1770e6f8b21716e61193396fd9dc2e43b79d.tar.gz |
Implement support for EOS as used by WMS and other RTSP servers that do not
implement RTCP/bye. See "[PATCH] rtsp.c: EOS support" thread from a few
months back.
Originally committed as revision 19517 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index 0772f74cac..e88d365a10 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -140,6 +140,11 @@ typedef struct RTSPMessageHeader { * this, sent dummy requests (e.g. OPTIONS) with intervals smaller * than this value. */ int timeout; + + /** The "Notice" or "X-Notice" field value. See + * http://tools.ietf.org/html/draft-stiemerling-rtsp-announce-00 + * for a complete list of supported values. */ + int notice; } RTSPMessageHeader; /** |