summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.h
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-12-04 15:28:29 +0200
committerMartin Storsjö <martin@martin.st>2016-05-11 10:35:26 +0300
commitbc2a32969eb4db17677971def5ad5b936d9d1648 (patch)
treeeaef38ba097ad7d0c912df2ab610e964091e389d /libavformat/rtsp.h
parent9ea78fd00a49f0691c1a5134eb59d4e5bb380a2a (diff)
rtsp: Parse SSRC attributes in the SDP
When feeding input RTP packets to the depacketizer via custom IO, it needs to pick the right stream using the payload type for RTP packets, and using the SSRC for RTCP packets. If the first packet is an RTCP packet, we don't (currently) know the SSRC yet and thus can't pick the right RTP depacketizer to handle it. By parsing the SSRC attribute in the SDP, we can map initial RTCP packets to the right stream. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r--libavformat/rtsp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h
index 0226dac0f1..ff5b53207e 100644
--- a/libavformat/rtsp.h
+++ b/libavformat/rtsp.h
@@ -457,6 +457,9 @@ typedef struct RTSPStream {
/** Enable sending RTCP feedback messages according to RFC 4585 */
int feedback;
+ /** SSRC for this stream, to allow identifying RTCP packets before the first RTP packet */
+ uint32_t ssrc;
+
char crypto_suite[40];
char crypto_params[100];
} RTSPStream;