summaryrefslogtreecommitdiffstats
path: root/libhb/muxcommon.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/muxcommon.c')
-rw-r--r--libhb/muxcommon.c8
1 files changed, 4 insertions, 4 deletions
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 );
}