[FFmpeg-cvslog] r18678 - trunk/ffmpeg.c

benoit subversion
Fri Apr 24 13:56:24 CEST 2009


Author: benoit
Date: Fri Apr 24 13:56:23 2009
New Revision: 18678

Log:
Change return type of opt_loglevel() from void to int.
Patch by Wolfram Gloger: wmglo (your at here) dent med uni (minus) muenchen de

Modified:
   trunk/ffmpeg.c

Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c	Fri Apr 24 08:44:16 2009	(r18677)
+++ trunk/ffmpeg.c	Fri Apr 24 13:56:23 2009	(r18678)
@@ -2337,10 +2337,11 @@ static int opt_me_threshold(const char *
     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)



More information about the ffmpeg-cvslog mailing list