From faf24a286fb69ef6b93522a4678fad81b6e989f6 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 29 Feb 2020 22:08:38 +0100 Subject: 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 --- audio/decode/ad_lavc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'audio/decode') 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, }, }; -- cgit v1.2.3