From b3707f4e2166244be7de5f85aa58c7ed7c6e9d14 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 17 Oct 2014 01:10:43 +0200 Subject: audio: don't go to sleep after audio reinit It possibly goes to sleep without actually starting to decode audio. Possibly fixes a problem with --no-osc --no-video reported on IRC. CC: @mpv-player/stable --- player/audio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/player/audio.c b/player/audio.c index fffbcf78a9..3b3a06bd69 100644 --- a/player/audio.c +++ b/player/audio.c @@ -382,6 +382,7 @@ void fill_audio_out_buffers(struct MPContext *mpctx, double endpts) return; } reinit_audio_chain(mpctx); + mpctx->sleeptime = 0; return; // try again next iteration } -- cgit v1.2.3