diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-08-09 00:49:27 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-08-09 08:11:00 +0200 |
commit | cc650cf029d8a2aa3c245b014363db673fd2d722 (patch) | |
tree | 19cd52f75fb09d8c11b52e5b83bf66f73acdbfd0 /libavfilter/vsrc_mptestsrc.c | |
parent | 5d8e54fe1ded58cd2d76c112041f5202ce762aef (diff) | |
download | ffmpeg-cc650cf029d8a2aa3c245b014363db673fd2d722.tar.gz |
Remove "Error parsing options string [...]" messages.
This reduces from 3 to 2 messages for the same syntax error in ffprobe,
and from 4 to 3 in filters.
Diffstat (limited to 'libavfilter/vsrc_mptestsrc.c')
-rw-r--r-- | libavfilter/vsrc_mptestsrc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavfilter/vsrc_mptestsrc.c b/libavfilter/vsrc_mptestsrc.c index 6a4df1efa4..4e312c5b8d 100644 --- a/libavfilter/vsrc_mptestsrc.c +++ b/libavfilter/vsrc_mptestsrc.c @@ -266,10 +266,8 @@ static av_cold int init(AVFilterContext *ctx, const char *args) test->class = &mptestsrc_class; av_opt_set_defaults(test); - if ((ret = (av_set_options_string(test, args, "=", ":"))) < 0) { - av_log(ctx, AV_LOG_ERROR, "Error parsing options string: '%s'\n", args); + if ((ret = (av_set_options_string(test, args, "=", ":"))) < 0) return ret; - } if ((ret = av_parse_video_rate(&frame_rate_q, test->rate)) < 0) { av_log(ctx, AV_LOG_ERROR, "Invalid frame rate: '%s'\n", test->rate); |