[vlc-commits] decklink access: turn 10 bits off by default

Rafaël Carré git at videolan.org
Sun Oct 13 11:36:35 CEST 2013


vlc/vlc-2.1 | branch: master | Rafaël Carré <funman at videolan.org> | Sun Oct 13 10:41:58 2013 +0200| [07ac96dd85e42305bb0a552502908e7495028895] | committer: Jean-Baptiste Kempf

decklink access: turn 10 bits off by default

It is not clear which connections and which hardware are 10 bits able,
so let's stay on the safe side.

Fixes #9361

(cherry picked from commit 33f3309f137ca408698f84cf221e78b06110b99e)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

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

 modules/access/decklink.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/access/decklink.cpp b/modules/access/decklink.cpp
index 149920d..35121b1 100644
--- a/modules/access/decklink.cpp
+++ b/modules/access/decklink.cpp
@@ -115,7 +115,7 @@ vlc_module_begin ()
         change_string_list(ppsz_videoconns, ppsz_videoconns_text)
     add_string("decklink-aspect-ratio", NULL,
                 ASPECT_RATIO_TEXT, ASPECT_RATIO_LONGTEXT, true)
-    add_bool("decklink-tenbits", true, N_("10 bits"), N_("10 bits"), true)
+    add_bool("decklink-tenbits", false, N_("10 bits"), N_("10 bits"), true)
 
     add_shortcut("decklink")
     set_capability("access_demux", 10)



More information about the vlc-commits mailing list