validate: Fix a few annotation issues

This commit is contained in:
Thibault Saunier 2014-10-16 17:32:56 +02:00
parent 8c6803c467
commit c77089cc62
2 changed files with 10 additions and 2 deletions

View file

@ -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,

View file

@ -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)