Add support for Westwood IMA ADPCM audio.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20947 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-11-15 23:42:47 +00:00
parent 4be2ac6d78
commit 61da56fefa
2 changed files with 8 additions and 0 deletions

View File

@ -2433,6 +2433,13 @@ audiocodec ff4xmadmpcm
driver ffmpeg
dll adpcm_4xm
audiocodec ffadpcmimaws
info "FFmpeg Westwood IMA ADPCM audio"
status working
fourcc AIWS
driver ffmpeg
dll adpcm_ima_ws
audiocodec libdv
info "raw DV audio decoder (libdv)"
status working

View File

@ -73,6 +73,7 @@ int64_t ff_gcd(int64_t a, int64_t b);
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_PCM_S24BE, MKTAG('i', 'n', '2', '4')},
{ CODEC_ID_PCM_S8, MKTAG('t', 'w', 'o', 's')},
{ CODEC_ID_WAVPACK, MKTAG('W', 'V', 'P', 'K')},