summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Preisinger <alexander.preisinger@gmail.com>2014-01-08 21:03:57 +0100
committerwm4 <wm4@nowhere>2014-01-15 20:51:19 +0100
commitebc3d74b040790e5154ffb8f45a456e6e79679aa (patch)
tree58737a5c9250304203485f3072b423df0c63124c
parenta63fab8921886a4e4dcf5df2ef21aa408fd79e10 (diff)
downloadmpv-ebc3d74b040790e5154ffb8f45a456e6e79679aa.tar.bz2
mpv-ebc3d74b040790e5154ffb8f45a456e6e79679aa.tar.xz
wayland/shm: tone down warnings
Those warnings are printed far too often and actually aren't usefull at all.
-rw-r--r--video/out/vo_wayland.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/vo_wayland.c b/video/out/vo_wayland.c
index c1094bc6a4..48953ef1a6 100644
--- a/video/out/vo_wayland.c
+++ b/video/out/vo_wayland.c
@@ -539,7 +539,7 @@ static void draw_image(struct vo *vo, mp_image_t *mpi)
struct buffer *buf = buffer_get_back(p);
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;
}
@@ -570,7 +570,7 @@ static void flip_page(struct vo *vo)
buffer_swap(p);
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);
}
}