I'm trying to inherit GstTextOverlay
, but the farthest I can go is this link-time error "undefined reference to `gst_text_overlay_get_type'".
According to the Makefile, it is lib/gstreamer-1.0/libgstpango.so
that provides GstTextOverlay
, but within the .so file there is no symbol gst_text_overlay_get_type
. The only symbols that are exported by the .so file are gst_plugin_pango_register
and gst_plugin_pango_get_desc
.
So, how can I inherit the GstTextOverlay
without calling gst_text_overlay_get_type
? Or, is there a way to access gst_text_overlay_get_type
? Thanks. :)