diff options
author | Lou Logan <lou@lrcd.com> | 2017-09-21 15:10:56 -0800 |
---|---|---|
committer | Lou Logan <lou@lrcd.com> | 2017-09-21 16:17:02 -0800 |
commit | 183fd30e0f6fdc762fd955a24cfc7e6a49e1055c (patch) | |
tree | 13ca4ed5ab13cd5f7fdf8bd752e6fe4db3548bcf /libswscale | |
parent | 724cf83f100065ddabf827f55bf7ae9785875b4c (diff) | |
download | ffmpeg-183fd30e0f6fdc762fd955a24cfc7e6a49e1055c.tar.gz |
Fix several typos
"apix_fmts" found by Marc Péchaud.
"speedloss" found by Mikhail V.
Signed-off-by: Lou Logan <lou@lrcd.com>
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index ba66314c7d..7f3e22355f 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -326,7 +326,7 @@ static int swscale(SwsContext *c, const uint8_t *src[], static int warnedAlready=0; int cpu_flags = av_get_cpu_flags(); if (HAVE_MMXEXT && (cpu_flags & AV_CPU_FLAG_SSE2) && !warnedAlready){ - av_log(c, AV_LOG_WARNING, "Warning: data is not aligned! This can lead to a speedloss\n"); + av_log(c, AV_LOG_WARNING, "Warning: data is not aligned! This can lead to a speed loss\n"); warnedAlready=1; } } |