summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-28 14:28:38 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-28 14:28:38 +0000
commit22fc24fe567029303c32799b5c7590e6dbb75fd8 (patch)
tree6ff62d49b378d63434cc510deb64f1dc078c576e /libvo
parentf5a10ea82fc3f4e562fde383dd6b42df14e3d4e8 (diff)
downloadmpv-22fc24fe567029303c32799b5c7590e6dbb75fd8.tar.bz2
mpv-22fc24fe567029303c32799b5c7590e6dbb75fd8.tar.xz
cosmetics: misc typo fixes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23893 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_tdfx_vid.c2
-rw-r--r--libvo/vo_zr.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/libvo/vo_tdfx_vid.c b/libvo/vo_tdfx_vid.c
index 01fd3626ca..401a315a15 100644
--- a/libvo/vo_tdfx_vid.c
+++ b/libvo/vo_tdfx_vid.c
@@ -149,7 +149,7 @@ flip_page(void)
printf("Flip\n");
#endif
if(use_overlay) {
- // TDFX_VID_OVERLAY_ON does nothing if the overlay is alredy on
+ // TDFX_VID_OVERLAY_ON does nothing if the overlay is already on
if(!ioctl(tdfx_fd,TDFX_VID_OVERLAY_ON)) { // X11 killed the overlay :(
if(ioctl(tdfx_fd,TDFX_VID_SET_OVERLAY,&tdfx_ov))
mp_msg(MSGT_VO, MSGL_ERR, "tdfx_vid: set_overlay failed\n");
diff --git a/libvo/vo_zr.c b/libvo/vo_zr.c
index f919ee9227..fa7ae06be4 100644
--- a/libvo/vo_zr.c
+++ b/libvo/vo_zr.c
@@ -186,12 +186,12 @@ int init_zoran(zr_info_t *zr, int stretchx, int stretchy) {
/* center the image, and stretch it as far as possible (try to keep
* aspect) and check if it fits */
if (zr->image_width > zr->vc.maxwidth) {
- mp_msg(MSGT_VO, MSGL_ERR, "zr: movie to be played is too wide, max width currenty %d\n", zr->vc.maxwidth);
+ mp_msg(MSGT_VO, MSGL_ERR, "zr: movie to be played is too wide, max width currently %d\n", zr->vc.maxwidth);
return 1;
}
if (zr->image_height > zr->vc.maxheight) {
- mp_msg(MSGT_VO, MSGL_ERR, "zr: movie to be played is too high, max height currenty %d\n", zr->vc.maxheight);
+ mp_msg(MSGT_VO, MSGL_ERR, "zr: movie to be played is too high, max height currently %d\n", zr->vc.maxheight);
return 1;
}