Browse code

cmdutils: fix typos

Signed-off-by: Moritz Barsnick <barsnick@gmx.net>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 3e5d27d7a7350e096eac9f8999d02bf48c3b3a69)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

Moritz Barsnick authored on 2016/10/09 19:57:02
Showing 2 changed files
... ...
@@ -2075,7 +2075,7 @@ static int print_device_sources(AVInputFormat *fmt, AVDictionary *opts)
2075 2075
     if (!fmt || !fmt->priv_class  || !AV_IS_INPUT_DEVICE(fmt->priv_class->category))
2076 2076
         return AVERROR(EINVAL);
2077 2077
 
2078
-    printf("Audo-detected sources for %s:\n", fmt->name);
2078
+    printf("Auto-detected sources for %s:\n", fmt->name);
2079 2079
     if (!fmt->get_device_list) {
2080 2080
         ret = AVERROR(ENOSYS);
2081 2081
         printf("Cannot list sources. Not implemented.\n");
... ...
@@ -2105,7 +2105,7 @@ static int print_device_sinks(AVOutputFormat *fmt, AVDictionary *opts)
2105 2105
     if (!fmt || !fmt->priv_class  || !AV_IS_OUTPUT_DEVICE(fmt->priv_class->category))
2106 2106
         return AVERROR(EINVAL);
2107 2107
 
2108
-    printf("Audo-detected sinks for %s:\n", fmt->name);
2108
+    printf("Auto-detected sinks for %s:\n", fmt->name);
2109 2109
     if (!fmt->get_device_list) {
2110 2110
         ret = AVERROR(ENOSYS);
2111 2111
         printf("Cannot list sinks. Not implemented.\n");
... ...
@@ -450,13 +450,13 @@ int show_devices(void *optctx, const char *opt, const char *arg);
450 450
 
451 451
 #if CONFIG_AVDEVICE
452 452
 /**
453
- * Print a listing containing audodetected sinks of the output device.
453
+ * Print a listing containing autodetected sinks of the output device.
454 454
  * Device name with options may be passed as an argument to limit results.
455 455
  */
456 456
 int show_sinks(void *optctx, const char *opt, const char *arg);
457 457
 
458 458
 /**
459
- * Print a listing containing audodetected sources of the input device.
459
+ * Print a listing containing autodetected sources of the input device.
460 460
  * Device name with options may be passed as an argument to limit results.
461 461
  */
462 462
 int show_sources(void *optctx, const char *opt, const char *arg);