summaryrefslogtreecommitdiff
path: root/libavfilter/vf_unsharp.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-03-13 08:26:39 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-04-12 11:54:39 +0200
commitd69a4177b988cadaaadcd349f4b5dc1abe784a2d (patch)
treed1294b2add7a81ef6413756e2cc84b330ba8a891 /libavfilter/vf_unsharp.c
parent491d261adecec619a3c7b92249133fb3ef0f5044 (diff)
lavfi: remove now unused args parameter from AVFilter.init
Conflicts: libavfilter/avfilter.c libavfilter/vf_drawtext.c libavfilter/vf_lut.c libavfilter/vf_select.c libavfilter/vf_setpts.c libavfilter/vsrc_color.c libavfilter/vsrc_movie.c Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_unsharp.c')
-rw-r--r--libavfilter/vf_unsharp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_unsharp.c b/libavfilter/vf_unsharp.c
index ba025c9550..038ba4bafe 100644
--- a/libavfilter/vf_unsharp.c
+++ b/libavfilter/vf_unsharp.c
@@ -143,7 +143,7 @@ static void set_filter_param(FilterParam *fp, int msize_x, int msize_y, float am
fp->halfscale = 1 << (fp->scalebits - 1);
}
-static av_cold int init(AVFilterContext *ctx, const char *args)
+static av_cold int init(AVFilterContext *ctx)
{
UnsharpContext *unsharp = ctx->priv;