forked from FFmpeg/FFmpeg
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
This commit is contained in:
parent
96c5bc46d2
commit
4eac2e8901
1 changed files with 2 additions and 1 deletions
3
ffmpeg.c
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…
Add table
Reference in a new issue