GNOME Bugzilla – Bug 512916
python_do_pending_calls timer is apparently redundant
Last modified: 2008-01-30 12:36:53 UTC
It seems the 10Hz python_do_pending_calls timeout added in init_gst is redundant now, since anyone running a glib mainloop in a gst-python app will be using gtk.main() or gobject.MainLoop.run(), so the pygtk or pygobject signal watch will be running. The timer causes any app that loads the gst module, such as rhythmbox (the python bindings expose some GStreamer details) to wake up 10 times per second, which tends to make people unhappy these days.
yep, seems it was fixed almost 3 years ago in pygobject.
2008-01-30 Edward Hervey <edward.hervey@collabora.co.uk> * gst/gstmodule.c: (init_gst): Remove do_pending_calls timeout which has been handled more gracefully in pygobject MainLoop for the past 3 years. Fixes #512916