After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 562280 - GstClockID not wrapped correcty
GstClockID not wrapped correcty
Status: RESOLVED DUPLICATE of bug 380495
Product: GStreamer
Classification: Platform
Component: gst-python
git master
Other Linux
: Normal normal
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2008-11-26 00:34 UTC by Thomas Vander Stichele
Modified: 2008-11-27 23:27 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Thomas Vander Stichele 2008-11-26 00:34:58 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.
Comment 1 René Stadler 2008-11-27 23:27:01 UTC

*** This bug has been marked as a duplicate of 380495 ***