I think we'll need to have an extra PKG_CONFIG check for examples
cflags
and libs, and maybe add a --disable-examples configure option. gtkmm
has
a --disable-examples option already.
The const references seem odd here:
+ _WRAP_METHOD(bool seek(Format format, SeekFlags flags, const gint64&
position), gst_element_seek_simple)
_WRAP_METHOD(bool seek(const double& rate, Format format, SeekFlags
flags, SeekType current_type, const gint64& current_position, SeekType
stop_type, const gint64& stop_position), gst_element_seek)
I don't see the point of passing a const refererence when it could just
be passed by value. Could you change that, please?