rtspsrc: don't clear sdp when set as uri
authorWim Taymans <wim.taymans@collabora.co.uk>
Fri, 10 Sep 2010 16:06:48 +0000 (18:06 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Fri, 10 Sep 2010 16:06:48 +0000 (18:06 +0200)
when we set the SDP with an uri, don't clear it when we go to READY.

gst/rtsp/gstrtspsrc.c

index 66190b6..12b4e3e 100644 (file)
@@ -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;
   }