Browse Source

lavfi/fps: remove parse opt error message.

See cc650cf0 for more info.
tags/n1.1
Clément Bœsch 12 years ago
parent
commit
4b4f16cdc0
1 changed files with 1 additions and 4 deletions
  1. +1
    -4
      libavfilter/vf_fps.c

+ 1
- 4
libavfilter/vf_fps.c View File

@@ -80,11 +80,8 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
s->class = &fps_class;
av_opt_set_defaults(s);

if ((ret = av_opt_set_from_string(s, args, shorthand, "=", ":")) < 0) {
av_log(ctx, AV_LOG_ERROR, "Error parsing the options string %s.\n",
args);
if ((ret = av_opt_set_from_string(s, args, shorthand, "=", ":")) < 0)
return ret;
}

if ((ret = av_parse_video_rate(&s->framerate, s->fps)) < 0) {
av_log(ctx, AV_LOG_ERROR, "Error parsing framerate %s.\n", s->fps);


Loading…
Cancel
Save