1
mirror of https://github.com/mpv-player/mpv synced 2024-07-27 17:48:22 +02:00

support for Electronic Arts ADPCM audio

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20957 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-11-16 12:33:12 +00:00
parent 25d71db765
commit 77b21dc757
2 changed files with 8 additions and 0 deletions

View File

@ -2478,6 +2478,13 @@ audiocodec ffinterplaydpcm
driver ffmpeg
dll interplay_dpcm
audiocodec ffadpcmea
info "FFmpeg EA ADPCM audio"
status working
fourcc ADEA ; internal MPlayer FourCC
driver ffmpeg
dll adpcm_ea
audiocodec libdv
info "raw DV audio decoder (libdv)"
status working

View File

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