summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2008-09-30 13:26:20 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2008-09-30 13:26:20 +0000
commit119b4668110a8615abaa0dfe4b1fcab78e4e7694 (patch)
tree411f66bb72c1de5146e2bfb088c5c3ffe41c935b /libavformat/rtsp.h
parentab63fb0360f1f5ce5cd7199786940d56c7a10632 (diff)
Implement a RTSPTransport field, which allows proper separation of server
types and their non-standard extensions, and the data they serve. Practically, this patch allows Real servers to serve normal non-RDT (standard RTP) data. See discussion on ML in "Realmedia patch" thread. Originally committed as revision 15484 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r--libavformat/rtsp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h
index 476154a564..611f5c3aae 100644
--- a/libavformat/rtsp.h
+++ b/libavformat/rtsp.h
@@ -50,6 +50,7 @@ typedef struct RTSPTransportField {
int server_port_min, server_port_max; /**< RTP ports */
int ttl; /**< ttl value */
uint32_t destination; /**< destination IP address */
+ int transport;
enum RTSPLowerTransport lower_transport;
} RTSPTransportField;