summaryrefslogtreecommitdiff
path: root/libavfilter/vf_drawbox.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-03-13 08:26:39 +0100
committerAnton Khirnov <anton@khirnov.net>2013-04-09 19:12:38 +0200
commitc43a7ecad997fc527af34b952334f3d030709a1b (patch)
treef8153b7bda13480fac1c3b8f866768b39bbafb63 /libavfilter/vf_drawbox.c
parent7b3eb745b98b04dd8a4970b9fd6c98998e858fc1 (diff)
lavfi: remove now unused args parameter from AVFilter.init
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 e5311246c2..4673a7691d 100644
--- a/libavfilter/vf_drawbox.c
+++ b/libavfilter/vf_drawbox.c
@@ -44,7 +44,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];