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:
authorAnton Khirnov <anton@khirnov.net>2013-03-13 11:26:39 +0400
committerAnton Khirnov <anton@khirnov.net>2013-04-09 21:12:38 +0400
commitc43a7ecad997fc527af34b952334f3d030709a1b (patch)
treef8153b7bda13480fac1c3b8f866768b39bbafb63 /libavfilter/af_channelsplit.c
parent7b3eb745b98b04dd8a4970b9fd6c98998e858fc1 (diff)
lavfi: remove now unused args parameter from AVFilter.init
Diffstat (limited to 'libavfilter/af_channelsplit.c')
-rw-r--r--libavfilter/af_channelsplit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_channelsplit.c b/libavfilter/af_channelsplit.c
index 31e3b0eab7..fcdc34eca0 100644
--- a/libavfilter/af_channelsplit.c
+++ b/libavfilter/af_channelsplit.c
@@ -53,7 +53,7 @@ static const AVClass channelsplit_class = {
.version = LIBAVUTIL_VERSION_INT,
};
-static int init(AVFilterContext *ctx, const char *arg)
+static int init(AVFilterContext *ctx)
{
ChannelSplitContext *s = ctx->priv;
int nb_channels;