From 8f2d254e24169012b3f6b09f4cce1d1ce014a28d Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 10 Sep 2010 18:06:48 +0200 Subject: [PATCH] rtspsrc: don't clear sdp when set as uri when we set the SDP with an uri, don't clear it when we go to READY. --- gst/rtsp/gstrtspsrc.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index 66190b6..12b4e3e 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -521,6 +521,11 @@ gst_rtspsrc_finalize (GObject * object) g_free (rtspsrc->user_id); g_free (rtspsrc->user_pw); + if (rtspsrc->sdp) { + gst_sdp_message_free (rtspsrc->sdp); + rtspsrc->sdp = NULL; + } + /* free locks */ g_static_rec_mutex_free (rtspsrc->stream_rec_lock); g_free (rtspsrc->stream_rec_lock); @@ -1146,7 +1151,8 @@ gst_rtspsrc_cleanup (GstRTSPSrc * src) gst_rtsp_range_free (src->range); src->range = NULL; - if (src->sdp) { + /* don't clear the SDP when it was used in the url */ + if (src->sdp && !src->from_sdp) { gst_sdp_message_free (src->sdp); src->sdp = NULL; } -- 2.7.4