1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-20 23:07:02 +00:00

Musepack SV8 lavc decoder support

Patch okayed by Diego on IRC


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25120 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
kostya 2007-11-20 17:08:12 +00:00
parent 4ac3e237ef
commit cf446beff5
2 changed files with 9 additions and 0 deletions

View File

@ -2996,6 +2996,14 @@ audiocodec ffmusepack7
driver ffmpeg
dll "mpc sv7"
audiocodec ffmusepack8
info "Musepack sv8 audio codec"
comment "only works with libavformat demuxer"
status working
fourcc "MPC8"
driver ffmpeg
dll "mpc sv8"
audiocodec musepack
info "Musepack audio codec"
status working

View File

@ -88,6 +88,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_MUSEPACK8, MKTAG('M', 'P', 'C', '8')},
{ 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')},