validate: scenario: improve description blurb for execute-on-idle

Additionally: Fix issues in _register_action_type() documentation.
This commit is contained in:
Reynaldo H. Verdejo Pinochet 2017-03-28 14:35:38 -07:00
parent eb2353f037
commit d5da8682b2

View file

@ -2910,11 +2910,11 @@ gst_validate_scenario_class_init (GstValidateScenarioClass * klass)
PROP_EXECUTE_ON_IDLE, PROP_EXECUTE_ON_IDLE,
g_param_spec_boolean ("execute-on-idle", g_param_spec_boolean ("execute-on-idle",
"Force waiting between actions", "Force waiting between actions",
"Always execute actions on idle and do not chain them" "Always execute actions on idle and do not chain them to execute as"
" to execute as fast as possible. That is usefull if action execution" " fast as possible. Setting this property is useful if action "
" can lead to the addition of source on the same main loop." " execution can lead to the addition of new sources on the same main"
" It allows those other GSources to have a chance to be dispatch between" " loop as it provides these new GSource a chance to be dispatched"
" validate actions execution", FALSE, G_PARAM_READWRITE)); " between actions", FALSE, G_PARAM_READWRITE));
/** /**
* GstValidateScenario::done: * GstValidateScenario::done:
@ -3457,7 +3457,7 @@ gst_validate_action_get_scenario (GstValidateAction * action)
* @flags: The #GstValidateActionTypeFlags to set on the new action type * @flags: The #GstValidateActionTypeFlags to set on the new action type
* *
* Register a new action type to the action type system. If the action type already * Register a new action type to the action type system. If the action type already
* exists, it will be overriden by that new definition * exists, it will be overridden by the new definition
* *
* Returns: (transfer none): The newly created action type or the already registered action type * Returns: (transfer none): The newly created action type or the already registered action type
* if it had a higher rank * if it had a higher rank