From fd6228e65711e63a9e35e9a1087d7ce62040e6e3 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 12 Apr 2013 11:13:33 +0200 Subject: 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 --- libavfilter/f_select.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libavfilter/f_select.c') diff --git a/libavfilter/f_select.c b/libavfilter/f_select.c index 786b5e1686..acf713cb0e 100644 --- a/libavfilter/f_select.c +++ b/libavfilter/f_select.c @@ -139,7 +139,7 @@ typedef struct { } SelectContext; -static av_cold int init(AVFilterContext *ctx, const char *args, const AVClass *class) +static av_cold int init(AVFilterContext *ctx) { SelectContext *select = ctx->priv; int ret; @@ -399,12 +399,12 @@ static const AVOption aselect_options[] = { }; AVFILTER_DEFINE_CLASS(aselect); -static av_cold int aselect_init(AVFilterContext *ctx, const char *args) +static av_cold int aselect_init(AVFilterContext *ctx) { SelectContext *select = ctx->priv; int ret; - if ((ret = init(ctx, args, &aselect_class)) < 0) + if ((ret = init(ctx)) < 0) return ret; if (select->do_scene_detect) { @@ -458,12 +458,12 @@ static const AVOption select_options[] = { AVFILTER_DEFINE_CLASS(select); -static av_cold int select_init(AVFilterContext *ctx, const char *args) +static av_cold int select_init(AVFilterContext *ctx) { SelectContext *select = ctx->priv; int ret; - if ((ret = init(ctx, args, &select_class)) < 0) + if ((ret = init(ctx)) < 0) return ret; if (select->do_scene_detect && !CONFIG_AVCODEC) { -- cgit v1.2.3