diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-09-03 15:05:00 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-09-03 15:05:18 +0200 |
commit | 4cfe3b7405431060900d8a05402c2f14ec99f034 (patch) | |
tree | 3049db3ef9739aacbc69554cc17ccf309591b5be /libavcodec/atrac1.c | |
parent | 50fd98b7ac4c410f4413d382eecb415011b37920 (diff) | |
parent | 7df9e693a34c84c698da60426c78140c950f95ed (diff) | |
download | ffmpeg-4cfe3b7405431060900d8a05402c2f14ec99f034.tar.gz |
Merge commit '7df9e693a34c84c698da60426c78140c950f95ed'
* commit '7df9e693a34c84c698da60426c78140c950f95ed':
cosmetics: Fix ATRAC codec name spelling
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/atrac1.c')
-rw-r--r-- | libavcodec/atrac1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/atrac1.c b/libavcodec/atrac1.c index 7c1d1ebccd..d059d7539e 100644 --- a/libavcodec/atrac1.c +++ b/libavcodec/atrac1.c @@ -1,5 +1,5 @@ /* - * Atrac 1 compatible decoder + * ATRAC1 compatible decoder * Copyright (c) 2009 Maxim Poliakovski * Copyright (c) 2009 Benjamin Larsson * @@ -22,7 +22,7 @@ /** * @file - * Atrac 1 compatible decoder. + * ATRAC1 compatible decoder. * This decoder handles raw ATRAC1 data and probably SDDS data. */ @@ -377,6 +377,7 @@ static av_cold int atrac1_decode_init(AVCodecContext *avctx) AVCodec ff_atrac1_decoder = { .name = "atrac1", + .long_name = NULL_IF_CONFIG_SMALL("ATRAC1 (Adaptive TRansform Acoustic Coding)"), .type = AVMEDIA_TYPE_AUDIO, .id = AV_CODEC_ID_ATRAC1, .priv_data_size = sizeof(AT1Ctx), @@ -384,7 +385,6 @@ AVCodec ff_atrac1_decoder = { .close = atrac1_decode_end, .decode = atrac1_decode_frame, .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("Atrac 1 (Adaptive TRansform Acoustic Coding)"), .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_NONE }, }; |