summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-11-06 09:54:58 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-11-06 09:54:58 +0000
commit808e6280d2b814b724c6e672241c2289b212c742 (patch)
treeb1b496e254e2bee23850cf02e7c518feaabbb6a6 /libvo
parenta75c9a65270041e5fb3353ee0b558359ff019935 (diff)
downloadmpv-808e6280d2b814b724c6e672241c2289b212c742.tar.bz2
mpv-808e6280d2b814b724c6e672241c2289b212c742.tar.xz
cosmetics: output grammar/spelling fixes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24979 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_directfb2.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libvo/vo_directfb2.c b/libvo/vo_directfb2.c
index ce85a6e5bb..dddd6acd54 100644
--- a/libvo/vo_directfb2.c
+++ b/libvo/vo_directfb2.c
@@ -276,7 +276,7 @@ static int preinit(const char *arg)
#if DIRECTFBVERSION < DFB_VERSION(0,9,17)
if (DFB_OK != dfb->SetCooperativeLevel (dfb, DFSCL_FULLSCREEN)) {
- mp_msg(MSGT_VO, MSGL_WARN,"DirectFB: Warning - cannot swith to fullscreen mode");
+ mp_msg(MSGT_VO, MSGL_WARN,"DirectFB: Warning - cannot switch to fullscreen mode");
};
#endif
@@ -613,7 +613,7 @@ static int config(uint32_t s_width, uint32_t s_height, uint32_t d_width,
ret = layer->SetCooperativeLevel (layer, DLSCL_EXCLUSIVE);
if (DFB_OK != ret) {
- mp_msg(MSGT_VO, MSGL_WARN,"DirectFB: Warning - cannot swith layer to exclusive mode. This could cause\nproblems. You may need to select correct pixel format manually!\n");
+ mp_msg(MSGT_VO, MSGL_WARN,"DirectFB: Warning - cannot switch layer to exclusive mode. This could cause\nproblems. You may need to select correct pixel format manually!\n");
DirectFBError("MPlayer - Switch layer to exlusive mode.",ret);
};
#endif
@@ -702,7 +702,7 @@ static int config(uint32_t s_width, uint32_t s_height, uint32_t d_width,
if (ret) {
DirectFBError("MPlayer - VM - Layer->GetConfiguration",ret);
} else {
- mp_msg(MSGT_VO, MSGL_DBG2,"DirectFB: Layer has now pixelformat [%x]\n",dlc.pixelformat);
+ mp_msg(MSGT_VO, MSGL_DBG2,"DirectFB: Layer now has pixelformat [%x]\n",dlc.pixelformat);
};
// check if we were succesful
@@ -1297,7 +1297,7 @@ static uint32_t put_image(mp_image_t *mpi){
// already out?
if((mpi->flags&(MP_IMGFLAG_DIRECT|MP_IMGFLAG_DRAW_CALLBACK))) {
-// if ( mp_msg_test(MSGT_VO,MSGL_V) ) printf("DirectFB: Put_image - nothing todo\n");
+// if ( mp_msg_test(MSGT_VO,MSGL_V) ) printf("DirectFB: Put_image - nothing to do\n");
return VO_TRUE;
}
@@ -1393,7 +1393,7 @@ static uint32_t put_image(mp_image_t *mpi){
unsigned int pitch;
void *dst;
-// if ( mp_msg_test(MSGT_VO,MSGL_V) ) printf("DirectFB: Put_image - non planar branch\n");
+// if ( mp_msg_test(MSGT_VO,MSGL_V) ) printf("DirectFB: Put_image - non-planar branch\n");
if (frame) {
DFBCHECK (frame->Lock(frame,DSLF_WRITE,&dst,&pitch));
framelocked = 1;