diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-04-03 16:48:33 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-05-24 14:21:20 +0200 |
commit | f7053dc41a29fdd2592f57ced97420ac917d3ca9 (patch) | |
tree | 48727d8102e69eee5c99bdee3d91ffc588a70722 /libavfilter/vsrc_buffer.c | |
parent | b2893ee2f8b204f3d636c25a05d1dc1dd81dfdba (diff) | |
download | ffmpeg-f7053dc41a29fdd2592f57ced97420ac917d3ca9.tar.gz |
vsrc_buffer: tweak error message in init()
Change:
Expected 7 arguments, but only %d found in '%s'\n
to:
Expected 7 arguments, but %d found in '%s'\n
as the user may provide more than 7 arguments, in that case the error
is not misleading.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavfilter/vsrc_buffer.c')
-rw-r--r-- | libavfilter/vsrc_buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vsrc_buffer.c b/libavfilter/vsrc_buffer.c index 6567279667..1f0233e3e3 100644 --- a/libavfilter/vsrc_buffer.c +++ b/libavfilter/vsrc_buffer.c @@ -73,7 +73,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) (n = sscanf(args, "%d:%d:%127[^:]:%d:%d:%d:%d", &c->w, &c->h, pix_fmt_str, &c->time_base.num, &c->time_base.den, &c->pixel_aspect.num, &c->pixel_aspect.den)) != 7) { - av_log(ctx, AV_LOG_ERROR, "Expected 7 arguments, but only %d found in '%s'\n", n, args); + av_log(ctx, AV_LOG_ERROR, "Expected 7 arguments, but %d found in '%s'\n", n, args); return AVERROR(EINVAL); } if ((c->pix_fmt = av_get_pix_fmt(pix_fmt_str)) == PIX_FMT_NONE) { |