summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
Diffstat (limited to 'player')
-rw-r--r--player/audio.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/player/audio.c b/player/audio.c
index e1766143b9..d15f4e9869 100644
--- a/player/audio.c
+++ b/player/audio.c
@@ -1105,8 +1105,10 @@ void fill_audio_out_buffers(struct MPContext *mpctx)
// we trigger EOF immediately, and let it play asynchronously.
if (ao_eof_reached(mpctx->ao) || opts->gapless_audio) {
mpctx->audio_status = STATUS_EOF;
- if (!was_eof)
+ if (!was_eof) {
+ MP_VERBOSE(mpctx, "audio EOF reached\n");
mp_wakeup_core(mpctx);
+ }
}
}
}