validate: spelling fixes
authorTim-Philipp Müller <tim@centricular.com>
Sun, 14 Jun 2015 21:44:26 +0000 (22:44 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Sun, 14 Jun 2015 21:44:26 +0000 (22:44 +0100)
analize != analyze

validate/gst/validate/media-descriptor-writer.c
validate/tools/gst-validate-media-check.c

index fa2ae3a..d7aac0c 100644 (file)
@@ -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)
index 362c97e..2b4f6de 100644 (file)
@@ -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 "