diff options
author | jstebbins <[email protected]> | 2010-11-05 21:56:32 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-11-05 21:56:32 +0000 |
commit | 87f6546defc189877fefc14caf6928773c06f5b2 (patch) | |
tree | 05aa03ee21dc2a9710b209df2c8051ea058d481a /libhb/dvdnav.c | |
parent | 4f9afabcd99a47c9914768363c213346c8f56ecb (diff) |
log the title duration before throwing it out when it's too short
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3649 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/dvdnav.c')
-rw-r--r-- | libhb/dvdnav.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libhb/dvdnav.c b/libhb/dvdnav.c index 5f30dedf0..9fb7ff973 100644 --- a/libhb/dvdnav.c +++ b/libhb/dvdnav.c @@ -415,6 +415,15 @@ static hb_title_t * hb_dvdnav_title_scan( hb_dvd_t * e, int t, uint64_t min_dura } } + /* Get duration */ + title->duration = longest; + title->hours = title->duration / 90000 / 3600; + title->minutes = ( ( title->duration / 90000 ) % 3600 ) / 60; + title->seconds = ( title->duration / 90000 ) % 60; + hb_log( "scan: duration is %02d:%02d:%02d (%"PRId64" ms)", + title->hours, title->minutes, title->seconds, + title->duration / 90 ); + /* ignore titles under 10 seconds because they're often stills or * clips with no audio & our preview code doesn't currently handle * either of these. */ @@ -461,15 +470,6 @@ static hb_title_t * hb_dvdnav_title_scan( hb_dvd_t * e, int t, uint64_t min_dura title->cell_end, title->block_start, title->block_end, title->block_count ); - /* Get duration */ - title->duration = longest; - title->hours = title->duration / 90000 / 3600; - title->minutes = ( ( title->duration / 90000 ) % 3600 ) / 60; - title->seconds = ( title->duration / 90000 ) % 60; - hb_log( "scan: duration is %02d:%02d:%02d (%"PRId64" ms)", - title->hours, title->minutes, title->seconds, - title->duration / 90 ); - /* Detect languages */ for( i = 0; i < ifo->vtsi_mat->nr_of_vts_audio_streams; i++ ) { |