1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-26 00:42:57 +00:00

mplayer: rename a somewhat misnamed function

This commit is contained in:
wm4 2013-09-19 17:28:27 +02:00
parent 93feffad15
commit 6599677b98

View File

@ -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);