summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorAlexander Preisinger <alexander.preisinger@gmail.com>2014-01-08 21:03:57 +0100
committerAlexander Preisinger <alexander.preisinger@gmail.com>2014-01-08 21:03:57 +0100
commit3e6fdc94d6b9f5ea4390f821c184b5e7a5e0d508 (patch)
treec1dfe0971cb02ac1d6966eda577799b495b06908 /video
parent4b102550089294a6fb4cdf3b4e133f21f16d3922 (diff)
downloadmpv-3e6fdc94d6b9f5ea4390f821c184b5e7a5e0d508.tar.bz2
mpv-3e6fdc94d6b9f5ea4390f821c184b5e7a5e0d508.tar.xz
wayland/shm: tone down warnings
Those warnings are printed far too often and actually aren't usefull at all.
Diffstat (limited to 'video')
-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);
}
}