GNOME Bugzilla – Bug 762795
gstreamer-1.0.vapi: wrong binding for Element.query_convert
Last modified: 2016-09-18 20:50:46 UTC
Current binding is public bool query_convert (ref Gst.Format src_format, int64 src_val, Gst.Format dest_format, out int64 dest_val); but it should be public bool query_convert (Gst.Format src_format, int64 src_val, ref Gst.Format dest_format, out int64 dest_val);
Sorry, no ref. correct format would be public bool query_convert (Gst.Format src_format, int64 src_val, Gst.Format dest_format, out int64 dest_val): gboolean gst_element_query_convert (GstElement *element, GstFormat src_format, gint64 src_val, GstFormat dest_format, gint64 *dest_val);
I've submitted a patch to gstreamer. https://bugzilla.gnome.org/show_bug.cgi?id=763895
This was fixed with commit 80f005b12fd305dc9fed4eae29f713b993586950 Author: Rico Tzschichholz <ricotz@ubuntu.com> Date: Mon Mar 21 19:21:32 2016 +0100 vapi: Update GIR-based bindings