mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
elementfactory: move private functions for registry to private header
This commit is contained in:
parent
c7fba914a0
commit
5842e3fc38
2 changed files with 6 additions and 5 deletions
|
@ -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) == ':') || \
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue