diff options
author | jstebbins <[email protected]> | 2010-11-22 21:52:05 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-11-22 21:52:05 +0000 |
commit | bdb3c747159ff77aa36feaeb9365c58c23d512b6 (patch) | |
tree | bc77628a40f6ea9c55b59e2939e875cb346a9bab /libhb/reader.c | |
parent | ffa6c17f19cf2e88d1de9858c10cf9925272001b (diff) |
fix sync of ssa subtitles when using point-to-point encoding
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3685 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/reader.c')
-rw-r--r-- | libhb/reader.c | 37 |
1 files changed, 10 insertions, 27 deletions
diff --git a/libhb/reader.c b/libhb/reader.c index f6c334172..783535492 100644 --- a/libhb/reader.c +++ b/libhb/reader.c @@ -260,6 +260,8 @@ static void ReaderFunc( void * _r ) else if ( r->job->pts_to_start ) { hb_bd_seek_pts( r->bd, r->job->pts_to_start ); + r->job->pts_to_start = 0; + r->start_found = 1; } else { @@ -410,10 +412,14 @@ static void ReaderFunc( void * _r ) // to skip from this seek point to the timestamp we // want to start at. if ( ps->start > 0 && ps->start < r->job->pts_to_start ) + { r->job->pts_to_start -= ps->start; + } else if ( ps->start >= r->job->pts_to_start ) + { r->job->pts_to_start = 0; - r->start_found = 1; + r->start_found = 1; + } } } @@ -495,18 +501,8 @@ static void ReaderFunc( void * _r ) // frame but video & subtitles don't. Clear // the timestamps so the decoder will generate // them from the frame durations. - if ( st != r->stream_timing ) - { - // not a video stream so it's probably - // subtitles - the best we can do is to - // line it up with the last video packet. - buf->start = r->stream_timing->last; - } - else - { - buf->start = -1; - buf->renderOffset = -1; - } + buf->start = -1; + buf->renderOffset = -1; } } } @@ -517,23 +513,10 @@ static void ReaderFunc( void * _r ) UpdateState( r, start ); if ( !r->start_found && - r->job->pts_to_start && - buf->renderOffset != -1 && start >= r->job->pts_to_start ) { // pts_to_start point found - // force a new scr offset computation - stream_timing_t *st = find_st( r, buf ); - if ( st && - (st->is_audio || - ( st == r->stream_timing && !r->saw_audio ) ) ) - { - // Re-zero our timestamps - st->last = -st->average; - new_scr_offset( r, buf ); - r->start_found = 1; - r->job->pts_to_start = 0; - } + r->start_found = 1; } // This log is handy when you need to debug timing problems //hb_log("id %x scr_offset %ld start %ld --> %ld", |