diff options
author | Peter Ross <pross@xvid.org> | 2007-10-24 20:49:42 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-10-24 20:49:42 +0000 |
commit | e7583962687adf44b4e6b5556a296f37485c7c8b (patch) | |
tree | 7eccd7643ae8b71792c9ea9862a84d1d62ec1896 /libavcodec/avcodec.h | |
parent | d2bbb2f743e253869316db3e45f639d09285f583 (diff) | |
download | ffmpeg-e7583962687adf44b4e6b5556a296f37485c7c8b.tar.gz |
EA ADPCM R1, R2 and R3 decoder
original patch by Peter Ross
Originally committed as revision 10856 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 02d0920135..1e8179d513 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -33,8 +33,8 @@ #define AV_STRINGIFY(s) AV_TOSTRING(s) #define AV_TOSTRING(s) #s -#define LIBAVCODEC_VERSION_INT ((51<<16)+(47<<8)+0) -#define LIBAVCODEC_VERSION 51.47.0 +#define LIBAVCODEC_VERSION_INT ((51<<16)+(47<<8)+1) +#define LIBAVCODEC_VERSION 51.47.1 #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) @@ -211,6 +211,9 @@ enum CodecID { CODEC_ID_ADPCM_SBPRO_2, CODEC_ID_ADPCM_THP, CODEC_ID_ADPCM_IMA_AMV, + CODEC_ID_ADPCM_EA_R1, + CODEC_ID_ADPCM_EA_R3, + CODEC_ID_ADPCM_EA_R2, /* AMR */ CODEC_ID_AMR_NB= 0x12000, |