diff options
author | jbrjake <jb.rubin@gmail.com> | 2008-10-09 15:11:27 +0000 |
---|---|---|
committer | jbrjake <jb.rubin@gmail.com> | 2008-10-09 15:11:27 +0000 |
commit | ffe47d6ff6ac8b5241081d382302694bfe297fee (patch) | |
tree | f6c6f41cbc896ba9ddc7e9bafa99cfd638eb1529 /libhb/scan.c | |
parent | 45307049935e7f3a991957d35f699bb00a288a5b (diff) |
After discussion with eddyg, extending verbose logging level 2 from just memory-related logging to general-purpose housekeeping--stuff that isn't necessary when scrolling through activity logs users submit with bug reports and support queries. This includes things like thread start/exit messages and preview frames.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1820 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/scan.c')
-rw-r--r-- | libhb/scan.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libhb/scan.c b/libhb/scan.c index eea1c3f0b..36a90cd4d 100644 --- a/libhb/scan.c +++ b/libhb/scan.c @@ -431,7 +431,7 @@ static int DecodePreviews( hb_scan_t * data, hb_title_t * title ) } } - hb_log( "scan: preview %d", i + 1 ); + hb_deep_log( 2, "scan: preview %d", i + 1 ); int vcodec = title->video_codec? title->video_codec : WORK_DECMPEG2; hb_work_object_t *vid_decoder = hb_get_work( vcodec ); @@ -540,7 +540,7 @@ static int DecodePreviews( hb_scan_t * data, hb_title_t * title ) */ if( progressive_count == 6 ) { - hb_log("Title's mostly NTSC Film, setting fps to 23.976"); + hb_deep_log( 2, "Title's mostly NTSC Film, setting fps to 23.976"); } title->rate_base = 1126125; } @@ -563,7 +563,7 @@ static int DecodePreviews( hb_scan_t * data, hb_title_t * title ) /* Check preview for interlacing artifacts */ if( hb_detect_comb( vid_buf, title->width, title->height, 10, 30, 9, 10, 30, 9 ) ) { - hb_log("Interlacing detected in preview frame %i", i+1); + hb_deep_log( 2, "Interlacing detected in preview frame %i", i+1); interlaced_preview_count++; } |