X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=cmdutils.c;h=469c2d557c9d3a924b504933733efc1f068ad1fb;hb=fb240a6276fa36fe120aadd67b4ca774e354f22b;hp=71b3b2f0f9ed8b71b9ad0101c1238b837a327dec;hpb=e9a5fc967867f9bd361f472306ca130bb64b0b04;p=ffmpeg diff --git a/cmdutils.c b/cmdutils.c index 71b3b2f0f9e..469c2d557c9 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -2112,7 +2112,7 @@ static int print_device_sources(AVInputFormat *fmt, AVDictionary *opts) if (!fmt || !fmt->priv_class || !AV_IS_INPUT_DEVICE(fmt->priv_class->category)) return AVERROR(EINVAL); - printf("Audo-detected sources for %s:\n", fmt->name); + printf("Auto-detected sources for %s:\n", fmt->name); if (!fmt->get_device_list) { ret = AVERROR(ENOSYS); printf("Cannot list sources. Not implemented.\n"); @@ -2142,7 +2142,7 @@ static int print_device_sinks(AVOutputFormat *fmt, AVDictionary *opts) if (!fmt || !fmt->priv_class || !AV_IS_OUTPUT_DEVICE(fmt->priv_class->category)) return AVERROR(EINVAL); - printf("Audo-detected sinks for %s:\n", fmt->name); + printf("Auto-detected sinks for %s:\n", fmt->name); if (!fmt->get_device_list) { ret = AVERROR(ENOSYS); printf("Cannot list sinks. Not implemented.\n");