summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--player/loadfile.c5
-rw-r--r--player/playloop.c1
2 files changed, 2 insertions, 4 deletions
diff --git a/player/loadfile.c b/player/loadfile.c
index c4e013793d..a16df30eed 100644
--- a/player/loadfile.c
+++ b/player/loadfile.c
@@ -1285,15 +1285,14 @@ static void play_current_file(struct MPContext *mpctx)
mpctx->speed_factor_a = mpctx->speed_factor_v = 1.0;
mpctx->display_sync_error = 0.0;
mpctx->display_sync_active = false;
+ // let get_current_time() show 0 as start time (before playback_pts is set)
+ mpctx->last_seek_pts = 0.0;
mpctx->seek = (struct seek_params){ 0 };
mpctx->filter_root = mp_filter_create_root(mpctx->global);
mp_filter_root_set_wakeup_cb(mpctx->filter_root, mp_wakeup_core_cb, mpctx);
reset_playback_state(mpctx);
- // let get_current_time() show 0 as start time (before playback_pts is set)
- mpctx->last_seek_pts = 0.0;
-
mpctx->playing = mpctx->playlist->current;
if (!mpctx->playing || !mpctx->playing->filename)
goto terminate_playback;
diff --git a/player/playloop.c b/player/playloop.c
index a784bfd554..f51ddb5e5c 100644
--- a/player/playloop.c
+++ b/player/playloop.c
@@ -228,7 +228,6 @@ void reset_playback_state(struct MPContext *mpctx)
mpctx->hrseek_backstep = false;
mpctx->current_seek = (struct seek_params){0};
mpctx->playback_pts = MP_NOPTS_VALUE;
- mpctx->last_seek_pts = MP_NOPTS_VALUE;
mpctx->step_frames = 0;
mpctx->ab_loop_clip = true;
mpctx->restart_complete = false;