diff options
author | Måns Rullgård | 2006-07-08 22:31:14 +0000 |
---|---|---|
committer | Måns Rullgård | 2006-07-08 22:31:14 +0000 |
commit | 7239fb57388b2f0249ba96d664fdd75841007762 (patch) | |
tree | 9af1ebfcc459685e432cf583d40708e03b07f720 /libavcodec/adx.c | |
parent | 327dcfd3152f4b18c747059650d99f8d8448fe28 (diff) |
make the adx adpcm codec available
Originally committed as revision 5679 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/adx.c')
-rw-r--r-- | libavcodec/adx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/adx.c b/libavcodec/adx.c index fb91f652cf..c8c7855903 100644 --- a/libavcodec/adx.c +++ b/libavcodec/adx.c @@ -385,8 +385,8 @@ static int adx_decode_frame(AVCodecContext *avctx, } #ifdef CONFIG_ENCODERS -AVCodec adx_adpcm_encoder = { - "adx_adpcm", +AVCodec adpcm_adx_encoder = { + "adpcm_adx", CODEC_TYPE_AUDIO, CODEC_ID_ADPCM_ADX, sizeof(ADXContext), @@ -397,8 +397,8 @@ AVCodec adx_adpcm_encoder = { }; #endif //CONFIG_ENCODERS -AVCodec adx_adpcm_decoder = { - "adx_adpcm", +AVCodec adpcm_adx_decoder = { + "adpcm_adx", CODEC_TYPE_AUDIO, CODEC_ID_ADPCM_ADX, sizeof(ADXContext), |