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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-07-06 02:45:36 +0400
committerStefano Sabatini <stefasab@gmail.com>2012-07-08 03:18:15 +0400
commitabb0a9982f98e67662c72c90b879caa3b53fd3a8 (patch)
tree07de71c7abd661f83f57861fa8b8fc33057e23de /libavfilter/avf_showwaves.c
parent2d42008757efb0328308179a2190ff04b38315fd (diff)
lavfi: do not pass opaque field to init functions
Fix signature mismatch warnings.
Diffstat (limited to 'libavfilter/avf_showwaves.c')
-rw-r--r--libavfilter/avf_showwaves.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avf_showwaves.c b/libavfilter/avf_showwaves.c
index f6fa45458e..f0ebbf3c84 100644
--- a/libavfilter/avf_showwaves.c
+++ b/libavfilter/avf_showwaves.c
@@ -57,7 +57,7 @@ static const AVOption showwaves_options[] = {
AVFILTER_DEFINE_CLASS(showwaves);
-static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
+static av_cold int init(AVFilterContext *ctx, const char *args)
{
ShowWavesContext *showwaves = ctx->priv;
int err;