summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-09-19 17:28:27 +0200
committerwm4 <wm4@nowhere>2013-09-19 17:28:27 +0200
commit6599677b98a00dac2a2650c1bb6a9cb77a2779f4 (patch)
tree17a6b1d2c1b571e3b4ff3c95d0ca3272530d7241
parent93feffad15fe68dc97278df9e6726135e31b6474 (diff)
downloadmpv-6599677b98a00dac2a2650c1bb6a9cb77a2779f4.tar.bz2
mpv-6599677b98a00dac2a2650c1bb6a9cb77a2779f4.tar.xz
mplayer: rename a somewhat misnamed function
-rw-r--r--mpvcore/mplayer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpvcore/mplayer.c b/mpvcore/mplayer.c
index d9715e447f..e4566c56ff 100644
--- a/mpvcore/mplayer.c
+++ b/mpvcore/mplayer.c
@@ -3436,7 +3436,7 @@ static void handle_cursor_autohide(struct MPContext *mpctx)
mpctx->mouse_cursor_visible = mouse_cursor_visible;
}
-static void handle_seek_coalesce(struct MPContext *mpctx)
+static void handle_input_and_seek_coalesce(struct MPContext *mpctx)
{
mp_cmd_t *cmd;
while ((cmd = mp_input_get_cmd(mpctx->input, 0, 1)) != NULL) {
@@ -3882,7 +3882,7 @@ static void run_playloop(struct MPContext *mpctx)
handle_pause_on_low_cache(mpctx);
- handle_seek_coalesce(mpctx);
+ handle_input_and_seek_coalesce(mpctx);
handle_backstep(mpctx);