summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-08-27 11:34:53 +0200
committerwm4 <wm4@nowhere>2020-08-27 11:55:20 +0200
commit2a23105c1b58c4889802444dec09220a35fa1301 (patch)
treebb8981ca400976968881b059676475f8959ed64c
parent7fb972fd3997bfa389caa7c1eb899ea4b8444083 (diff)
downloadmpv-2a23105c1b58c4889802444dec09220a35fa1301.tar.bz2
mpv-2a23105c1b58c4889802444dec09220a35fa1301.tar.xz
player: fix swapped debug output
Such failure.
-rw-r--r--player/playloop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/player/playloop.c b/player/playloop.c
index f5c13abe7b..5b57cfa0bf 100644
--- a/player/playloop.c
+++ b/player/playloop.c
@@ -1150,8 +1150,8 @@ static void handle_playback_restart(struct MPContext *mpctx)
mp_wakeup_core(mpctx);
update_ab_loop_clip(mpctx);
MP_VERBOSE(mpctx, "playback restart complete @ %f, audio=%s, video=%s\n",
- mpctx->playback_pts, mp_status_str(mpctx->video_status),
- mp_status_str(mpctx->audio_status));
+ mpctx->playback_pts, mp_status_str(mpctx->audio_status),
+ mp_status_str(mpctx->video_status));
// Continuous seeks past EOF => treat as EOF instead of repeating seek.
if (mpctx->seek.type == MPSEEK_RELATIVE && mpctx->seek.amount > 0 &&