summaryrefslogtreecommitdiff
path: root/libavfilter/vf_drawbox.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-03-13 08:26:39 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-04-12 11:54:39 +0200
commitd69a4177b988cadaaadcd349f4b5dc1abe784a2d (patch)
treed1294b2add7a81ef6413756e2cc84b330ba8a891 /libavfilter/vf_drawbox.c
parent491d261adecec619a3c7b92249133fb3ef0f5044 (diff)
lavfi: remove now unused args parameter from AVFilter.init
Conflicts: libavfilter/avfilter.c libavfilter/vf_drawtext.c libavfilter/vf_lut.c libavfilter/vf_select.c libavfilter/vf_setpts.c libavfilter/vsrc_color.c libavfilter/vsrc_movie.c Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_drawbox.c')
-rw-r--r--libavfilter/vf_drawbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_drawbox.c b/libavfilter/vf_drawbox.c
index c575b2fa56..edb77cc79f 100644
--- a/libavfilter/vf_drawbox.c
+++ b/libavfilter/vf_drawbox.c
@@ -45,7 +45,7 @@ typedef struct {
int vsub, hsub; ///< chroma subsampling
} DrawBoxContext;
-static av_cold int init(AVFilterContext *ctx, const char *args)
+static av_cold int init(AVFilterContext *ctx)
{
DrawBoxContext *drawbox = ctx->priv;
uint8_t rgba_color[4];