summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-02-01 20:05:25 +0100
committerwm4 <wm4@nowhere>2016-02-01 20:09:02 +0100
commitd53942dd7950e31d3826b3ba72b2257299fd86d3 (patch)
tree512c781b46f57817dc8832c223762d20b91a8912
parent05ffde6599fde77cf3e5cd6e244063563f88c112 (diff)
downloadmpv-d53942dd7950e31d3826b3ba72b2257299fd86d3.tar.bz2
mpv-d53942dd7950e31d3826b3ba72b2257299fd86d3.tar.xz
audio: remove default preference for libdcadec
Not needed anymore, because the decoder was merged with FFmpeg.
-rw-r--r--DOCS/man/options.rst2
-rw-r--r--options/options.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index 579440e6a4..dc4d6ed3e0 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -979,7 +979,7 @@ Audio
There is not much reason to use this. HDMI supports uncompressed
multichannel PCM, and mpv supports lossless DTS-HD decoding via
- FFmpeg's libdcadec wrapper.
+ FFmpeg's new DCA decoder (based on libdcadec).
``--ad=<[+|-]family1:(*|decoder1),[+|-]family2:(*|decoder2),...[-]>``
Specify a priority list of audio decoders to be used, according to their
diff --git a/options/options.c b/options/options.c
index 49c44cb189..b839f3a7c9 100644
--- a/options/options.c
+++ b/options/options.c
@@ -680,7 +680,7 @@ const struct MPOpts mp_default_opts = {
.use_terminal = 1,
.msg_color = 1,
.audio_driver_list = NULL,
- .audio_decoders = "lavc:libdcadec,-spdif:*", // never select spdif by default
+ .audio_decoders = "-spdif:*", // never select spdif by default
.video_decoders = NULL,
.deinterlace = -1,
.softvol = SOFTVOL_AUTO,