diff options
author | Lou Logan <lou@lrcd.com> | 2016-03-28 14:07:47 -0800 |
---|---|---|
committer | Lou Logan <lou@lrcd.com> | 2016-03-28 14:13:17 -0800 |
commit | 06eef96b69d73a31f2b390955d1be0537214a0c8 (patch) | |
tree | ca45453b9853a6ad358966292639148a036f3a1a /libavfilter | |
parent | 99f2a59c2f298c2a8c0d1058759fd0ae81bc8c2e (diff) | |
download | ffmpeg-06eef96b69d73a31f2b390955d1be0537214a0c8.tar.gz |
fix some a/an typos
Signed-off-by: Lou Logan <lou@lrcd.com>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/graphparser.c | 2 | ||||
-rw-r--r-- | libavfilter/vf_mcdeint.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index d9f40d698d..8d15b5dfe0 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -354,7 +354,7 @@ static int parse_outputs(const char **buf, AVFilterInOut **curr_inputs, av_freep(&match); av_freep(&input); } else { - /* Not in the list, so add the first input as a open_output */ + /* Not in the list, so add the first input as an open_output */ input->name = name; insert_inout(open_outputs, input); } diff --git a/libavfilter/vf_mcdeint.c b/libavfilter/vf_mcdeint.c index ea32a240bb..050a8341d9 100644 --- a/libavfilter/vf_mcdeint.c +++ b/libavfilter/vf_mcdeint.c @@ -38,7 +38,7 @@ * * Only past frames are used, we should ideally use future frames too, * something like filtering the whole movie in forward and then - * backward direction seems like a interesting idea but the current + * backward direction seems like an interesting idea but the current * filter framework is FAR from supporting such things. * * Combining the motion compensated image with the input image also is |