summaryrefslogtreecommitdiff
path: root/libavfilter/vf_geq.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-12 11:13:33 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-04-12 11:54:39 +0200
commitfd6228e65711e63a9e35e9a1087d7ce62040e6e3 (patch)
treea533de5b0c63597c733c7702f507e4df53f5e8e3 /libavfilter/vf_geq.c
parentd69a4177b988cadaaadcd349f4b5dc1abe784a2d (diff)
lavfi: remove now unused args parameter from AVFilter.init and init_opaque
This is mostly automated global search and replace The deprecated aconvert filter is disabled, if it still has users it should be updated Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_geq.c')
-rw-r--r--libavfilter/vf_geq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_geq.c b/libavfilter/vf_geq.c
index 64e8e5212f..4c5ed7a57b 100644
--- a/libavfilter/vf_geq.c
+++ b/libavfilter/vf_geq.c
@@ -88,7 +88,7 @@ static double alpha(void *priv, double x, double y) { return getpix(priv, x, y,
static const char *const var_names[] = { "X", "Y", "W", "H", "N", "SW", "SH", "T", NULL };
enum { VAR_X, VAR_Y, VAR_W, VAR_H, VAR_N, VAR_SW, VAR_SH, VAR_T, VAR_VARS_NB };
-static av_cold int geq_init(AVFilterContext *ctx, const char *args)
+static av_cold int geq_init(AVFilterContext *ctx)
{
GEQContext *geq = ctx->priv;
int plane, ret = 0;