summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2008-10-09 15:11:27 +0000
committerjbrjake <[email protected]>2008-10-09 15:11:27 +0000
commitffe47d6ff6ac8b5241081d382302694bfe297fee (patch)
treef6c6f41cbc896ba9ddc7e9bafa99cfd638eb1529 /libhb
parent45307049935e7f3a991957d35f699bb00a288a5b (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')
-rw-r--r--libhb/encavcodec.c2
-rw-r--r--libhb/encx264.c2
-rw-r--r--libhb/encxvid.c4
-rw-r--r--libhb/fifo.c6
-rw-r--r--libhb/internal.h6
-rw-r--r--libhb/muxcommon.c8
-rw-r--r--libhb/muxmp4.c6
-rw-r--r--libhb/ports.c6
-rw-r--r--libhb/scan.c6
9 files changed, 23 insertions, 23 deletions
diff --git a/libhb/encavcodec.c b/libhb/encavcodec.c
index d102548b0..d3decd7d1 100644
--- a/libhb/encavcodec.c
+++ b/libhb/encavcodec.c
@@ -192,7 +192,7 @@ void encavcodecClose( hb_work_object_t * w )
if( pv->context )
{
- hb_log( "encavcodec: closing libavcodec" );
+ hb_deep_log( 2, "encavcodec: closing libavcodec" );
avcodec_flush_buffers( pv->context );
avcodec_close( pv->context );
}
diff --git a/libhb/encx264.c b/libhb/encx264.c
index 23afa4243..4a831ba38 100644
--- a/libhb/encx264.c
+++ b/libhb/encx264.c
@@ -283,7 +283,7 @@ int encx264Init( hb_work_object_t * w, hb_job_t * job )
}
}
- hb_log( "encx264: opening libx264 (pass %d)", job->pass );
+ hb_deep_log( 2, "encx264: opening libx264 (pass %d)", job->pass );
pv->x264 = x264_encoder_open( &param );
x264_encoder_headers( pv->x264, &nal, &nal_count );
diff --git a/libhb/encxvid.c b/libhb/encxvid.c
index b509baf6f..18961dc28 100644
--- a/libhb/encxvid.c
+++ b/libhb/encxvid.c
@@ -128,7 +128,7 @@ void encxvidClose( hb_work_object_t * w )
if( pv->xvid )
{
- hb_log( "encxvid: closing libxvidcore" );
+ hb_deep_log( 2, "encxvid: closing libxvidcore" );
xvid_encore( pv->xvid, XVID_ENC_DESTROY, NULL, NULL);
}
@@ -220,7 +220,7 @@ int encxvidWork( hb_work_object_t * w, hb_buffer_t ** buf_in,
}
}
- hb_log( "encxvid: VOL size is %d bytes", vop_start - vol_start );
+ hb_deep_log( 2, "encxvid: VOL size is %d bytes", vop_start - vol_start );
job->config.mpeg4.length = vop_start - vol_start;
memcpy( job->config.mpeg4.bytes, &buf->data[vol_start],
job->config.mpeg4.length );
diff --git a/libhb/fifo.c b/libhb/fifo.c
index ea2a29287..9441f7172 100644
--- a/libhb/fifo.c
+++ b/libhb/fifo.c
@@ -85,12 +85,12 @@ void hb_buffer_pool_free( void )
}
if ( count )
{
- hb_log("Freed %d buffers of size %d", count,
+ hb_deep_log( 2, "Freed %d buffers of size %d", count,
buffers.pool[i]->buffer_size);
}
}
- hb_log("Allocated %lld bytes of buffers on this pass and Freed %lld bytes, "
+ hb_deep_log( 2, "Allocated %lld bytes of buffers on this pass and Freed %lld bytes, "
"%lld bytes leaked", buffers.allocated, freed, buffers.allocated - freed);
buffers.allocated = 0;
hb_unlock(buffers.lock);
@@ -376,7 +376,7 @@ void hb_fifo_close( hb_fifo_t ** _f )
hb_fifo_t * f = *_f;
hb_buffer_t * b;
- hb_log( "fifo_close: trashing %d buffer(s)", hb_fifo_size( f ) );
+ hb_deep_log( 2, "fifo_close: trashing %d buffer(s)", hb_fifo_size( f ) );
while( ( b = hb_fifo_get( f ) ) )
{
hb_buffer_close( &b );
diff --git a/libhb/internal.h b/libhb/internal.h
index 5d7f654bb..a8f5edfd9 100644
--- a/libhb/internal.h
+++ b/libhb/internal.h
@@ -11,9 +11,9 @@ void hb_log( char * log, ... );
extern int global_verbosity_level; // Global variable for hb_deep_log
typedef enum hb_debug_level_s
{
- HB_SUPPORT_LOG = 1, // Logging helpful in tech support
- HB_MEMORY_LOG = 2, // logging about memory usage
- HB_GRANULAR_LOG = 3 // logging on sample-by-sample
+ HB_SUPPORT_LOG = 1, // helpful in tech support
+ HB_HOUSEKEEPING_LOG = 2, // stuff we hate scrolling through
+ HB_GRANULAR_LOG = 3 // sample-by-sample
} hb_debug_level_t;
void hb_deep_log( hb_debug_level_t level, char * log, ... );
void hb_error( char * fmt, ...);
diff --git a/libhb/muxcommon.c b/libhb/muxcommon.c
index dcbba1583..b09c5c58f 100644
--- a/libhb/muxcommon.c
+++ b/libhb/muxcommon.c
@@ -190,20 +190,20 @@ static void MuxerFunc( void * _mux )
if( !stat( job->file, &sb ) )
{
- hb_log( "mux: file size, %lld bytes", (uint64_t) sb.st_size );
+ hb_deep_log( 2, "mux: file size, %lld bytes", (uint64_t) sb.st_size );
bytes_total = 0;
frames_total = 0;
for( i = 0; i < hb_list_count( list ); i++ )
{
track = hb_list_item( list, i );
- hb_log( "mux: track %d, %lld bytes, %.2f kbps",
+ hb_deep_log( 2, "mux: track %d, %lld bytes, %.2f kbps",
i, track->bytes,
90000.0 * track->bytes / mux->pts / 125 );
if( !i && ( job->vquality < 0.0 || job->vquality > 1.0 ) )
{
/* Video */
- hb_log( "mux: video bitrate error, %+lld bytes",
+ hb_deep_log( 2, "mux: video bitrate error, %+lld bytes",
track->bytes - mux->pts * job->vbitrate *
125 / 90000 );
}
@@ -213,7 +213,7 @@ static void MuxerFunc( void * _mux )
if( bytes_total && frames_total )
{
- hb_log( "mux: overhead, %.2f bytes per frame",
+ hb_deep_log( 2, "mux: overhead, %.2f bytes per frame",
(float) ( sb.st_size - bytes_total ) /
frames_total );
}
diff --git a/libhb/muxmp4.c b/libhb/muxmp4.c
index fe6cc2793..febeb0194 100644
--- a/libhb/muxmp4.c
+++ b/libhb/muxmp4.c
@@ -168,7 +168,7 @@ static int MP4Init( hb_mux_object_t * m )
/* Use 64-bit MP4 file */
{
m->file = MP4Create( job->file, MP4_DETAILS_ERROR, MP4_CREATE_64BIT_DATA );
- hb_log("Using 64-bit MP4 formatting.");
+ hb_deep_log( 2, "muxmp4: using 64-bit MP4 formatting.");
}
else
/* Limit MP4s to less than 4 GB */
@@ -223,7 +223,7 @@ static int MP4Init( hb_mux_object_t * m )
if( job->h264_level == 30 || job->ipod_atom)
{
- hb_log("About to add iPod atom");
+ hb_deep_log( 2, "muxmp4: adding iPod atom");
AddIPodUUID(m->file, mux_data->track);
}
@@ -355,7 +355,7 @@ static int MP4Init( hb_mux_object_t * m )
them all at once. */
{
MP4SetTrackIntegerProperty(m->file, mux_data->track, "tkhd.flags", (TRACK_DISABLED | TRACK_IN_MOVIE));
- hb_log("Disabled extra audio track %i", mux_data->track-1);
+ hb_deep_log( 2, "muxp4: disabled extra audio track %i", mux_data->track-1);
}
}
diff --git a/libhb/ports.c b/libhb/ports.c
index 9d5fd08b4..10f84dc9e 100644
--- a/libhb/ports.c
+++ b/libhb/ports.c
@@ -285,7 +285,7 @@ static void hb_thread_func( void * _t )
t->function( t->arg );
/* Inform that the thread can be joined now */
- hb_log( "thread %x exited (\"%s\")", t->thread, t->name );
+ hb_deep_log( 2, "thread %x exited (\"%s\")", t->thread, t->name );
hb_lock( t->lock );
t->exited = 1;
hb_unlock( t->lock );
@@ -330,7 +330,7 @@ hb_thread_t * hb_thread_init( char * name, void (* function)(void *),
// SetThreadPriority( GetCurrentThread(), THREAD_PRIORITY_BELOW_NORMAL );
#endif
- hb_log( "thread %x started (\"%s\")", t->thread, t->name );
+ hb_deep_log( 2, "thread %x started (\"%s\")", t->thread, t->name );
return t;
}
@@ -355,7 +355,7 @@ void hb_thread_close( hb_thread_t ** _t )
// WaitForSingleObject( t->thread, INFINITE );
#endif
- hb_log( "thread %x joined (\"%s\")",
+ hb_deep_log( 2, "thread %x joined (\"%s\")",
t->thread, t->name );
hb_lock_close( &t->lock );
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++;
}