mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-27 11:32:51 +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_full
|
||||
<SUBSECTION>
|
||||
GstPluginFlags
|
||||
GstPluginDependencyFlags
|
||||
gst_plugin_add_dependency
|
||||
gst_plugin_add_dependency_simple
|
||||
|
@ -1762,7 +1763,6 @@ GST_TYPE_PLUGIN
|
|||
GST_TYPE_PLUGIN_ERROR
|
||||
GST_IS_PLUGIN
|
||||
GST_IS_PLUGIN_CLASS
|
||||
GstPluginFlags
|
||||
GST_TYPE_PLUGIN_FLAGS
|
||||
GST_TYPE_PLUGIN_DEPENDENCY_FLAGS
|
||||
GstPluginPrivate
|
||||
|
|
|
@ -71,7 +71,13 @@ typedef enum
|
|||
GST_PLUGIN_ERROR_NAME_MISMATCH
|
||||
} 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
|
||||
{
|
||||
GST_PLUGIN_FLAG_CACHED = (1<<0),
|
||||
|
|
Loading…
Reference in a new issue