Skip to content

Commit

Permalink
chromecast: disable passthrough by default
Browse files Browse the repository at this point in the history
Since there are too many TV/receivers in the wild that don't support AC3
passthrough.
  • Loading branch information
tguillem committed Jan 29, 2018
1 parent 062896c commit 434b7eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/stream_out/chromecast/cast.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 434b7eb

Please sign in to comment.