From 9abf34411a37e6628b529da5686708b3f90a87db Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Thu, 18 Nov 2010 20:37:22 +0000 Subject: Log error message in case of invalid parsing. Originally committed as revision 25765 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/vf_aspect.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'libavfilter/vf_aspect.c') diff --git a/libavfilter/vf_aspect.c b/libavfilter/vf_aspect.c index cdb5390230..cccb117efa 100644 --- a/libavfilter/vf_aspect.c +++ b/libavfilter/vf_aspect.c @@ -37,8 +37,11 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) if (args) { if (sscanf(args, "%d:%d", &aspect->aspect.num, &aspect->aspect.den) < 2) { - if (sscanf(args, "%lf", &ratio) < 1) - return -1; + if (sscanf(args, "%lf", &ratio) < 1) { + av_log(ctx, AV_LOG_ERROR, + "Invalid string '%s' for aspect ratio.\n", args); + return AVERROR(EINVAL); + } aspect->aspect = av_d2q(ratio, 100); } else { gcd = av_gcd(FFABS(aspect->aspect.num), FFABS(aspect->aspect.den)); -- cgit v1.2.3