summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
diff options
context:
space:
mode:
authorsiretart <siretart@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-08-03 15:55:17 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:15:03 +0200
commit2e6ff523ddb5743eebfacebb162fb4c0e4ee34dc (patch)
treeb98b5b25946bdd392d6a2e7e7f8d88e5833b825f /libmpcodecs
parent2f1d60f422b007fc1cbada601fc8c9b7a47001e2 (diff)
downloadmpv-2e6ff523ddb5743eebfacebb162fb4c0e4ee34dc.tar.bz2
mpv-2e6ff523ddb5743eebfacebb162fb4c0e4ee34dc.tar.xz
spelling fixes
Found by the Debian QA tool 'lintian' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31913 b3059339-0415-0410-9bf9-f77b7e298cf2 reintroduce typo in genres.h that was fixed fixed r31913 to match the id3v2 spec git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31920 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r--libmpcodecs/vd_lzo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpcodecs/vd_lzo.c b/libmpcodecs/vd_lzo.c
index e8521bfb43..deb9465165 100644
--- a/libmpcodecs/vd_lzo.c
+++ b/libmpcodecs/vd_lzo.c
@@ -122,10 +122,10 @@ static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags)
if (w == 0) {
priv->codec = IMGFMT_BGR24;
- mp_msg (MSGT_DECVIDEO, MSGL_V, "[%s] codec choosen is BGR24\n", MOD_NAME);
+ mp_msg (MSGT_DECVIDEO, MSGL_V, "[%s] codec chosen is BGR24\n", MOD_NAME);
} else if (w == (sh->bih->biSizeImage)/2) {
priv->codec = IMGFMT_YV12;
- mp_msg (MSGT_DECVIDEO, MSGL_V, "[%s] codec choosen is YV12\n", MOD_NAME);
+ mp_msg (MSGT_DECVIDEO, MSGL_V, "[%s] codec chosen is YV12\n", MOD_NAME);
} else {
priv->codec = -1;
mp_msg(MSGT_DECVIDEO,MSGL_ERR,"[%s] Unsupported out_fmt\n", MOD_NAME);