GNOME Bugzilla – Bug 337747
don't use G_OBJECT_CLASS(klass) for each property
Last modified: 2006-12-10 19:43:32 UTC
many plugins do gobject_class = (GObjectClass*)klass; and still later g_object_class_install_property(G_OBJECT_CLASS(klass), ...); They better use the macro first and tehn use the gobject_class var.
performance impact is very small. If someone does a batch update, this would be acceptable, marking as enhancement.
Created attachment 67795 [details] [review] Patch for gst-plugins-base Here is a quick patch against cvs version of gst-plugins-base.
Created attachment 67803 [details] [review] gst-plugins-good patch Here is another patch, this time for gst-plugins-good.
this is fixed in CVS for all modules.