Sets our main struct and passes it to the parent class
Checks if the factory can sink the given capability.
Checks if the factory can source the given capability.
Create a new element of the type defined by the given elementfactory. It will be given the name supplied, since all elements require a name as their first argument.
Gets the author for this factory.
Gets the description for this factory.
Get the GType for elements managed by this factory. The type can only be retrieved if the element factory is loaded, which can be assured with gst_plugin_feature_load().
Gets the class for this factory.
Gets the longname for this factory
Gets the number of pad_templates in this factory.
Gets the GList of GstStaticPadTemplate for this factory.
the main Gtk struct as a void*
Gets a NULL-terminated array of protocols this element supports or NULL if no protocols are supported. You may not change the contents of the returned array, as it is still owned by the element factory. Use g_strdupv() to make a copy of the protocol string array if you need to.
Gets the type of URIs the element supports or GST_URI_UNKNOWN if none.
Check if factory implements the interface with name interfacename.
Search for an element factory of the given name. Refs the returned element factory; caller is responsible for unreffing.
Create a new element of the type defined by the given element factory. The element will receive a guaranteed unique name, consisting of the element factory name and a number.
Create a new element of the type defined by the given element factory. If name is NULL, then the element will receive a guaranteed unique name, consisting of the element factory name and a number. If name is given, it will be given the name supplied.
Create a new elementfactory capable of instantiating objects of the type and add the factory to plugin.
the main Gtk struct
the main Gtk struct
the main Gtk struct as a void*
Compares type and name of plugin feature. Can be used with gst_filter_run().
Specifies a rank for a plugin feature, so that autoplugging uses the most appropriate feature.
Sets the name of a plugin feature. The name uniquely identifies a feature within all features of the same type. Renaming a plugin feature is not allowed. A copy is made of the name so you should free the supplied name after calling this function.
Gets the rank of a plugin feature.
Gets the name of a plugin feature.
Loads the plugin containing feature if it's not already loaded. feature is unaffected; use the return value instead.
Unrefs each member of list, then frees the list.
Checks whether the given plugin feature is at least the required version
Description GstElementFactory is used to create instances of elements. A GstElementfactory can be added to a GstPlugin as it is also a GstPluginFeature. Use the gst_element_factory_find() and gst_element_factory_create() functions to create element instances or use gst_element_factory_make() as a convenient shortcut. The following code example shows you how to create a GstFileSrc element. Last reviewed on 2005-11-23 (0.9.5)