summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-10-06 20:30:17 +0200
committerwm4 <wm4@nowhere>2019-10-06 20:46:22 +0200
commit299916bde231028c4dde90439fe29a5493a144a1 (patch)
tree5a9b14e5233b0c4519efff016273abd7cc22a9c8
parente5a97ef27f8be577debb0cbd8acbcc8f743cc4d1 (diff)
downloadmpv-299916bde231028c4dde90439fe29a5493a144a1.tar.bz2
mpv-299916bde231028c4dde90439fe29a5493a144a1.tar.xz
audio: raise log level of playback reset on audio timestamp
Make it a warning. This is such an intrusive and shitty hack (but of course my fault) that it should not be hidden.
-rw-r--r--player/audio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/audio.c b/player/audio.c
index 161e3d7c69..e93f6b49a9 100644
--- a/player/audio.c
+++ b/player/audio.c
@@ -835,7 +835,7 @@ void fill_audio_out_buffers(struct MPContext *mpctx)
if (mpctx->vo_chain && ao_c->track && ao_c->track->dec &&
ao_c->track->dec->pts_reset)
{
- MP_VERBOSE(mpctx, "Reset playback due to audio timestamp reset.\n");
+ MP_WARN(mpctx, "Reset playback due to audio timestamp reset.\n");
reset_playback_state(mpctx);
mp_wakeup_core(mpctx);
return;