mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
docs: add docs for GstPluginFlags
This also makes links to them work.
This commit is contained in:
parent
5a1c788d9a
commit
1b5391fb47
2 changed files with 8 additions and 2 deletions
|
@ -1749,6 +1749,7 @@ gst_plugin_list_free
|
||||||
gst_plugin_register_static
|
gst_plugin_register_static
|
||||||
gst_plugin_register_static_full
|
gst_plugin_register_static_full
|
||||||
<SUBSECTION>
|
<SUBSECTION>
|
||||||
|
GstPluginFlags
|
||||||
GstPluginDependencyFlags
|
GstPluginDependencyFlags
|
||||||
gst_plugin_add_dependency
|
gst_plugin_add_dependency
|
||||||
gst_plugin_add_dependency_simple
|
gst_plugin_add_dependency_simple
|
||||||
|
@ -1762,7 +1763,6 @@ GST_TYPE_PLUGIN
|
||||||
GST_TYPE_PLUGIN_ERROR
|
GST_TYPE_PLUGIN_ERROR
|
||||||
GST_IS_PLUGIN
|
GST_IS_PLUGIN
|
||||||
GST_IS_PLUGIN_CLASS
|
GST_IS_PLUGIN_CLASS
|
||||||
GstPluginFlags
|
|
||||||
GST_TYPE_PLUGIN_FLAGS
|
GST_TYPE_PLUGIN_FLAGS
|
||||||
GST_TYPE_PLUGIN_DEPENDENCY_FLAGS
|
GST_TYPE_PLUGIN_DEPENDENCY_FLAGS
|
||||||
GstPluginPrivate
|
GstPluginPrivate
|
||||||
|
|
|
@ -71,7 +71,13 @@ typedef enum
|
||||||
GST_PLUGIN_ERROR_NAME_MISMATCH
|
GST_PLUGIN_ERROR_NAME_MISMATCH
|
||||||
} GstPluginError;
|
} GstPluginError;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GstPluginFlags:
|
||||||
|
* @GST_PLUGIN_FLAG_CACHED: Temporarily loaded plugins
|
||||||
|
* @GST_PLUGIN_FLAG_BLACKLISTED: The plugin won't be scanned (again)
|
||||||
|
*
|
||||||
|
* The plugin loading state
|
||||||
|
*/
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
GST_PLUGIN_FLAG_CACHED = (1<<0),
|
GST_PLUGIN_FLAG_CACHED = (1<<0),
|
||||||
|
|
Loading…
Reference in a new issue