X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=libhb%2Fdecmetadata.c;h=e377f8c25c95410ea0c46859f56e9d27aaa8b9dc;hb=033e32de9c380f54c7d1362a3979da205ebc3a29;hp=df0c5b3ef7bc6c182d9be62859e6c83d224ac835;hpb=f664919814bbfc57f3cdc7698870f0182dc6b388;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/libhb/decmetadata.c b/libhb/decmetadata.c index df0c5b3e..e377f8c2 100644 --- a/libhb/decmetadata.c +++ b/libhb/decmetadata.c @@ -84,7 +84,7 @@ static void decmp4metadata( hb_title_t *title ) chapter->minutes = ( ( chapter->duration / 90000 ) % 3600 ) / 60; chapter->seconds = ( chapter->duration / 90000 ) % 60; strcpy( chapter->title, chapter_list[i-1].title ); - hb_deep_log( 2, "Added chapter %i, name='%s', dur=%lld, (%02i:%02i:%02i)", chapter->index, chapter->title, + hb_deep_log( 2, "Added chapter %i, name='%s', dur=%"PRId64", (%02i:%02i:%02i)", chapter->index, chapter->title, chapter->duration, chapter->hours, chapter->minutes, chapter->seconds); hb_list_add( title->list_chapter, chapter );