From c07ed10b0e18beecdb5c816546eca3a065ddc5ad Mon Sep 17 00:00:00 2001 From: Diederik de Haas via ffmpeg-devel Date: Fri, 10 Nov 2023 16:41:54 +0100 Subject: apply spelling fixes Fix spelling issue as reported by Debian's lintian tool: accomodate -> accommodate addtional -> additional auxillary -> auxiliary bellow -> below betweeen -> between Calulate -> Calculate coefficents -> coefficients Defalt -> Default defaul -> default higer -> higher neccesary -> necessary orignal -> original ouput -> output precison -> precision processsing -> processing substract -> subtract Transfered -> Transferred upto -> up to Also add several of them to the 'common typos' check in patcheck. Signed-off-by: Diederik de Haas --- libavfilter/vf_dedot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter/vf_dedot.c') diff --git a/libavfilter/vf_dedot.c b/libavfilter/vf_dedot.c index 7aa2583184..56679bc602 100644 --- a/libavfilter/vf_dedot.c +++ b/libavfilter/vf_dedot.c @@ -111,12 +111,12 @@ static int dedotcrawl##name(AVFilterContext *ctx, void *arg, \ for (int y = slice_start; y < slice_end; y++) { \ for (int x = 1; x < s->planewidth[0] - 1; x++) { \ int above = src[x - src_linesize]; \ - int bellow = src[x + src_linesize]; \ + int below = src[x + src_linesize]; \ int cur = src[x]; \ int left = src[x - 1]; \ int right = src[x + 1]; \ \ - if (FFABS(above + bellow - 2 * cur) <= luma2d && \ + if (FFABS(above + below - 2 * cur) <= luma2d && \ FFABS(left + right - 2 * cur) <= luma2d) \ continue; \ \ -- cgit v1.2.3