diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2004-02-07 08:20:00 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2004-02-07 08:20:00 +0000 |
commit | e5966052ee7e07c30a078f31141e3e068847fc7a (patch) | |
tree | 5457e8baa39f57fa705e23bc037aafcc9dbb47aa /libavformat/wav.c | |
parent | 2d9aa1e3a24e8640e0527a4def4b5e93a80142a4 (diff) | |
download | ffmpeg-e5966052ee7e07c30a078f31141e3e068847fc7a.tar.gz |
* Initial implementation of the G.726 ADPCM audio codec.
Originally committed as revision 2759 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/wav.c')
-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 22e605fb48..787c7d542f 100644 --- a/libavformat/wav.c +++ b/libavformat/wav.c @@ -29,6 +29,7 @@ const CodecTag codec_wav_tags[] = { { CODEC_ID_PCM_MULAW, 0x07 }, { CODEC_ID_ADPCM_MS, 0x02 }, { CODEC_ID_ADPCM_IMA_WAV, 0x11 }, + { CODEC_ID_ADPCM_G726, 0x45 }, { CODEC_ID_ADPCM_IMA_DK4, 0x61 }, /* rogue format number */ { CODEC_ID_ADPCM_IMA_DK3, 0x62 }, /* rogue format number */ { CODEC_ID_WMAV1, 0x160 }, |