[vlc-commits] commit: XCB/XVideo: include XVideo error code in grab error debug message ( Rémi Denis-Courmont )
git at videolan.org
git at videolan.org
Sat Jul 24 10:50:41 CEST 2010
vlc/vlc-1.1 | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Jul 24 11:49:37 2010 +0300| [e288b59ba6bae2a4254af0655c86a589242e65d9] | committer: Rémi Denis-Courmont
XCB/XVideo: include XVideo error code in grab error debug message
(cherry picked from commit 04b436b8b54cf0b08c510a0e28c0d77b0a880e3f)
> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=e288b59ba6bae2a4254af0655c86a589242e65d9
---
modules/video_output/xcb/xvideo.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/modules/video_output/xcb/xvideo.c b/modules/video_output/xcb/xvideo.c
index a228fa4..5b2b3e5 100644
--- a/modules/video_output/xcb/xvideo.c
+++ b/modules/video_output/xcb/xvideo.c
@@ -433,7 +433,8 @@ static int Open (vlc_object_t *obj)
p_sys->port = port;
goto grabbed_port;
}
- msg_Dbg (vd, "cannot grab port %"PRIu32, port);
+ msg_Dbg (vd, "cannot grab port %"PRIu32": Xv error %"PRIu8, port,
+ result);
}
continue; /* No usable port */
More information about the vlc-commits
mailing list