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 /libavcodec/avcodec.h | |
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 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 342065a221..8f3b9dc640 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -117,6 +117,7 @@ enum CodecID { CODEC_ID_ADPCM_XA, CODEC_ID_ADPCM_ADX, CODEC_ID_ADPCM_EA, + CODEC_ID_ADPCM_G726, /* AMR */ CODEC_ID_AMR_NB, @@ -1730,6 +1731,7 @@ PCM_CODEC(CODEC_ID_ADPCM_4XM, adpcm_4xm); PCM_CODEC(CODEC_ID_ADPCM_XA, adpcm_xa); PCM_CODEC(CODEC_ID_ADPCM_ADX, adpcm_adx); PCM_CODEC(CODEC_ID_ADPCM_EA, adpcm_ea); +PCM_CODEC(CODEC_ID_ADPCM_G726, adpcm_g726); #undef PCM_CODEC |