summaryrefslogtreecommitdiffstats
path: root/libhb/muxmp4.c
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/muxmp4.c
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/muxmp4.c')
-rw-r--r--libhb/muxmp4.c6
1 files changed, 3 insertions, 3 deletions
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);
}
}