]> git.sesse.net Git - vlc/commitdiff
Seemingly, Blackmagic is without capital M.
authorSteinar Gunderson <sgunderson@bigfoot.com>
Mon, 27 Sep 2010 11:58:53 +0000 (13:58 +0200)
committerSteinar Gunderson <sgunderson@bigfoot.com>
Mon, 27 Sep 2010 11:58:53 +0000 (13:58 +0200)
NEWS
configure.ac
modules/LIST
modules/access/sdi.cpp

diff --git a/NEWS b/NEWS
index 721920e9bd60a3249053fe6d7f469ce3aa6de321..4fab873c7f332e20c9560243c3b21d6602f45414 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -14,7 +14,7 @@ Access
  * DShow: support for freq and video standard selection
  * Support for VDR recordings
  * Blu-Ray integration with libbluray
- * BlackMagic DeckLink SDI card input support (Linux only currently)
+ * Blackmagic DeckLink SDI card input support (Linux only currently)
 
 Codecs
  * You can now use ffmpeg-mt in conjunction with vlc
index 28f9d0d92464925612692c5021e6d98aa27159bb..f0db14862ad87f9ade7c568d498bc95aa2ed6af9 100644 (file)
@@ -2134,14 +2134,14 @@ then
 fi
 
 dnl
-dnl special access module for BlackMagic SDI cards
+dnl special access module for Blackmagic SDI cards
 dnl
 AC_ARG_ENABLE(sdi,
-  [  --enable-sdi            BlackMagic SDI access module (default disabled)])
+  [  --enable-sdi            Blackmagic SDI access module (default disabled)])
 if test "${enable_sdi}" = "yes"
 then
   AC_ARG_WITH(sdi_sdk,
-    [  --with-sdi-sdk=DIR      Location of BlackMagic SDI SDK],[],[])
+    [  --with-sdi-sdk=DIR      Location of Blackmagic SDI SDK],[],[])
   if test "${with_sdi_sdk}" != "no" -a -n "${with_sdi_sdk}"
   then
     VLC_ADD_CPPFLAGS([sdi],[-I${with_sdi_sdk}/include])
@@ -2150,7 +2150,7 @@ then
   AC_LANG_PUSH(C++)
   AC_CHECK_HEADERS(DeckLinkAPIDispatch.cpp, [
     VLC_ADD_PLUGIN([sdi])
-  ],[AC_MSG_WARN(BlackMagic SDI include files not found, sdi disabled)])
+  ],[AC_MSG_WARN(Blackmagic SDI include files not found, sdi disabled)])
   AC_LANG_POP(C++)
   CPPFLAGS="${CPPFLAGS_save}"
 fi
index ce8002f295fed91fc5fbd2a00965a57d7bceaaa1..8a0314e0d10da756d266b33ecb6c396f446d7105 100644 (file)
@@ -264,7 +264,7 @@ $Id$
  * schroedinger: Schroedinger video decoder
  * screen: a input module that takes screenshots of the primary monitor
  * sdl_image: SDL-based image decoder
- * sdi: input module to read from a BlackMagic SDI card
+ * sdi: input module to read from a Blackmagic SDI card
  * sharpen: Sharpen video filter
  * shine: MP3 encoder using Shine, a fixed point implementation
  * simple_channel_mixer: channel mixer
index 409d8d69445470cd8236982df3a07d2fad6278f2..1554d77de7a31d858bd21792af307b220e9d7a28 100644 (file)
@@ -1,4 +1,4 @@
-/* BlackMagic SDI driver */
+/* Blackmagic SDI driver */
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
@@ -70,7 +70,7 @@ static void Close( vlc_object_t * );
 
 vlc_module_begin ()
     set_shortname( N_("SDI") )
-    set_description( N_("BlackMagic SDI input") )
+    set_description( N_("Blackmagic SDI input") )
     set_category( CAT_INPUT )
     set_subcategory( SUBCAT_INPUT_ACCESS )