wayland/shm: tone down warnings

Those warnings are printed far too often and actually aren't usefull at all.
This commit is contained in:
Alexander Preisinger 2014-01-08 21:03:57 +01:00
parent 4b10255008
commit 3e6fdc94d6
1 changed files with 2 additions and 2 deletions

View File

@ -539,7 +539,7 @@ static void draw_image(struct vo *vo, mp_image_t *mpi)
struct buffer *buf = buffer_get_back(p); struct buffer *buf = buffer_get_back(p);
if (!buf) { if (!buf) {
MP_WARN(p->wl, "can't draw, back buffer is busy\n"); MP_VERBOSE(p->wl, "can't draw, back buffer is busy\n");
return; return;
} }
@ -570,7 +570,7 @@ static void flip_page(struct vo *vo)
buffer_swap(p); buffer_swap(p);
if (!p->redraw_callback) { if (!p->redraw_callback) {
MP_INFO(p->wl, "restart frame callback\n"); MP_DBG(p->wl, "restart frame callback\n");
frame_handle_redraw(p, NULL, 0); frame_handle_redraw(p, NULL, 0);
} }
} }