[vlc-commits] chromecast: disable passthrough by default

Thomas Guillem git at videolan.org
Mon Jan 29 13:13:21 CET 2018


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Mon Jan 29 13:09:15 2018 +0100| [434b7eb69efac012925ce082050f6c850720c82c] | committer: Thomas Guillem

chromecast: disable passthrough by default

Since there are too many TV/receivers in the wild that don't support AC3
passthrough.

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

 modules/stream_out/chromecast/cast.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/stream_out/chromecast/cast.cpp b/modules/stream_out/chromecast/cast.cpp
index 5b90708760..3dcb0310e5 100644
--- a/modules/stream_out/chromecast/cast.cpp
+++ b/modules/stream_out/chromecast/cast.cpp
@@ -186,7 +186,7 @@ vlc_module_begin ()
     add_string(SOUT_CFG_PREFIX "mime", "video/x-matroska", MIME_TEXT, MIME_LONGTEXT, false)
     add_integer(SOUT_CFG_PREFIX "show-perf-warning", 1, PERF_TEXT, PERF_LONGTEXT, true )
         change_private()
-    add_bool(SOUT_CFG_PREFIX "audio-passthrough", true, AUDIO_PASSTHROUGH_TEXT, AUDIO_PASSTHROUGH_LONGTEXT, false )
+    add_bool(SOUT_CFG_PREFIX "audio-passthrough", false, AUDIO_PASSTHROUGH_TEXT, AUDIO_PASSTHROUGH_LONGTEXT, false )
     add_integer(SOUT_CFG_PREFIX "conversion-quality", CONVERSION_QUALITY_DEFAULT,
                 CONVERSION_QUALITY_TEXT, CONVERSION_QUALITY_LONGTEXT, false );
         change_integer_list(conversion_quality_list, conversion_quality_list_text)



More information about the vlc-commits mailing list