diff options
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 ); |