diff options
author | eddyg <[email protected]> | 2007-08-29 23:01:41 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2007-08-29 23:01:41 +0000 |
commit | 06e0c4349c2f3ddf363cdc10263984a5e089eff9 (patch) | |
tree | f22f9596fb4bdf5a33d783ff590d5793642fb5c9 /libhb | |
parent | fe2046208ad29b1043c76b05dbac4076a95ad282 (diff) |
Improved debug messages for Cell start/stop with Cell number and block.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@897 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/dvd.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libhb/dvd.c b/libhb/dvd.c index 98d069057..8eab1b3ea 100644 --- a/libhb/dvd.c +++ b/libhb/dvd.c @@ -736,17 +736,19 @@ int hb_dvd_read( hb_dvd_t * d, hb_buffer_t * b ) if( dsi_pack.vobu_sri.next_vobu == SRI_END_OF_CELL ) { + hb_log( "DVD: End of Cell (%d) at block %d", d->cell_cur, + d->block ); d->cell_cur = d->cell_next; d->next_vobu = d->pgc->cell_playback[d->cell_cur].first_sector; FindNextCell( d ); d->cell_overlap = 1; - hb_log("DVD: End of Cell"); } // Revert the cell overlap, and check for a chapter break if( dsi_pack.vobu_sri.prev_vobu == SRI_END_OF_CELL ) { - hb_log("DVD: Beginning of Cell"); + hb_log( "DVD: Beginning of Cell (%d) at block %d", d->cell_cur, + d->block ); if( d->cell_overlap ) { b->new_chap = hb_dvd_is_break( d ); |