summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/codecs.conf7
-rw-r--r--libmpdemux/demux_lavf.c1
2 files changed, 8 insertions, 0 deletions
diff --git a/etc/codecs.conf b/etc/codecs.conf
index 642cd235db..ae3fdfb76d 100644
--- a/etc/codecs.conf
+++ b/etc/codecs.conf
@@ -2517,6 +2517,13 @@ audiocodec ffadpcmea
driver ffmpeg
dll adpcm_ea
+audiocodec ffxandpcm
+ info "FFmpeg XAN DPCM audio"
+ status working
+ fourcc Axan
+ driver ffmpeg
+ dll xan_dpcm
+
audiocodec libdv
info "raw DV audio decoder (libdv)"
status working
diff --git a/libmpdemux/demux_lavf.c b/libmpdemux/demux_lavf.c
index effdb27276..67641fa4f9 100644
--- a/libmpdemux/demux_lavf.c
+++ b/libmpdemux/demux_lavf.c
@@ -83,6 +83,7 @@ const CodecTag mp_wav_tags[] = {
{ CODEC_ID_SHORTEN, MKTAG('s', 'h', 'r', 'n')},
{ CODEC_ID_TTA, MKTAG('T', 'T', 'A', '1')},
{ CODEC_ID_WAVPACK, MKTAG('W', 'V', 'P', 'K')},
+ { CODEC_ID_XAN_DPCM, MKTAG('A', 'x', 'a', 'n')},
{ 0, 0 },
};