mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
validate: Fix a few annotation issues
This commit is contained in:
parent
8c6803c467
commit
c77089cc62
2 changed files with 10 additions and 2 deletions
|
@ -43,11 +43,11 @@
|
|||
* gst_validate_monitor_factory_create:
|
||||
* @target: The #GstObject to create a #GstValidateMonitor for
|
||||
* @runner: The #GstValidateRunner to use for the new monitor
|
||||
* @parent: (optional): The parent of the new monitor
|
||||
* @parent: (optional) (nullable): The parent of the new monitor
|
||||
*
|
||||
* Create a new monitor for @target and starts monitoring it.
|
||||
*
|
||||
* Returns: The newly created #GstValidateMonitor
|
||||
* Returns: (transfer full): The newly created #GstValidateMonitor
|
||||
*/
|
||||
GstValidateMonitor *
|
||||
gst_validate_monitor_factory_create (GstObject * target,
|
||||
|
|
|
@ -1641,6 +1641,14 @@ _element_added_cb (GstBin * bin, GstElement * element,
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* gst_validate_scenario_factory_create:
|
||||
* @runner: The #GstValidateRunner to use to report issues
|
||||
* @pipeline: The pipeline to run the scenario on
|
||||
* @scenario_name: The name (or path) of the scenario to run
|
||||
*
|
||||
* Returns: (transfer full): A #GstValidateScenario or NULL
|
||||
*/
|
||||
GstValidateScenario *
|
||||
gst_validate_scenario_factory_create (GstValidateRunner *
|
||||
runner, GstElement * pipeline, const gchar * scenario_name)
|
||||
|
|
Loading…
Reference in a new issue