summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
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;
}