diff options
author | jstebbins <[email protected]> | 2015-04-07 23:33:14 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-04-07 23:33:14 +0000 |
commit | 9215eafbc27930ce5f8de9644b34bb116861dfb3 (patch) | |
tree | 09065c1af286755cbb3140c5afb564b8a597d61a /libhb | |
parent | 12495656b1ca29464fe0f734b653bef06ce29a53 (diff) |
reader: fix subtitle start time not advancing
We must set a start time for subtitles or the vobsub decoder (and probably
other subtitle decoders) will assign duplicate timestamps. So when a
discontinuity occurs, make the closest guess that we can.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7072 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/reader.c | 39 |
1 files changed, 37 insertions, 2 deletions
diff --git a/libhb/reader.c b/libhb/reader.c index 66b5cc617..073145dda 100644 --- a/libhb/reader.c +++ b/libhb/reader.c @@ -46,6 +46,7 @@ struct hb_work_private_s stream_timing_t *stream_timing; int64_t scr_offset; + int sub_scr_set; hb_psdemux_t demux; int scr_changes; uint32_t sequence; @@ -229,6 +230,21 @@ static int is_audio( hb_work_private_t *r, int id ) return 0; } +static int is_subtitle( hb_work_private_t *r, int id ) +{ + int i; + hb_subtitle_t *sub; + + for( i = 0; ( sub = hb_list_item( r->title->list_subtitle, i ) ); ++i ) + { + if ( sub->id == id ) + { + return 1; + } + } + return 0; +} + // The MPEG STD (Standard Target Decoder) essentially requires that we keep // per-stream timing so that when there's a timing discontinuity we can // seemlessly join packets on either side of the discontinuity. This join @@ -604,6 +620,7 @@ void ReadLoop( void * _w ) ( st == r->stream_timing && !r->saw_audio ) ) { new_scr_offset( r, buf ); + r->sub_scr_set = 0; } else { @@ -612,8 +629,26 @@ void ReadLoop( void * _w ) // frame but video & subtitles don't. Clear // the timestamps so the decoder will generate // them from the frame durations. - buf->s.start = AV_NOPTS_VALUE; - buf->s.renderOffset = AV_NOPTS_VALUE; + if (is_subtitle(r, buf->s.id) && + buf->s.start != AV_NOPTS_VALUE) + { + if (!r->sub_scr_set) + { + // We can't generate timestamps in the + // subtitle decoder as we can for + // audio & video. So we need to make + // the closest guess that we can + // for the subtitles start time here. + int64_t last = r->stream_timing[0].last; + r->scr_offset = buf->s.start - last; + r->sub_scr_set = 1; + } + } + else + { + buf->s.start = AV_NOPTS_VALUE; + buf->s.renderOffset = AV_NOPTS_VALUE; + } } } } |