From ca038d9a228f33bef7420abadce76e9e6f57fbb6 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 50b2de9724..5078e04dee 100644 --- a/player/audio.c +++ b/player/audio.c @@ -455,6 +455,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