diff options
author | jstebbins <[email protected]> | 2009-06-28 21:28:03 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-06-28 21:28:03 +0000 |
commit | 36d3b711916f38c606a4ed5db77608a07d5efbbe (patch) | |
tree | 090710ec8ad82f6b10af58962c88ab29e5b43e42 /libhb | |
parent | 09c0bef2eed5ce0079e8f8b6409bc8fb78e3c0fa (diff) |
dvdnav: add read error recovery
- a single read error was causing early encode termination.
try to continue reading at next sector on an error.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2639 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/dvdnav.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/libhb/dvdnav.c b/libhb/dvdnav.c index 8cc59951a..fa6aa8344 100644 --- a/libhb/dvdnav.c +++ b/libhb/dvdnav.c @@ -971,6 +971,7 @@ static int hb_dvdnav_read( hb_dvd_t * e, hb_buffer_t * b ) hb_dvdnav_t * d = &(e->dvdnav); int result, event, len; int chapter = 0; + int error_count = 0; while ( 1 ) { @@ -982,8 +983,21 @@ static int hb_dvdnav_read( hb_dvd_t * e, hb_buffer_t * b ) if ( result == DVDNAV_STATUS_ERR ) { hb_log("dvdnav: Read Error, %s", dvdnav_err_to_string(d->dvdnav)); - return 0; + if (dvdnav_sector_search(d->dvdnav, 1, SEEK_CUR) != DVDNAV_STATUS_OK) + { + hb_error( "dvd: dvdnav_sector_search failed - %s", + dvdnav_err_to_string(d->dvdnav) ); + return 0; + } + error_count++; + if (error_count > 10) + { + hb_log("dvdnav: Error, too many consecutive read errors"); + return 0; + } + continue; } + error_count = 0; switch ( event ) { case DVDNAV_BLOCK_OK: |