summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-02-29 22:08:38 +0100
committerwm4 <wm4@nowhere>2020-02-29 22:08:38 +0100
commitfaf24a286fb69ef6b93522a4678fad81b6e989f6 (patch)
tree929ffb2ac893a029e43e2f968a78ac249dd97002 /audio
parenta3823ce0e0353fa4ae4b75b0ff2cc17e61969005 (diff)
downloadmpv-faf24a286fb69ef6b93522a4678fad81b6e989f6.tar.bz2
mpv-faf24a286fb69ef6b93522a4678fad81b6e989f6.tar.xz
ad_lavc: disable decoder downmix by default
Let's see how much everyone hates this. Leaving it enabled seems problematic, because libavcodec returns an unspecific error if it doesn't like it. Fixes: #6300
Diffstat (limited to 'audio')
-rw-r--r--audio/decode/ad_lavc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/decode/ad_lavc.c b/audio/decode/ad_lavc.c
index 63f9aa0cbe..a4e06822b7 100644
--- a/audio/decode/ad_lavc.c
+++ b/audio/decode/ad_lavc.c
@@ -72,7 +72,7 @@ const struct m_sub_options ad_lavc_conf = {
.size = sizeof(struct ad_lavc_params),
.defaults = &(const struct ad_lavc_params){
.ac3drc = 0,
- .downmix = 1,
+ .downmix = 0,
.threads = 1,
},
};