Change return type of opt_loglevel() from void to int.

Patch by Wolfram Gloger: wmglo (your at here) dent med uni (minus) muenchen de

Originally committed as revision 18678 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Wolfram Gloger 16 years ago committed by Benoit Fouet
parent 96c5bc46d2
commit 4eac2e8901
  1. 3
      ffmpeg.c

@ -2337,10 +2337,11 @@ static int opt_me_threshold(const char *opt, const char *arg)
return 0;
}
static void opt_loglevel(const char *opt, const char *arg)
static int opt_loglevel(const char *opt, const char *arg)
{
int level = parse_number_or_die(opt, arg, OPT_INT, INT_MIN, INT_MAX);
av_log_set_level(level);
return 0;
}
static int opt_verbose(const char *opt, const char *arg)

Loading…
Cancel
Save