input: don't print warning when aboting playback via commands

I don't really see a reason for this.
This commit is contained in:
wm4 2014-06-06 17:17:22 +02:00
parent aafc03aab3
commit a854583b57
1 changed files with 1 additions and 6 deletions

View File

@ -1627,12 +1627,7 @@ void mp_input_wakeup_nolock(struct input_ctx *ictx)
static bool test_abort(struct input_ctx *ictx)
{
if (async_quit_request || queue_has_abort_cmds(&ictx->cmd_queue)) {
MP_WARN(ictx, "Received command to move to another file. "
"Aborting current processing.\n");
return true;
}
return false;
return async_quit_request || queue_has_abort_cmds(&ictx->cmd_queue);
}
void mp_input_set_main_thread(struct input_ctx *ictx)