summaryrefslogtreecommitdiff
path: root/libavfilter/vf_cropdetect.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-03-13 08:26:39 +0100
committerAnton Khirnov <anton@khirnov.net>2013-04-09 19:12:38 +0200
commitc43a7ecad997fc527af34b952334f3d030709a1b (patch)
treef8153b7bda13480fac1c3b8f866768b39bbafb63 /libavfilter/vf_cropdetect.c
parent7b3eb745b98b04dd8a4970b9fd6c98998e858fc1 (diff)
lavfi: remove now unused args parameter from AVFilter.init
Diffstat (limited to 'libavfilter/vf_cropdetect.c')
-rw-r--r--libavfilter/vf_cropdetect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_cropdetect.c b/libavfilter/vf_cropdetect.c
index 1486695a65..b5f70f097c 100644
--- a/libavfilter/vf_cropdetect.c
+++ b/libavfilter/vf_cropdetect.c
@@ -86,7 +86,7 @@ static int checkline(void *ctx, const unsigned char *src, int stride, int len, i
return total;
}
-static av_cold int init(AVFilterContext *ctx, const char *args)
+static av_cold int init(AVFilterContext *ctx)
{
CropDetectContext *cd = ctx->priv;