GNOME Bugzilla – Bug 562280
GstClockID not wrapped correcty
Last modified: 2008-11-27 23:27:01 UTC
In [1]: import gst In [2]: c = gst.SystemClock() In [3]: cid = c.n c.new_periodic_id c.new_single_shot_id c.notify In [3]: cid = c.ne c.new_periodic_id c.new_single_shot_id In [3]: cid = c.new_single_shot_id(5 * gst.SECOND) In [4]: type(cid) Out[4]: <type 'gobject.GPointer'> cid should have been a GstClockID so that methods like wait_async() are available on it. A unit test should be added to assure this works.
*** This bug has been marked as a duplicate of 380495 ***