summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2018-08-06 09:25:19 -0700
committerJohn Stebbins <[email protected]>2018-08-06 09:25:19 -0700
commitfed758cffaa36de9c37896bd9fa9137799b94b3c (patch)
tree9aca33f6ea659699a48387cc849c300f4d8bea2b /libhb
parentbf17783da7e55a7ead1fc6e6f9427b445581bb78 (diff)
bd: handle "broken units" better
libbluray detects and skips broken units (6114 byte chunks). But it returns 0 in such cases. We were interpreting this as the end of the title and signalling a successful encode. Instead, look for BD_EVENT_END_OF_TITLE for end of title detection. And perform read retries when bd_read returns 0.
Diffstat (limited to 'libhb')
-rw-r--r--libhb/bd.c66
1 files changed, 46 insertions, 20 deletions
diff --git a/libhb/bd.c b/libhb/bd.c
index 6c6c7b3e5..e89726b65 100644
--- a/libhb/bd.c
+++ b/libhb/bd.c
@@ -746,6 +746,7 @@ hb_buffer_t * hb_bd_read( hb_bd_t * d )
{
int result;
int error_count = 0;
+ int retry_count = 0;
uint8_t buf[192];
BD_EVENT event;
uint64_t pos;
@@ -756,26 +757,6 @@ hb_buffer_t * hb_bd_read( hb_bd_t * d )
{
discontinuity = 0;
result = next_packet( d->bd, buf );
- if ( result < 0 )
- {
- hb_error("bd: Read Error");
- pos = bd_tell( d->bd );
- bd_seek( d->bd, pos + 192 );
- error_count++;
- if (error_count > 10)
- {
- hb_error("bd: Error, too many consecutive read errors");
- hb_set_work_error(d->h, HB_ERROR_READ);
- return NULL;
- }
- continue;
- }
- else if ( result == 0 )
- {
- return NULL;
- }
-
- error_count = 0;
while ( bd_get_event( d->bd, &event ) )
{
switch ( event.event )
@@ -798,10 +779,55 @@ hb_buffer_t * hb_bd_read( hb_bd_t * d )
bd_read_skip_still( d->bd );
break;
+ case BD_EVENT_END_OF_TITLE:
+ hb_log("bd: End of title");
+ if (result <= 0)
+ {
+ return NULL;
+ }
+ break;
+
default:
break;
}
}
+
+ if ( result < 0 )
+ {
+ hb_error("bd: Read Error");
+ pos = bd_tell( d->bd );
+ bd_seek( d->bd, pos + 192 );
+ error_count++;
+ if (error_count > 10)
+ {
+ hb_error("bd: Error, too many consecutive read errors");
+ hb_set_work_error(d->h, HB_ERROR_READ);
+ return NULL;
+ }
+ continue;
+ }
+ else if ( result == 0 )
+ {
+ // libbluray returns 0 when it encounters and skips a bad unit.
+ // So retry a few times to be certain there is no more data
+ // to be read.
+ retry_count++;
+ if (retry_count > 1000)
+ {
+ // A unit is 6144 bytes (32 TS packets). Give up after we've
+ // seen > 6MB of invalid data.
+ return NULL;
+ }
+ continue;
+ }
+
+ if (retry_count > 0)
+ {
+ hb_error("bd: Read Error, skipping bad data.");
+ retry_count = 0;
+ }
+
+ error_count = 0;
// buf+4 to skip the BD timestamp at start of packet
if (d->chapter != d->next_chap)
{