Add support for MLP audio through FFmpeg.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27232 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-07-07 12:17:46 +00:00
parent 6ab83c724c
commit a77608b67a
2 changed files with 8 additions and 0 deletions

View File

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

View File

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