1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-22 14:52:43 +00:00

add support for musepack native decoder from ffmpeg (require -demuxer lavf)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21779 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
aurel 2006-12-28 00:40:49 +00:00
parent 90f7665789
commit d1c91ec012
2 changed files with 9 additions and 0 deletions

View File

@ -2822,6 +2822,14 @@ audiocodec ffdts
driver ffmpeg driver ffmpeg
dll "dts" dll "dts"
audiocodec ffmusepack7
info "Musepack sv7 audio codec"
status working
fourcc "MPC "
format 0x2b4d
driver ffmpeg
dll "mpc sv7"
audiocodec musepack audiocodec musepack
info "Musepack audio codec" info "Musepack audio codec"
status working status working

View File

@ -78,6 +78,7 @@ const CodecTag mp_wav_tags[] = {
{ CODEC_ID_ADPCM_IMA_WS, MKTAG('A', 'I', 'W', 'S')}, { CODEC_ID_ADPCM_IMA_WS, MKTAG('A', 'I', 'W', 'S')},
{ CODEC_ID_DSICINAUDIO, MKTAG('D', 'C', 'I', 'A')}, { CODEC_ID_DSICINAUDIO, MKTAG('D', 'C', 'I', 'A')},
{ CODEC_ID_INTERPLAY_DPCM, MKTAG('I', 'N', 'P', 'A')}, { CODEC_ID_INTERPLAY_DPCM, MKTAG('I', 'N', 'P', 'A')},
{ CODEC_ID_MUSEPACK7, MKTAG('M', 'P', 'C', ' ')},
{ CODEC_ID_PCM_S24BE, MKTAG('i', 'n', '2', '4')}, { CODEC_ID_PCM_S24BE, MKTAG('i', 'n', '2', '4')},
{ CODEC_ID_PCM_S8, MKTAG('t', 'w', 'o', 's')}, { CODEC_ID_PCM_S8, MKTAG('t', 'w', 'o', 's')},
{ CODEC_ID_ROQ_DPCM, MKTAG('R', 'o', 'Q', 'A')}, { CODEC_ID_ROQ_DPCM, MKTAG('R', 'o', 'Q', 'A')},