summaryrefslogtreecommitdiffstats
path: root/video/out/vo_xv.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-20 23:04:29 +0200
committerwm4 <wm4@nowhere>2014-06-21 20:41:07 +0200
commitb443f8471fffdc16fe927acbf8e40f2061e412dc (patch)
treea9b8e96b48da8f0e1c67910630a7281453274141 /video/out/vo_xv.c
parentf5e175647515b5e34c265dadad524e83c695cc93 (diff)
downloadmpv-b443f8471fffdc16fe927acbf8e40f2061e412dc.tar.bz2
mpv-b443f8471fffdc16fe927acbf8e40f2061e412dc.tar.xz
vo_xv: de-ancient some help messages
One message pointed to a removed file, so just get rid of the messages. They were helpful in the earlier 2000s, but now they're just confusing.
Diffstat (limited to 'video/out/vo_xv.c')
-rw-r--r--video/out/vo_xv.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/video/out/vo_xv.c b/video/out/vo_xv.c
index 2150eb7fce..dcc9257003 100644
--- a/video/out/vo_xv.c
+++ b/video/out/vo_xv.c
@@ -789,17 +789,9 @@ static int preinit(struct vo *vo)
}
if (!ctx->xv_port) {
if (busy_ports)
- MP_ERR(vo,
- "Could not find free Xvideo port - maybe another process is already\n"\
- "using it. Close all video applications, and try again. If that does\n"\
- "not help, see 'mpv -vo help' for other (non-xv) video out drivers.\n");
+ MP_ERR(vo, "Xvideo ports busy.\n");
else
- MP_ERR(vo,
- "It seems there is no Xvideo support for your video card available.\n"\
- "Run 'xvinfo' to verify its Xv support and read\n"\
- "DOCS/HTML/en/video.html#xv!\n"\
- "See 'mpv -vo help' for other (non-xv) video out drivers.\n"\
- "Try -vo x11.\n");
+ MP_ERR(vo, "No Xvideo support found.\n");
goto error;
}