GNOME Bugzilla – Bug 731355
GstFlowCombiner not introspection-friendly
Last modified: 2014-06-14 10:36:26 UTC
G-I can't handle GstFlowCombiner because it isn't a boxed type. Boxing it isn't trivial since there is no copy function. Perhaps it could be turned into a reference-counting type to keep the cost of the GBoxedCopyFunc down?
This should hopefully work: commit b05eeb9df4f5ea1bb99713d4795c92bd870cf088 Author: Tim-Philipp Müller <tim@centricular.com> Date: Sat Jun 14 11:31:44 2014 +0100 flowcombiner: keep a ref to the pads we're using Needed for use via the boxed type. https://bugzilla.gnome.org/show_bug.cgi?id=731355 commit 49fedb521fe4f3ccade7460027941e94b5d3c720 Author: Tim-Philipp Müller <tim@centricular.com> Date: Sat Jun 14 10:54:41 2014 +0100 flowcombiner: add boxed type for bindings https://bugzilla.gnome.org/show_bug.cgi?id=731355 Didn't expose the ref/unref for now, since they don't seem very useful in general.