diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-03-13 08:26:39 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-04-09 19:12:38 +0200 |
commit | c43a7ecad997fc527af34b952334f3d030709a1b (patch) | |
tree | f8153b7bda13480fac1c3b8f866768b39bbafb63 /libavfilter/vf_setpts.c | |
parent | 7b3eb745b98b04dd8a4970b9fd6c98998e858fc1 (diff) | |
download | ffmpeg-c43a7ecad997fc527af34b952334f3d030709a1b.tar.gz |
lavfi: remove now unused args parameter from AVFilter.init
Diffstat (limited to 'libavfilter/vf_setpts.c')
-rw-r--r-- | libavfilter/vf_setpts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_setpts.c b/libavfilter/vf_setpts.c index 98947a6816..5cf9093709 100644 --- a/libavfilter/vf_setpts.c +++ b/libavfilter/vf_setpts.c @@ -74,7 +74,7 @@ typedef struct { double var_values[VAR_VARS_NB]; } SetPTSContext; -static av_cold int init(AVFilterContext *ctx, const char *args) +static av_cold int init(AVFilterContext *ctx) { SetPTSContext *setpts = ctx->priv; int ret; |