add nellymoser codec to mplayer with internal fourcc NELL

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24792 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
compn 2007-10-16 13:06:35 +00:00
parent 39e5906704
commit 014b44de8e
2 changed files with 8 additions and 0 deletions

View File

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

View File

@ -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')},