mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 05:16:05 +00:00
validate: fix multiple occurrences of 'parametter'
This commit is contained in:
parent
b0610dcc9a
commit
158507585c
5 changed files with 6 additions and 6 deletions
|
@ -283,7 +283,7 @@ gst_validate_reporter_g_log_func (const gchar * log_domain,
|
|||
* @reporter: The source of the new report
|
||||
* @issue_id: The #GstValidateIssueId of the issue
|
||||
* @format: The format of the message describing the issue in a printf
|
||||
* format followed by the parametters.
|
||||
* format followed by the parameters.
|
||||
*
|
||||
* Reports a new issue in the GstValidate reporting system with @m
|
||||
* as the source of that issue.
|
||||
|
|
|
@ -42,7 +42,7 @@ G_BEGIN_DECLS
|
|||
* @m: The #GstValidateReporter where the issue happened
|
||||
* @issue_id: The #GstValidateIssueId of the issue
|
||||
* @...: The format of the message describing the issue in a printf
|
||||
* format, followed by the parametters.
|
||||
* format, followed by the parameters.
|
||||
*
|
||||
* Reports a new issue in the GstValidate reporting system with @m
|
||||
* as the source of that issue.
|
||||
|
|
|
@ -3866,7 +3866,7 @@ init_scenarios (void)
|
|||
{NULL}
|
||||
}),
|
||||
"Sets pipeline to PAUSED. You can add a 'duration'\n"
|
||||
"parametter so the pipeline goes back to playing after that duration\n"
|
||||
"parameter so the pipeline goes back to playing after that duration\n"
|
||||
"(in second)",
|
||||
GST_VALIDATE_ACTION_TYPE_NEEDS_CLOCK & GST_VALIDATE_ACTION_TYPE_ASYNC);
|
||||
|
||||
|
|
|
@ -137,7 +137,7 @@ _create_keyboard_events (GstValidateAction * action,
|
|||
} else if (etype != GDK_KEY_PRESS && etype != GDK_KEY_RELEASE) {
|
||||
GST_VALIDATE_REPORT (action->scenario,
|
||||
g_quark_from_static_string ("scenario::execution-error"),
|
||||
"GdkEvent type %s does not work with the 'keys' parametter",
|
||||
"GdkEvent type %s does not work with the 'keys' parameter",
|
||||
gst_structure_get_string (action->structure, "type"));
|
||||
|
||||
return NULL;
|
||||
|
@ -421,7 +421,7 @@ _execute_put_events (GstValidateScenario * scenario, GstValidateAction * action)
|
|||
|
||||
GST_VALIDATE_REPORT (scenario,
|
||||
g_quark_from_static_string ("scenario::execution-error"),
|
||||
"Action parametters not supported yet");
|
||||
"Action parameters not supported yet");
|
||||
|
||||
return GST_VALIDATE_EXECUTE_ACTION_ERROR_REPORTED;
|
||||
}
|
||||
|
|
|
@ -807,7 +807,7 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|||
"\n "
|
||||
" and then check them against pre generated, reference images."
|
||||
"\n "
|
||||
" The following parametters can be passed in the configuration file:"
|
||||
" The following parameters can be passed in the configuration file:"
|
||||
"\n "
|
||||
" 'element-classification': The target element classification as define in gst_element_class_set_metadata"
|
||||
"\n "
|
||||
|
|
Loading…
Reference in a new issue