From a87298e5015f083b6ea294f578dc0d54e1f0f88f Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 15 Sep 2013 02:13:54 +0200 Subject: mplayer: don't run heartbeat command while paused This is commonly used to disable the screensaver with broken/non- standard X screensavers. During pause, the screensaver should not be disabled, so not calling this command while paused seems sensible. See github issue #236. --- mpvcore/mplayer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mpvcore/mplayer.c') diff --git a/mpvcore/mplayer.c b/mpvcore/mplayer.c index c8991fb64e..06017c7d32 100644 --- a/mpvcore/mplayer.c +++ b/mpvcore/mplayer.c @@ -3392,7 +3392,7 @@ static void handle_pause_on_low_cache(struct MPContext *mpctx) static void handle_heartbeat_cmd(struct MPContext *mpctx) { struct MPOpts *opts = mpctx->opts; - if (opts->heartbeat_cmd) { + if (opts->heartbeat_cmd && !mpctx->paused) { double now = mp_time_sec(); if (now - mpctx->last_heartbeat > opts->heartbeat_interval) { mpctx->last_heartbeat = now; -- cgit v1.2.3