diff --git a/gst/gst_private.h b/gst/gst_private.h index 6c7ad7265e..e0c27fe7b0 100644 --- a/gst/gst_private.h +++ b/gst/gst_private.h @@ -127,6 +127,12 @@ gboolean priv_gst_structure_append_to_gstring (const GstStructure * structure, gboolean priv_gst_registry_binary_read_cache (GstRegistry * registry, const char *location); gboolean priv_gst_registry_binary_write_cache (GstRegistry * registry, const char *location); +void __gst_element_factory_add_static_pad_template (GstElementFactory * elementfactory, + GstStaticPadTemplate * templ); + +void __gst_element_factory_add_interface (GstElementFactory * elementfactory, + const gchar * interfacename); + /* used in gstvalue.c and gststructure.c */ #define GST_ASCII_IS_STRING(c) (g_ascii_isalnum((c)) || ((c) == '_') || \ ((c) == '-') || ((c) == '+') || ((c) == '/') || ((c) == ':') || \ diff --git a/gst/gstelementfactory.h b/gst/gstelementfactory.h index ee995941fe..0794f2fe55 100644 --- a/gst/gstelementfactory.h +++ b/gst/gstelementfactory.h @@ -98,11 +98,6 @@ GstElement* gst_element_factory_create (GstElementFacto const gchar *name); GstElement* gst_element_factory_make (const gchar *factoryname, const gchar *name); -/* FIXME 0.11: move these two into our private headers */ -void __gst_element_factory_add_static_pad_template (GstElementFactory *elementfactory, - GstStaticPadTemplate *templ); -void __gst_element_factory_add_interface (GstElementFactory *elementfactory, - const gchar *interfacename); gboolean gst_element_register (GstPlugin *plugin, const gchar *name, guint rank, GType type);