summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.h
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2016-06-21 22:26:44 +0200
committerClément Bœsch <u@pkh.me>2016-06-21 22:26:44 +0200
commit00e122bc0f2a4d867797f593770f9902f275b864 (patch)
treee23dbf94682f975c5eb8960ddd7b1758cef14b31 /libavformat/rtsp.h
parent4873952f886b718810e5ecf2ef26ca53173e9935 (diff)
parentbc2a32969eb4db17677971def5ad5b936d9d1648 (diff)
Merge commit 'bc2a32969eb4db17677971def5ad5b936d9d1648'
* commit 'bc2a32969eb4db17677971def5ad5b936d9d1648': rtsp: Parse SSRC attributes in the SDP Merged-by: Clément Bœsch <u@pkh.me>
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 bd837b5752..852fd6704e 100644
--- a/libavformat/rtsp.h
+++ b/libavformat/rtsp.h
@@ -466,6 +466,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;