diff options
author | Lou Logan <lou@lrcd.com> | 2012-03-12 14:30:13 -0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-13 01:14:04 +0100 |
commit | 2d38081b4f65f23077cb1b27f2d08c82c45afa05 (patch) | |
tree | 2657daa83ccd604d7fd71bf8d025995d302a86f7 /libswresample | |
parent | 105cac3407e3064539939de58a1cfda8804e58c8 (diff) | |
download | ffmpeg-2d38081b4f65f23077cb1b27f2d08c82c45afa05.tar.gz |
cosmetics: fix some typos
Patch attached.
From 2d4094fc0dcb4ccd0735eb7e1719e228ebb56bb9 Mon Sep 17 00:00:00 2001
From: Lou Logan <lou@lrcd.com>
Date: Mon, 12 Mar 2012 14:13:44 -0800
Subject: [PATCH] cosmetics: fix some typos
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-rw-r--r-- | libswresample/swresample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c index 7fb1ee8c2c..dd09fc9245 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -491,7 +491,7 @@ int swr_convert(struct SwrContext *s, uint8_t *out_arg[SWR_CH_MAX], int out_coun if(s->int_sample_fmt == s->out_sample_fmt && s->out.planar){ if(preout==in){ - out_count= FFMIN(out_count, in_count); //TODO check at teh end if this is needed or redundant + out_count= FFMIN(out_count, in_count); //TODO check at the end if this is needed or redundant av_assert0(s->in.planar); //we only support planar internally so it has to be, we support copying non planar though copy(out, in, out_count); return out_count; |