summaryrefslogtreecommitdiff
path: root/libavfilter/vf_tile.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-07-06 00:45:36 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-07-08 01:18:15 +0200
commitabb0a9982f98e67662c72c90b879caa3b53fd3a8 (patch)
tree07de71c7abd661f83f57861fa8b8fc33057e23de /libavfilter/vf_tile.c
parent2d42008757efb0328308179a2190ff04b38315fd (diff)
lavfi: do not pass opaque field to init functions
Fix signature mismatch warnings.
Diffstat (limited to 'libavfilter/vf_tile.c')
-rw-r--r--libavfilter/vf_tile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_tile.c b/libavfilter/vf_tile.c
index 83ee45dda0..8ed7333886 100644
--- a/libavfilter/vf_tile.c
+++ b/libavfilter/vf_tile.c
@@ -39,7 +39,7 @@ typedef struct {
#define REASONABLE_SIZE 1024
-static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
+static av_cold int init(AVFilterContext *ctx, const char *args)
{
TileContext *tile = ctx->priv;
int r;