From d606b6af178d5bb3b53628fd859416139597deff Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 14 Mar 2017 15:55:42 +0100 Subject: player: specifically log audio EOF too --- player/audio.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'player') 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); + } } } } -- cgit v1.2.3