From 33f3309f137ca408698f84cf221e78b06110b99e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Sun, 13 Oct 2013 10:41:58 +0200 Subject: [PATCH] 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 --- 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 149920d751..35121b19b4 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) -- 2.39.2