Commit 1ee20141 authored by Stefano Sabatini's avatar Stefano Sabatini Committed by Anton Khirnov

vf_unsharp: set default chroma size value to 5x5

The previous default value 0x0 was not good, since it is not even
valid.
Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent 998e8519
...@@ -1453,7 +1453,7 @@ It accepts the following parameters: ...@@ -1453,7 +1453,7 @@ It accepts the following parameters:
Negative values for the amount will blur the input video, while positive Negative values for the amount will blur the input video, while positive
values will sharpen. All parameters are optional and default to the values will sharpen. All parameters are optional and default to the
equivalent of the string '5:5:1.0:0:0:0.0'. equivalent of the string '5:5:1.0:5:5:0.0'.
@table @option @table @option
...@@ -1471,11 +1471,11 @@ and 5.0, default value is 1.0. ...@@ -1471,11 +1471,11 @@ and 5.0, default value is 1.0.
@item chroma_msize_x @item chroma_msize_x
Set the chroma matrix horizontal size. It can be an integer between 3 Set the chroma matrix horizontal size. It can be an integer between 3
and 13, default value is 0. and 13, default value is 5.
@item chroma_msize_y @item chroma_msize_y
Set the chroma matrix vertical size. It can be an integer between 3 Set the chroma matrix vertical size. It can be an integer between 3
and 13, default value is 0. and 13, default value is 5.
@item luma_amount @item luma_amount
Set the chroma effect strength. It can be a float number between -2.0 Set the chroma effect strength. It can be a float number between -2.0
......
...@@ -132,8 +132,8 @@ static void set_filter_param(FilterParam *fp, int msize_x, int msize_y, double a ...@@ -132,8 +132,8 @@ static void set_filter_param(FilterParam *fp, int msize_x, int msize_y, double a
static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
{ {
UnsharpContext *unsharp = ctx->priv; UnsharpContext *unsharp = ctx->priv;
int lmsize_x = 5, cmsize_x = 0; int lmsize_x = 5, cmsize_x = 5;
int lmsize_y = 5, cmsize_y = 0; int lmsize_y = 5, cmsize_y = 5;
double lamount = 1.0f, camount = 0.0f; double lamount = 1.0f, camount = 0.0f;
if (args) if (args)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment