0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

audio: remove default preference for libdcadec

Not needed anymore, because the decoder was merged with FFmpeg.
This commit is contained in:
wm4 2016-02-01 20:05:25 +01:00
parent 05ffde6599
commit d53942dd79
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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,