[FFmpeg-cvslog] avfilter/af_axcorrelate: fix typo

Paul B Mahol git at videolan.org
Thu Oct 7 19:36:55 EEST 2021


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Thu Oct  7 18:35:23 2021 +0200| [7529781ba83257c01032d7c27d9e140ac18804a3] | committer: Paul B Mahol

avfilter/af_axcorrelate: fix typo

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7529781ba83257c01032d7c27d9e140ac18804a3
---

 libavfilter/af_axcorrelate.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/af_axcorrelate.c b/libavfilter/af_axcorrelate.c
index 8c5c429127..c27e42f2ed 100644
--- a/libavfilter/af_axcorrelate.c
+++ b/libavfilter/af_axcorrelate.c
@@ -324,7 +324,7 @@ static const AVFilterPad outputs[] = {
 
 static const AVOption axcorrelate_options[] = {
     { "size", "set segment size", OFFSET(size), AV_OPT_TYPE_INT,   {.i64=256}, 2, 131072, AF },
-    { "algo", "set alghorithm",   OFFSET(algo), AV_OPT_TYPE_INT,   {.i64=0},   0,      1, AF, "algo" },
+    { "algo", "set algorithm",    OFFSET(algo), AV_OPT_TYPE_INT,   {.i64=0},   0,      1, AF, "algo" },
     { "slow", "slow algorithm",   0,            AV_OPT_TYPE_CONST, {.i64=0},   0,      0, AF, "algo" },
     { "fast", "fast algorithm",   0,            AV_OPT_TYPE_CONST, {.i64=1},   0,      0, AF, "algo" },
     { NULL }



More information about the ffmpeg-cvslog mailing list