diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-07-06 00:45:36 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-07-08 01:18:15 +0200 |
commit | abb0a9982f98e67662c72c90b879caa3b53fd3a8 (patch) | |
tree | 07de71c7abd661f83f57861fa8b8fc33057e23de /libavfilter/vf_tile.c | |
parent | 2d42008757efb0328308179a2190ff04b38315fd (diff) | |
download | ffmpeg-abb0a9982f98e67662c72c90b879caa3b53fd3a8.tar.gz |
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.c | 2 |
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; |