Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-07-09 02:31:14 +0400
committerMåns Rullgård <mans@mansr.com>2006-07-09 02:31:14 +0400
commit7239fb57388b2f0249ba96d664fdd75841007762 (patch)
tree9af1ebfcc459685e432cf583d40708e03b07f720 /libavcodec/adx.c
parent327dcfd3152f4b18c747059650d99f8d8448fe28 (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.c8
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),