ffmpeg | branch: master | Paul B Mahol <[email protected]> | 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 }
 };

_______________________________________________
ffmpeg-cvslog mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".

Reply via email to