From: johnallen Date: Sun, 14 Jan 2007 02:03:37 +0000 (+0000) Subject: added call to av_log_set_level in hb_init_real based on value of verbose param. X-Git-Url: http://git.osdn.jp/view?a=commitdiff_plain;h=2ee3742881ab2711028daee5c4ae20eef5dc5e3a;p=handbrake-jp%2Fhandbrake-jp-git.git added call to av_log_set_level in hb_init_real based on value of verbose param. makes ffmpeg debbuging level the same as ours. will be useful while finding the memory leak issue. git-svn-id: svn://localhost/HandBrake/trunk@106 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- diff --git a/libhb/hb.c b/libhb/hb.c index bdd2353d..98e014f0 100644 --- a/libhb/hb.c +++ b/libhb/hb.c @@ -71,6 +71,7 @@ hb_handle_t * hb_init_real( int verbose, int update_check ) if( verbose > HB_DEBUG_NONE ) { putenv( "HB_DEBUG=1" ); + av_log_set_level(AV_LOG_DEBUG); } /* Check for an update on the website if asked to */