summaryrefslogtreecommitdiffstats
path: root/libhb/hb.c
diff options
context:
space:
mode:
authorjohnallen <[email protected]>2007-01-14 02:03:37 +0000
committerjohnallen <[email protected]>2007-01-14 02:03:37 +0000
commitf45dfeb2afb1b0bf46054959e8ea9494f3b7d14f (patch)
tree8f22bdd031592d856d1d45f906e9b50ef085dbe2 /libhb/hb.c
parent17a07e8bd6ff83eff4def00e2393086a88f0bba5 (diff)
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://svn.handbrake.fr/HandBrake/trunk@106 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb.c')
-rw-r--r--libhb/hb.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/hb.c b/libhb/hb.c
index bdd2353d9..98e014f0d 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 */