validate: fix whitespace separators in multi-line string constants

Drop dupplicated & add missing ones

Additionally: typo fixes
This commit is contained in:
Reynaldo H. Verdejo Pinochet 2017-03-20 14:36:36 -07:00
parent bdd152484c
commit 9ea012de22
2 changed files with 8 additions and 8 deletions

View file

@ -43,12 +43,12 @@ main (int argc, char **argv)
{"min-avg-similarity", 'a', 0, G_OPTION_ARG_DOUBLE, {"min-avg-similarity", 'a', 0, G_OPTION_ARG_DOUBLE,
&min_avg_similarity, &min_avg_similarity,
"The minimum average similarity under which we consider" "The minimum average similarity under which we consider"
"the test as failing", " the test as failing",
NULL}, NULL},
{"min-lowest-similarity", 'l', 0, G_OPTION_ARG_DOUBLE, {"min-lowest-similarity", 'l', 0, G_OPTION_ARG_DOUBLE,
&min_lowest_similarity, &min_lowest_similarity,
"The minimum 'lowest' similarity under which we consider" "The minimum 'lowest' similarity under which we consider"
"the test as failing", " the test as failing",
NULL}, NULL},
{"result-output-folder", 'r', 0, G_OPTION_ARG_FILENAME, {"result-output-folder", 'r', 0, G_OPTION_ARG_FILENAME,
&outfolder, &outfolder,

View file

@ -154,7 +154,7 @@ _check_is_key_unit_cb (GstPad * pad, GstPadProbeInfo * info,
GST_VALIDATE_REPORT (kuinfo->scenario, GST_VALIDATE_REPORT (kuinfo->scenario,
SCENARIO_ACTION_EXECUTION_ERROR, SCENARIO_ACTION_EXECUTION_ERROR,
"Did not receive a key frame after requested one, " "Did not receive a key frame after requested one, "
" at running_time %" GST_TIME_FORMAT " (with a %i " "at running_time %" GST_TIME_FORMAT " (with a %i "
"frame tolerance)", GST_TIME_ARGS (kuinfo->running_time), "frame tolerance)", GST_TIME_ARGS (kuinfo->running_time),
NOT_KF_AFTER_FORCE_KF_EVT_TOLERANCE); NOT_KF_AFTER_FORCE_KF_EVT_TOLERANCE);
@ -362,7 +362,7 @@ _execute_set_restriction (GstValidateScenario * scenario,
profile_type = GST_TYPE_ENCODING_VIDEO_PROFILE; profile_type = GST_TYPE_ENCODING_VIDEO_PROFILE;
else { else {
g_error g_error
("No information on what profiles to apply action, you should set either" ("No information on what profiles to apply action, you should set either "
"profile_name or profile_type_name and the caps %s give us no hint", "profile_name or profile_type_name and the caps %s give us no hint",
restriction_caps); restriction_caps);
@ -635,7 +635,7 @@ _register_actions (void)
(GstValidateActionParameter []) { (GstValidateActionParameter []) {
{ {
.name = "restriction-caps", .name = "restriction-caps",
.description = "The restriction caps to set on the encodebin" .description = "The restriction caps to set on the encodebin "
"encoding profile.\nSee gst_encoding_profile_set_restriction()", "encoding profile.\nSee gst_encoding_profile_set_restriction()",
.mandatory = TRUE, .mandatory = TRUE,
.types = "GstCaps serialized as a string" .types = "GstCaps serialized as a string"
@ -659,7 +659,7 @@ _register_actions (void)
{ {
.name = "running-time", .name = "running-time",
.description = "The running_time can be set to request a new key unit at a specific running_time.\n" .description = "The running_time can be set to request a new key unit at a specific running_time.\n"
"If not set, GST_CLOCK_TIME_NONE will be used so upstream elements will produce a new key unit" "If not set, GST_CLOCK_TIME_NONE will be used so upstream elements will produce a new key unit "
"as soon as possible.", "as soon as possible.",
.mandatory = FALSE, .mandatory = FALSE,
.types = "double or string", .types = "double or string",
@ -766,7 +766,7 @@ main (int argc, gchar ** argv)
g_option_context_set_summary (ctx, "Transcodes input-uri to output-uri, " g_option_context_set_summary (ctx, "Transcodes input-uri to output-uri, "
"using the given encoding profile. The pipeline will be monitored for " "using the given encoding profile. The pipeline will be monitored for "
"possible issues detection using the gst-validate lib." "possible issues detection using the gst-validate lib."
"\nCan also perform file conformance" "\nCan also perform file conformance "
"tests after transcoding to make sure the result is correct"); "tests after transcoding to make sure the result is correct");
g_option_context_add_main_entries (ctx, options, NULL); g_option_context_add_main_entries (ctx, options, NULL);
if (want_help) { if (want_help) {
@ -813,7 +813,7 @@ main (int argc, gchar ** argv)
} }
if (argc != 3) { if (argc != 3) {
g_printerr ("%i arguments recived, 2 expected.\n" g_printerr ("%i arguments received, 2 expected.\n"
"You should run the test using:\n" "You should run the test using:\n"
" ./gst-validate-transcoding-1.0 <input-uri> <output-uri> [options]\n", " ./gst-validate-transcoding-1.0 <input-uri> <output-uri> [options]\n",
argc - 1); argc - 1);