diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2013-02-06 13:47:51 +0100 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2013-02-06 14:06:24 +0100 |
commit | 50e13e6d89bda6e900b153f04c745dda0de96213 (patch) | |
tree | 9c1c1af09c5053027045b3d0df73c1f30b21487f | |
parent | 483c81942162b948d621a4958ac145452d4cccf4 (diff) |
rtspsrc: save the stream SSRC
Conflicts:
gst/rtsp/gstrtspsrc.c
-rw-r--r-- | gst/rtsp/gstrtspsrc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index 7289e6a62..cafeb980b 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -2233,6 +2233,9 @@ new_manager_pad (GstElement * manager, GstPad * pad, GstRTSPSrc * src) if (stream == NULL) goto unknown_stream; + /* save SSRC */ + stream->ssrc = ssrc; + /* we'll add it later see below */ stream->added = TRUE; |