mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
validate: report: fix description for timestamp out of range
Additionally: Fix nits in the descriptions for SCENARIO_ACTION_EXECUTION_ISSUE and CONFIG_ACTION_TYPE
This commit is contained in:
parent
330ae663dc
commit
c8478b87f8
1 changed files with 3 additions and 3 deletions
|
@ -221,7 +221,7 @@ gst_validate_report_load_issues (void)
|
||||||
_("a buffer leaving an element should have its timestamps in the range "
|
_("a buffer leaving an element should have its timestamps in the range "
|
||||||
"of the received buffers timestamps. i.e. If an element received "
|
"of the received buffers timestamps. i.e. If an element received "
|
||||||
"buffers with timestamps from 0s to 10s, it can't push a buffer with "
|
"buffers with timestamps from 0s to 10s, it can't push a buffer with "
|
||||||
"with a 11s timestamp, because it doesn't have data for that"));
|
"a 11s timestamp, because it doesn't have data for that"));
|
||||||
REGISTER_VALIDATE_ISSUE (WARNING, WRONG_BUFFER,
|
REGISTER_VALIDATE_ISSUE (WARNING, WRONG_BUFFER,
|
||||||
_("Received buffer does not correspond to wanted one."),
|
_("Received buffer does not correspond to wanted one."),
|
||||||
_("When checking playback of a file against a MediaInfo file"
|
_("When checking playback of a file against a MediaInfo file"
|
||||||
|
@ -382,7 +382,7 @@ gst_validate_report_load_issues (void)
|
||||||
REGISTER_VALIDATE_ISSUE (CRITICAL, SCENARIO_ACTION_EXECUTION_ERROR,
|
REGISTER_VALIDATE_ISSUE (CRITICAL, SCENARIO_ACTION_EXECUTION_ERROR,
|
||||||
_("The execution of an action did not properly happen"), NULL);
|
_("The execution of an action did not properly happen"), NULL);
|
||||||
REGISTER_VALIDATE_ISSUE (ISSUE, SCENARIO_ACTION_EXECUTION_ISSUE,
|
REGISTER_VALIDATE_ISSUE (ISSUE, SCENARIO_ACTION_EXECUTION_ISSUE,
|
||||||
_("An issue happend during the execution of a scenario"), NULL);
|
_("An issue happened during the execution of a scenario"), NULL);
|
||||||
REGISTER_VALIDATE_ISSUE (WARNING, G_LOG_WARNING, _("We got a g_log warning"),
|
REGISTER_VALIDATE_ISSUE (WARNING, G_LOG_WARNING, _("We got a g_log warning"),
|
||||||
NULL);
|
NULL);
|
||||||
REGISTER_VALIDATE_ISSUE (CRITICAL, G_LOG_CRITICAL,
|
REGISTER_VALIDATE_ISSUE (CRITICAL, G_LOG_CRITICAL,
|
||||||
|
@ -893,7 +893,7 @@ gst_validate_printf_valist (gpointer source, const gchar * format, va_list args)
|
||||||
if (IS_CONFIG_ACTION_TYPE (type->flags))
|
if (IS_CONFIG_ACTION_TYPE (type->flags))
|
||||||
g_string_append_printf (string,
|
g_string_append_printf (string,
|
||||||
"\n Is config action (meaning it will be executing right "
|
"\n Is config action (meaning it will be executing right "
|
||||||
"at the begining of the execution of the pipeline)");
|
"at the beginning of the execution of the pipeline)");
|
||||||
|
|
||||||
|
|
||||||
tmp = g_strdup_printf ("\n ");
|
tmp = g_strdup_printf ("\n ");
|
||||||
|
|
Loading…
Reference in a new issue