[FFmpeg-cvslog] avfilter/vf_dblur: allow radius < 1.0
Paul B Mahol
git at videolan.org
Thu Jan 19 13:35:45 EET 2023
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Thu Jan 19 12:13:38 2023 +0100| [31c15a0880d0f5064d9c84aae23275ee8baddd5c] | committer: Paul B Mahol
avfilter/vf_dblur: allow radius < 1.0
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=31c15a0880d0f5064d9c84aae23275ee8baddd5c
---
libavfilter/vf_dblur.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_dblur.c b/libavfilter/vf_dblur.c
index 131a3ae30a..14f8e2e37f 100644
--- a/libavfilter/vf_dblur.c
+++ b/libavfilter/vf_dblur.c
@@ -47,7 +47,7 @@ typedef struct DBlurContext {
static const AVOption dblur_options[] = {
{ "angle", "set angle", OFFSET(angle), AV_OPT_TYPE_FLOAT, {.dbl=45}, 0.0, 360, FLAGS },
- { "radius", "set radius", OFFSET(radius), AV_OPT_TYPE_FLOAT, {.dbl=5}, 1, 8192, FLAGS },
+ { "radius", "set radius", OFFSET(radius), AV_OPT_TYPE_FLOAT, {.dbl=5}, 0, 8192, FLAGS },
{ "planes", "set planes to filter", OFFSET(planes), AV_OPT_TYPE_INT, {.i64=0xF}, 0, 0xF, FLAGS },
{ NULL }
};
More information about the ffmpeg-cvslog
mailing list