summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-03-23 18:46:26 +0100
committerwm4 <wm4@nowhere>2015-03-23 18:46:26 +0100
commit53f24ac5adc07a1498cbf430d826f67554c019bf (patch)
treea3f59e21cc7cc3ff0cbdc52664f3fd2544997a82 /options
parente52f7d3da8c7d76a4d1ae7c41fef60eaf2b77db1 (diff)
downloadmpv-53f24ac5adc07a1498cbf430d826f67554c019bf.tar.bz2
mpv-53f24ac5adc07a1498cbf430d826f67554c019bf.tar.xz
audio: prefer libdcadec by default if present
If you enable this library in FFmpeg, you probably really want it to be used.
Diffstat (limited to 'options')
-rw-r--r--options/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c
index cc3a211923..b76e6d2dde 100644
--- a/options/options.c
+++ b/options/options.c
@@ -669,7 +669,7 @@ const struct MPOpts mp_default_opts = {
.use_terminal = 1,
.msg_color = 1,
.audio_driver_list = NULL,
- .audio_decoders = "-spdif:*", // never select spdif by default
+ .audio_decoders = "lavc:libdcadec,-spdif:*", // never select spdif by default
.video_decoders = NULL,
.deinterlace = -1,
.softvol = SOFTVOL_AUTO,