Ignore mouse pos command when pausing.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25464 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
ulion 2007-12-19 16:17:26 +00:00
parent d7ed78143c
commit 50c286342e
1 changed files with 7 additions and 1 deletions

View File

@ -2113,7 +2113,13 @@ void pause_loop(void)
if (mpctx->audio_out && mpctx->sh_audio)
mpctx->audio_out->pause(); // pause audio, keep data if possible
while ( (cmd = mp_input_get_cmd(20, 1, 1)) == NULL) {
while ( (cmd = mp_input_get_cmd(20, 1, 1)) == NULL
|| cmd->id == MP_CMD_SET_MOUSE_POS) {
if (cmd) {
cmd = mp_input_get_cmd(0,1,0);
mp_cmd_free(cmd);
continue;
}
if (mpctx->sh_video && mpctx->video_out && vo_config_count)
mpctx->video_out->check_events();
#ifdef HAVE_NEW_GUI