libbluray | branch: master | hpi1 <[email protected]> | Fri Aug 23 09:51:18 2013 +0300| [3b89c9a8d5ba22c67375f73f3c94e7f5ff80a1c3] | committer: hpi1
TextST: fixed event position tracking > http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=3b89c9a8d5ba22c67375f73f3c94e7f5ff80a1c3 --- src/libbluray/bluray.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libbluray/bluray.c b/src/libbluray/bluray.c index b5db939..d451cb3 100644 --- a/src/libbluray/bluray.c +++ b/src/libbluray/bluray.c @@ -453,7 +453,7 @@ static int _init_pg_stream(BLURAY *bd) static void _update_textst_timer(BLURAY *bd) { if (bd->st_textst.clip) { - if (bd->s_pos >= bd->gc_wakeup_pos) { + if (bd->st0.clip_block_pos >= bd->gc_wakeup_pos) { GC_NAV_CMDS cmds = {-1, NULL, -1, 0, 0}; gc_run(bd->graphics_controller, GC_CTRL_PG_UPDATE, bd->gc_wakeup_time, &cmds); @@ -465,7 +465,7 @@ static void _update_textst_timer(BLURAY *bd) if (cmds.wakeup_time >= bd->st0.clip->in_time && cmds.wakeup_time < bd->st0.clip->out_time) { /* find event position in main path clip */ NAV_CLIP *clip = bd->st0.clip; - uint32_t spn = clpi_lookup_spn(clip->cl, cmds.wakeup_time, 1, + uint32_t spn = clpi_lookup_spn(clip->cl, cmds.wakeup_time, /*before=*/1, bd->title->pl->play_item[clip->ref].clip[clip->angle].stc_id); if (spn) { bd->gc_wakeup_pos = spn * 192; _______________________________________________ libbluray-devel mailing list [email protected] https://mailman.videolan.org/listinfo/libbluray-devel
