mirror of
https://github.com/mpv-player/mpv
synced 2024-12-16 20:05:07 +00:00
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:
parent
6ab83c724c
commit
a77608b67a
@ -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
|
||||
|
@ -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')},
|
||||
|
Loading…
Reference in New Issue
Block a user