diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-30 11:57:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-30 11:57:43 +0200 |
commit | 870f506cfeec6338be77d945ebecc4cfd75353aa (patch) | |
tree | a8384b2876ec8886c63679b43bff8e51690dff82 /libavformat/rtsp.h | |
parent | 0b712f5d5e5f1552940ea1ad074f6298f6397a24 (diff) | |
parent | 1f57d60129b0e297cd197c6031c4439b30a6b503 (diff) | |
download | ffmpeg-870f506cfeec6338be77d945ebecc4cfd75353aa.tar.gz |
Merge commit '1f57d60129b0e297cd197c6031c4439b30a6b503'
* commit '1f57d60129b0e297cd197c6031c4439b30a6b503':
rtsp: Support RFC4570 (source specific multicast) more properly.
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index e4b1cd6fa7..add0dc0798 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -412,6 +412,10 @@ typedef struct RTSPState { #define RTSP_FLAG_LISTEN 0x2 /**< Wait for incoming connections. */ #define RTSP_FLAG_CUSTOM_IO 0x4 /**< Do all IO via the AVIOContext. */ +typedef struct RTSPSource { + char addr[128]; /**< Source-specific multicast include source IP address (from SDP content) */ +} RTSPSource; + /** * Describe a single stream, as identified by a single m= line block in the * SDP content. In the case of RDT, one RTSPStream can represent multiple @@ -435,7 +439,10 @@ typedef struct RTSPStream { //@{ int sdp_port; /**< port (from SDP content) */ struct sockaddr_storage sdp_ip; /**< IP address (from SDP content) */ - char source_addr[100]; /**< Source-specific multicast source IP address (from SDP content) */ + int nb_include_source_addrs; /**< Number of source-specific multicast include source IP addresses (from SDP content) */ + struct RTSPSource **include_source_addrs; /**< Source-specific multicast include source IP addresses (from SDP content) */ + int nb_exclude_source_addrs; /**< Number of source-specific multicast exclude source IP addresses (from SDP content) */ + struct RTSPSource **exclude_source_addrs; /**< Source-specific multicast exclude source IP addresses (from SDP content) */ int sdp_ttl; /**< IP Time-To-Live (from SDP content) */ int sdp_payload_type; /**< payload type */ //@} |