[gstreamer-bugs] [Bug 169396] clock api broken by GstVideoSink

bugzilla-daemon at bugzilla.gnome.org bugzilla-daemon at bugzilla.gnome.org
Thu Mar 10 07:33:17 PST 2005


Please DO NOT reply to this by email. All additional comments should be made in
the comments box of this bug report.

 http://bugzilla.gnome.org/show_bug.cgi?id=169396
 GStreamer | gst-plugins | Ver: 0.8.8

Ronald Bultje changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |NOTABUG
   Target Milestone|HEAD                        |NONE



------- Additional Comments From Ronald Bultje  2005-03-10 10:33 -------
On closer look...

void
gst_element_set_clock (GstElement * element, GstClock * clock)
{
  GstElementClass *oclass;
                                                                                
  g_return_if_fail (GST_IS_ELEMENT (element));
                                                                                
  oclass = GST_ELEMENT_GET_CLASS (element);
                                                                                
  if (oclass->set_clock)
    oclass->set_clock (element, clock);
                                                                                
  gst_object_replace ((GstObject **) & element->clock, (GstObject *) clock);
}

In gstelement.c. I think the code is correct. We don't need to call the parent
in videosink.c.

------- You are receiving this mail because: -------
You are the assignee for the bug.
You are the QA contact for the bug.




More information about the Gstreamer-bugs mailing list