On Sun, 12 Jun 2011 13:54:22 +0200, Stefano Sabatini <[email protected]> wrote: > Fix ffplay -i FILE, which was recently broken. > --- > cmdutils.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/cmdutils.c b/cmdutils.c > index b9a5d1b..c73d5a1 100644 > --- a/cmdutils.c > +++ b/cmdutils.c > @@ -277,7 +277,7 @@ unknown_opt: > *po->u.int64_arg = parse_number_or_die(opt, arg, OPT_INT64, > INT64_MIN, INT64_MAX); > } else if (po->flags & OPT_FLOAT) { > *po->u.float_arg = parse_number_or_die(opt, arg, OPT_FLOAT, > -INFINITY, INFINITY); > - } else { > + } else if (po->u.func_arg) { > if (po->u.func_arg(opt, arg) < 0) { > fprintf(stderr, "%s: failed to set value '%s' for option > '%s'\n", argv[0], arg, opt); > exit(1); > -- > 1.7.2.5 >
Hah, you beat me to it. Patch ok. -- Anton Khirnov _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
