Skip to content
Snippets Groups Projects
Commit de40a24b authored by Tim-Philipp Müller's avatar Tim-Philipp Müller :tropical_fish:
Browse files

validate: spelling fixes

analize != analyze
parent 9ea5df9c
No related branches found
No related tags found
No related merge requests found
......@@ -457,7 +457,7 @@ bus_callback (GstBus * bus, GstMessage * message,
}
static gboolean
_run_frame_analisis (GstMediaDescriptorWriter * writer,
_run_frame_analysis (GstMediaDescriptorWriter * writer,
GstValidateRunner * runner, const gchar * uri)
{
GstBus *bus;
......@@ -466,7 +466,7 @@ _run_frame_analisis (GstMediaDescriptorWriter * writer,
GstElement *uridecodebin = gst_element_factory_make ("uridecodebin", NULL);
writer->priv->pipeline = gst_pipeline_new ("frame-analisis");
writer->priv->pipeline = gst_pipeline_new ("frame-analysis");
monitor =
gst_validate_monitor_factory_create (GST_OBJECT_CAST (writer->
......@@ -569,7 +569,7 @@ gst_media_descriptor_writer_new_discover (GstValidateRunner * runner,
if (full == TRUE)
_run_frame_analisis (writer, runner, uri);
_run_frame_analysis (writer, runner, uri);
out:
if (info)
......
......@@ -55,7 +55,7 @@ main (int argc, gchar ** argv)
&output_file, "The output file to store the results",
NULL},
{"full", 'f', 0, G_OPTION_ARG_NONE,
&full, "Fully analize the file frame by frame",
&full, "Fully analyze the file frame by frame",
NULL},
{"expected-results", 'e', 0, G_OPTION_ARG_FILENAME,
&expected_file, "Path to file containing the expected results "
......@@ -66,7 +66,7 @@ main (int argc, gchar ** argv)
g_set_prgname ("gst-validate-media-check-" GST_API_VERSION);
ctx = g_option_context_new ("[URI]");
g_option_context_set_summary (ctx, "Analizes a media file and writes "
g_option_context_set_summary (ctx, "Analyzes a media file and writes "
"the results to stdout or a file. Can also compare the results found "
"with another results file for identifying regressions. The monitoring"
" lib from gst-validate will be enabled during the tests to identify "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment