[vlc-commits] decklink access: turn 10 bits off by default
Rafaël Carré
git at videolan.org
Sun Oct 13 10:42:57 CEST 2013
vlc | branch: master | Rafaël Carré <funman at videolan.org> | Sun Oct 13 10:41:58 2013 +0200| [33f3309f137ca408698f84cf221e78b06110b99e] | committer: Rafaël Carré
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
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=33f3309f137ca408698f84cf221e78b06110b99e
---
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