summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/man/options.rst2
-rw-r--r--audio/decode/ad_lavc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index 982e8c1830..c34dc5cc57 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -1829,7 +1829,7 @@ Audio
other players) ignore this for the sake of better audio quality.
``--ad-lavc-downmix=<yes|no>``
- Whether to request audio channel downmixing from the decoder (default: yes).
+ Whether to request audio channel downmixing from the decoder (default: no).
Some decoders, like AC-3, AAC and DTS, can remix audio on decoding. The
requested number of output channels is set with the ``--audio-channels`` option.
Useful for playing surround audio on a stereo system.
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,
},
};