summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/codecs.conf7
-rw-r--r--libmpdemux/mp_taglists.c1
2 files changed, 8 insertions, 0 deletions
diff --git a/etc/codecs.conf b/etc/codecs.conf
index 64f8706815..f6ad1812bd 100644
--- a/etc/codecs.conf
+++ b/etc/codecs.conf
@@ -2912,6 +2912,13 @@ audiocodec ffape
driver ffmpeg
dll "ape"
+audiocodec ffmlp
+ info "FFmpeg MLP decoder"
+ status working
+ fourcc "MLP " ; internal MPlayer FourCC
+ driver ffmpeg
+ dll "mlp"
+
audiocodec ffnellymoser
info "FFmpeg Nellymoser Audio decoder"
status working
diff --git a/libmpdemux/mp_taglists.c b/libmpdemux/mp_taglists.c
index 4fcc95d6bd..39e8b76d92 100644
--- a/libmpdemux/mp_taglists.c
+++ b/libmpdemux/mp_taglists.c
@@ -32,6 +32,7 @@ static const AVCodecTag mp_wav_tags[] = {
{ CODEC_ID_COOK, MKTAG('c', 'o', 'o', 'k')},
{ CODEC_ID_DSICINAUDIO, MKTAG('D', 'C', 'I', 'A')},
{ CODEC_ID_INTERPLAY_DPCM, MKTAG('I', 'N', 'P', 'A')},
+ { CODEC_ID_MLP, MKTAG('M', 'L', 'P', ' ')},
{ CODEC_ID_MUSEPACK7, MKTAG('M', 'P', 'C', ' ')},
{ CODEC_ID_MUSEPACK8, MKTAG('M', 'P', 'C', '8')},
{ CODEC_ID_NELLYMOSER, MKTAG('N', 'E', 'L', 'L')},