summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-29 21:42:51 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-29 21:42:51 +0000
commitc81e374ce12675ef68e7aa75ec759ac13fc4087d (patch)
treec01432eb913d402910ee4d2529b2b094baba8f20 /libvo
parent8d79536625db917ff8527f51d2b0827ceb06216b (diff)
downloadmpv-c81e374ce12675ef68e7aa75ec759ac13fc4087d.tar.bz2
mpv-c81e374ce12675ef68e7aa75ec759ac13fc4087d.tar.xz
1000l
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10719 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_xover.c6
-rw-r--r--libvo/vo_zr.c2
2 files changed, 3 insertions, 5 deletions
diff --git a/libvo/vo_xover.c b/libvo/vo_xover.c
index 8285cfce04..1d03bdf457 100644
--- a/libvo/vo_xover.c
+++ b/libvo/vo_xover.c
@@ -33,8 +33,6 @@
#include "aspect.h"
#include "mp_msg.h"
-#include "../mplayer.h" /* exit_player() */
-
#ifdef HAVE_NEW_GUI
#include "../Gui/interface.h"
#endif
@@ -424,11 +422,11 @@ static uint32_t preinit(const char *arg)
break;
}
if(!video_out_drivers[i]) {
- mp_msg(MSGT_VO, MSGL_ERR, "VO XOverlay: Subdriver %s not found\n");
+ mp_msg(MSGT_VO, MSGL_ERR, "VO XOverlay: Subdriver %s not found\n", arg);
return 1;
}
if(video_out_drivers[i]->control(VOCTRL_XOVERLAY_SUPPORT,NULL) != VO_TRUE) {
- mp_msg(MSGT_VO, MSGL_ERR, "VO XOverlay: %s doesn't support XOverlay\n");
+ mp_msg(MSGT_VO, MSGL_ERR, "VO XOverlay: %s doesn't support XOverlay\n", arg);
return 1;
}
// X11 init
diff --git a/libvo/vo_zr.c b/libvo/vo_zr.c
index 23a3e4749c..90e133b47b 100644
--- a/libvo/vo_zr.c
+++ b/libvo/vo_zr.c
@@ -175,7 +175,7 @@ int zoran_getcap(zr_info_t *zr) {
}
if (ioctl(zr->vdes, VIDIOCGCAP, &zr->vc) < 0) {
- mp_msg(MSGT_VO, MSGL_ERR, "zr: error getting video capabilities from %s\n");
+ mp_msg(MSGT_VO, MSGL_ERR, "zr: error getting video capabilities from %s\n", dev);
return 1;
}
mp_msg(MSGT_VO, MSGL_V, "zr: MJPEG card reports maxwidth=%d, maxheight=%d\n", zr->vc.maxwidth, zr->vc.maxheight);