From 10d9d2a1fa4eb1579f0dd3943d6fc09bbea06302 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 10 Apr 2013 17:14:20 +0200 Subject: mplayer: don't print bogus status when caching When streaming from http, this could print a status line indicating paused playback instead of "buffering" sometimes. --- core/mplayer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/mplayer.c') diff --git a/core/mplayer.c b/core/mplayer.c index 6dffc4c010..216103e95f 100644 --- a/core/mplayer.c +++ b/core/mplayer.c @@ -3133,8 +3133,8 @@ static void handle_pause_on_low_cache(struct MPContext *mpctx) unpause_player(mpctx); } else if (!mpctx->paused) { if (cache >= 0 && cache <= opts->stream_cache_pause && !idle) { - pause_player(mpctx); mpctx->paused_for_cache = true; + pause_player(mpctx); } } } -- cgit v1.2.3