diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-08-12 16:15:54 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-08-12 17:20:57 +0200 |
commit | 9f4d37f450897f86a9209f6c0aa28d5a3398a218 (patch) | |
tree | b3dcb998cc8963d09e445b7d7709db38d7feb830 /libavcodec/ac3enc_float.c | |
parent | d912e449b655797407a75527380c566955b71a8e (diff) | |
download | ffmpeg-9f4d37f450897f86a9209f6c0aa28d5a3398a218.tar.gz |
ac3enc: drop common fixed/float encoder
User applications should by now be able to support float encoders.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ac3enc_float.c')
-rw-r--r-- | libavcodec/ac3enc_float.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ac3enc_float.c b/libavcodec/ac3enc_float.c index 8845518fe0..b1d1221667 100644 --- a/libavcodec/ac3enc_float.c +++ b/libavcodec/ac3enc_float.c @@ -120,8 +120,8 @@ static void clip_coefficients(DSPContext *dsp, float *coef, unsigned int len) #if CONFIG_AC3_ENCODER -AVCodec ff_ac3_float_encoder = { - .name = "ac3 float", +AVCodec ff_ac3_encoder = { + .name = "ac3", .type = AVMEDIA_TYPE_AUDIO, .id = CODEC_ID_AC3, .priv_data_size = sizeof(AC3EncodeContext), |