diff --git a/etc/codecs.conf b/etc/codecs.conf index 4e810b0412..e510b5d982 100644 --- a/etc/codecs.conf +++ b/etc/codecs.conf @@ -2747,6 +2747,13 @@ audiocodec ffape driver ffmpeg dll "ape" +audiocodec ffnellymoser + info "FFmpeg Nellymoser Audio decoder" + status working + fourcc "NELL" ; internal MPlayer FourCC + driver ffmpeg + dll "nellymoser" + audiocodec pcm info "Uncompressed PCM" status working diff --git a/libmpdemux/demux_lavf.c b/libmpdemux/demux_lavf.c index 6ec11af57b..11a93e4f7a 100644 --- a/libmpdemux/demux_lavf.c +++ b/libmpdemux/demux_lavf.c @@ -86,6 +86,7 @@ static const AVCodecTag mp_wav_tags[] = { { CODEC_ID_DSICINAUDIO, MKTAG('D', 'C', 'I', 'A')}, { CODEC_ID_INTERPLAY_DPCM, MKTAG('I', 'N', 'P', 'A')}, { CODEC_ID_MUSEPACK7, MKTAG('M', 'P', 'C', ' ')}, + { CODEC_ID_NELLYMOSER, MKTAG('N', 'E', 'L', 'L')}, { CODEC_ID_PCM_S24BE, MKTAG('i', 'n', '2', '4')}, { CODEC_ID_PCM_S16BE, MKTAG('t', 'w', 'o', 's')}, { CODEC_ID_PCM_S8, MKTAG('t', 'w', 'o', 's')},