mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 19:50:40 +00:00
validate:scenario: fix some typos
This commit is contained in:
parent
bba35fccf2
commit
0b3ce37eea
1 changed files with 6 additions and 6 deletions
|
@ -3081,7 +3081,7 @@ gst_validate_scenario_check_latency (GstValidateScenario * scenario,
|
||||||
query = gst_query_new_latency ();
|
query = gst_query_new_latency ();
|
||||||
if (!gst_element_query (GST_ELEMENT_CAST (pipeline), query)) {
|
if (!gst_element_query (GST_ELEMENT_CAST (pipeline), query)) {
|
||||||
GST_VALIDATE_REPORT (scenario, SCENARIO_ACTION_EXECUTION_ERROR,
|
GST_VALIDATE_REPORT (scenario, SCENARIO_ACTION_EXECUTION_ERROR,
|
||||||
"Failed to perfom LATENCY query");
|
"Failed to perform LATENCY query");
|
||||||
gst_query_unref (query);
|
gst_query_unref (query);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -3168,7 +3168,7 @@ message_cb (GstBus * bus, GstMessage * message, GstValidateScenario * scenario)
|
||||||
case GST_MESSAGE_ERROR:
|
case GST_MESSAGE_ERROR:
|
||||||
is_error = TRUE;
|
is_error = TRUE;
|
||||||
|
|
||||||
/* Passtrough */
|
/* Passthrough */
|
||||||
case GST_MESSAGE_EOS:
|
case GST_MESSAGE_EOS:
|
||||||
{
|
{
|
||||||
GstValidateAction *stop_action;
|
GstValidateAction *stop_action;
|
||||||
|
@ -3494,7 +3494,7 @@ _load_scenario_file (GstValidateScenario * scenario,
|
||||||
action->action_number = priv->num_actions++;
|
action->action_number = priv->num_actions++;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* max-latency and max-dropped can be overriden using config */
|
/* max-latency and max-dropped can be overridden using config */
|
||||||
for (config = gst_validate_plugin_get_config (NULL); config;
|
for (config = gst_validate_plugin_get_config (NULL); config;
|
||||||
config = g_list_next (config)) {
|
config = g_list_next (config)) {
|
||||||
GstClockTime max_latency;
|
GstClockTime max_latency;
|
||||||
|
@ -3755,7 +3755,7 @@ gst_validate_scenario_class_init (GstValidateScenarioClass * klass)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstValidateScenario::done:
|
* GstValidateScenario::done:
|
||||||
* @scenario: The scenario runing
|
* @scenario: The scenario running
|
||||||
*
|
*
|
||||||
* Emitted once all actions have been executed
|
* Emitted once all actions have been executed
|
||||||
*/
|
*/
|
||||||
|
@ -5094,7 +5094,7 @@ init_scenarios (void)
|
||||||
{
|
{
|
||||||
.name = "max-latency",
|
.name = "max-latency",
|
||||||
.description = "The maximum latency in nanoseconds allowed for this pipeline.\n"
|
.description = "The maximum latency in nanoseconds allowed for this pipeline.\n"
|
||||||
"It can be overriden using core configuration, like for example by defining the "
|
"It can be overridden using core configuration, like for example by defining the "
|
||||||
"env variable GST_VALIDATE_CONFIG=core,max-latency=33000000",
|
"env variable GST_VALIDATE_CONFIG=core,max-latency=33000000",
|
||||||
.mandatory = FALSE,
|
.mandatory = FALSE,
|
||||||
.types = "double, int",
|
.types = "double, int",
|
||||||
|
@ -5104,7 +5104,7 @@ init_scenarios (void)
|
||||||
{
|
{
|
||||||
.name = "max-dropped",
|
.name = "max-dropped",
|
||||||
.description = "The maximum number of buffers which can be dropped by the QoS system allowed for this pipeline.\n"
|
.description = "The maximum number of buffers which can be dropped by the QoS system allowed for this pipeline.\n"
|
||||||
"It can be overriden using core configuration, like for example by defining the "
|
"It can be overridden using core configuration, like for example by defining the "
|
||||||
"env variable GST_VALIDATE_CONFIG=core,max-dropped=100",
|
"env variable GST_VALIDATE_CONFIG=core,max-dropped=100",
|
||||||
.mandatory = FALSE,
|
.mandatory = FALSE,
|
||||||
.types = "int",
|
.types = "int",
|
||||||
|
|
Loading…
Reference in a new issue