summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
Diffstat (limited to 'player')
-rw-r--r--player/playloop.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/player/playloop.c b/player/playloop.c
index cabdb4e441..bcec02e21a 100644
--- a/player/playloop.c
+++ b/player/playloop.c
@@ -204,7 +204,7 @@ static int mp_seek(MPContext *mpctx, struct seek_params seek,
}
}
int direction = 0;
- if (seek.type == MPSEEK_RELATIVE) {
+ if (seek.type == MPSEEK_RELATIVE && (!mpctx->demuxer->rel_seeks || hr_seek)) {
seek.type = MPSEEK_ABSOLUTE;
direction = seek.amount > 0 ? 1 : -1;
seek.amount += get_current_time(mpctx);
@@ -233,10 +233,13 @@ static int mp_seek(MPContext *mpctx, struct seek_params seek,
demuxer_style |= SEEK_ABSOLUTE;
break;
}
- if (hr_seek || direction < 0)
+ if (hr_seek || direction < 0) {
demuxer_style |= SEEK_BACKWARD;
- else if (direction > 0)
+ } else if (direction > 0) {
demuxer_style |= SEEK_FORWARD;
+ }
+ if (hr_seek)
+ demuxer_style |= SEEK_HR;
if (hr_seek || opts->mkv_subtitle_preroll)
demuxer_style |= SEEK_SUBPREROLL;