[vlc-commits] modules/codec: Fix minor typos

Wayne McDougall git at videolan.org
Tue Apr 5 13:42:35 CEST 2016


vlc | branch: master | Wayne McDougall <waynemcdougall at gmail.com> | Wed Mar 30 21:12:38 2016 +1300| [c8f7530a4505bbe2ad8b781cd766a17e25dc3149] | committer: Jean-Baptiste Kempf

modules/codec: Fix minor typos

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c8f7530a4505bbe2ad8b781cd766a17e25dc3149
---

 modules/codec/qsv.c       |    2 +-
 modules/codec/quicktime.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/codec/qsv.c b/modules/codec/qsv.c
index bc72b84..2a4098c 100644
--- a/modules/codec/qsv.c
+++ b/modules/codec/qsv.c
@@ -44,7 +44,7 @@
 /* The SDK doesn't have a default bitrate, so here's one. */
 #define QSV_BITRATE_DEFAULT (842)
 
-/* Makes x a multiple of 'align'. 'align' must me a power of 2 */
+/* Makes x a multiple of 'align'. 'align' must be a power of 2 */
 #define QSV_ALIGN(align, x)     (((x)+(align)-1)&~((align)-1))
 
 /*****************************************************************************
diff --git a/modules/codec/quicktime.c b/modules/codec/quicktime.c
index b57fbc8..e843948 100644
--- a/modules/codec/quicktime.c
+++ b/modules/codec/quicktime.c
@@ -241,7 +241,7 @@ static int Open( vlc_object_t *p_this )
 #endif
 
     /* bail out. This plugin is soo Carbon, that it can't be used on 10.5 at all */
-    msg_Info( p_dec, "Your Mac OS version is to new to use this plugin for anything." );
+    msg_Info( p_dec, "Your Mac OS version is too new to use this plugin for anything." );
     return VLC_EGENERIC;
 #endif
 



More information about the vlc-commits mailing list