summaryrefslogtreecommitdiff
path: root/libavcodec/aacdec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-07-24 02:14:38 +0200
committerDiego Biurrun <diego@biurrun.de>2012-07-24 02:37:49 +0200
commit65d94f63ca38b46a9d3719cb7d986d2daef90416 (patch)
treee15eb1c133660254a9a521b2710e58acdb6ad8e0 /libavcodec/aacdec.c
parent6b80142144c30579f16735ac9911f1a82e9c990d (diff)
aac: Mention abbreviation as well in long_name
Most people know the codec as "AAC" and not "Advanced Audio Coding".
Diffstat (limited to 'libavcodec/aacdec.c')
-rw-r--r--libavcodec/aacdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c
index 4be525555a..76d4120a41 100644
--- a/libavcodec/aacdec.c
+++ b/libavcodec/aacdec.c
@@ -2846,7 +2846,7 @@ AVCodec ff_aac_decoder = {
.init = aac_decode_init,
.close = aac_decode_close,
.decode = aac_decode_frame,
- .long_name = NULL_IF_CONFIG_SMALL("Advanced Audio Coding"),
+ .long_name = NULL_IF_CONFIG_SMALL("AAC (Advanced Audio Coding)"),
.sample_fmts = (const enum AVSampleFormat[]) {
AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_NONE
},