From 155f7fac9dd8d756656a05376da9495e1348daad Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 4 Feb 2016 22:44:18 +0100 Subject: sub: implement "sub-seek 0" For bitmap subs, implement it properly. For libass, you need newest git master. Fixes #2791. --- player/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'player') diff --git a/player/command.c b/player/command.c index 52718d60ae..c95e7d1315 100644 --- a/player/command.c +++ b/player/command.c @@ -4588,7 +4588,7 @@ int run_command(struct MPContext *mpctx, struct mp_cmd *cmd, struct mpv_node *re // frame which actually shows the sub first (because video // frame PTS and sub PTS rarely match exactly). Add some // rounding for the mess of it. - a[0] += 0.01 * (a[1] > 0 ? 1 : -1); + a[0] += 0.01 * (a[1] >= 0 ? 1 : -1); mark_seek(mpctx); queue_seek(mpctx, MPSEEK_RELATIVE, a[0], MPSEEK_EXACT, false); set_osd_function(mpctx, (a[0] > 0) ? OSD_FFW : OSD_REW); -- cgit v1.2.3