diff options
author | Mike Melanson <mike@multimedia.cx> | 2004-10-12 12:47:49 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2004-10-12 12:47:49 +0000 |
commit | b3bfb29980ba16d8b8553d7f52f00fe477b79251 (patch) | |
tree | 61e860fb7f7d8d7d7f3ab923a98f04076cd71486 /libavformat | |
parent | 8bcb147f54f25126476587205ee8374bed4e39dc (diff) | |
download | ffmpeg-b3bfb29980ba16d8b8553d7f52f00fe477b79251.tar.gz |
Creative ADPCM decoder, format 0x200, courtesy of Konstantin Shishkov
Originally committed as revision 3589 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/wav.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/wav.c b/libavformat/wav.c index 0bc3c3408b..50d8593ff3 100644 --- a/libavformat/wav.c +++ b/libavformat/wav.c @@ -38,6 +38,7 @@ const CodecTag codec_wav_tags[] = { { CODEC_ID_VORBIS, ('V'<<8)+'o' }, //HACK/FIXME, does vorbis in WAV/AVI have an (in)official id? { CODEC_ID_SONIC, 0x2048 }, { CODEC_ID_SONIC_LS, 0x2048 }, + { CODEC_ID_ADPCM_CT, 0x200 }, { 0, 0 }, }; |