Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-12 13:13:33 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-04-12 13:54:39 +0400
commitfd6228e65711e63a9e35e9a1087d7ce62040e6e3 (patch)
treea533de5b0c63597c733c7702f507e4df53f5e8e3 /libavfilter/asrc_anullsrc.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/asrc_anullsrc.c')
-rw-r--r--libavfilter/asrc_anullsrc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/asrc_anullsrc.c b/libavfilter/asrc_anullsrc.c
index fe0ec914cd..5a009c38b0 100644
--- a/libavfilter/asrc_anullsrc.c
+++ b/libavfilter/asrc_anullsrc.c
@@ -59,7 +59,7 @@ static const AVOption anullsrc_options[]= {
AVFILTER_DEFINE_CLASS(anullsrc);
-static int init(AVFilterContext *ctx, const char *args)
+static int init(AVFilterContext *ctx)
{
ANullContext *null = ctx->priv;
int ret;