gstbin: remove clock references when clock lost happens
authorJosep Torra <n770galaxy@gmail.com>
Tue, 16 Jun 2009 15:51:12 +0000 (17:51 +0200)
committerJosep Torra <n770galaxy@gmail.com>
Tue, 16 Jun 2009 15:51:12 +0000 (17:51 +0200)
Remove reference to clock and clock provider stored in the bin
when the clockprovider element is removed from the bin.

gst/gstbin.c

index 1c07086..52ef614 100644 (file)
@@ -1134,6 +1134,8 @@ gst_bin_remove_func (GstBin * bin, GstElement * element)
   GstIterator *it;
   gboolean is_sink, othersink, found;
   GstMessage *clock_message = NULL;
+  GstClock **provided_clock_p;
+  GstElement **clock_provider_p;
   GList *walk, *next;
   gboolean other_async, this_async, have_no_preroll;
   GstStateChangeReturn ret;
@@ -1209,6 +1211,10 @@ gst_bin_remove_func (GstBin * bin, GstElement * element)
   if (bin->clock_provider == element) {
     GST_DEBUG_OBJECT (bin, "element \"%s\" provided the clock", elem_name);
     bin->clock_dirty = TRUE;
+    provided_clock_p = &bin->provided_clock;
+    clock_provider_p = &bin->clock_provider;
+    gst_object_replace ((GstObject **) provided_clock_p, NULL);
+    gst_object_replace ((GstObject **) clock_provider_p, NULL);
     clock_message =
         gst_message_new_clock_lost (GST_OBJECT_CAST (bin), bin->provided_clock);
   }