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 | |
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')
-rw-r--r-- | libavcodec/atrac.c | 2 | ||||
-rw-r--r-- | libavcodec/atrac.h | 4 | ||||
-rw-r--r-- | libavcodec/atrac1.c | 6 | ||||
-rw-r--r-- | libavcodec/atrac1data.h | 4 | ||||
-rw-r--r-- | libavcodec/atrac3.c | 8 | ||||
-rw-r--r-- | libavcodec/atrac3data.h | 4 | ||||
-rw-r--r-- | libavcodec/codec_desc.c | 6 |
7 files changed, 17 insertions, 17 deletions
diff --git a/libavcodec/atrac.c b/libavcodec/atrac.c index ea342a0438..3d37b02fd1 100644 --- a/libavcodec/atrac.c +++ b/libavcodec/atrac.c @@ -1,5 +1,5 @@ /* - * Atrac common functions + * ATRAC common functions * Copyright (c) 2006-2008 Maxim Poliakovski * Copyright (c) 2006-2008 Benjamin Larsson * diff --git a/libavcodec/atrac.h b/libavcodec/atrac.h index 8607b0102d..9041d85481 100644 --- a/libavcodec/atrac.h +++ b/libavcodec/atrac.h @@ -1,5 +1,5 @@ /* - * Atrac common data + * ATRAC common data * Copyright (c) 2009 Maxim Poliakovski * Copyright (c) 2009 Benjamin Larsson * @@ -22,7 +22,7 @@ /** * @file - * Atrac common header + * ATRAC common header */ #ifndef AVCODEC_ATRAC_H 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 }, }; diff --git a/libavcodec/atrac1data.h b/libavcodec/atrac1data.h index ebebe4b105..08f835747a 100644 --- a/libavcodec/atrac1data.h +++ b/libavcodec/atrac1data.h @@ -1,5 +1,5 @@ /* - * Atrac 1 compatible decoder data + * ATRAC 1 compatible decoder data * Copyright (c) 2009 Maxim Poliakovski * Copyright (c) 2009 Benjamin Larsson * @@ -22,7 +22,7 @@ /** * @file - * Atrac 1 compatible decoder data + * ATRAC1 compatible decoder data */ #ifndef AVCODEC_ATRAC1DATA_H diff --git a/libavcodec/atrac3.c b/libavcodec/atrac3.c index 2a46a0536e..c2da6e2411 100644 --- a/libavcodec/atrac3.c +++ b/libavcodec/atrac3.c @@ -1,5 +1,5 @@ /* - * Atrac 3 compatible decoder + * ATRAC3 compatible decoder * Copyright (c) 2006-2008 Maxim Poliakovski * Copyright (c) 2006-2008 Benjamin Larsson * @@ -22,10 +22,10 @@ /** * @file - * Atrac 3 compatible decoder. + * ATRAC3 compatible decoder. * This decoder handles Sony's ATRAC3 data. * - * Container formats used to store atrac 3 data: + * Container formats used to store ATRAC3 data: * RealMedia (.rm), RIFF WAV (.wav, .at3), Sony OpenMG (.oma, .aa3). * * To use this decoder, a calling application must supply the extradata @@ -1002,6 +1002,7 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx) AVCodec ff_atrac3_decoder = { .name = "atrac3", + .long_name = NULL_IF_CONFIG_SMALL("ATRAC3 (Adaptive TRansform Acoustic Coding 3)"), .type = AVMEDIA_TYPE_AUDIO, .id = AV_CODEC_ID_ATRAC3, .priv_data_size = sizeof(ATRAC3Context), @@ -1009,7 +1010,6 @@ AVCodec ff_atrac3_decoder = { .close = atrac3_decode_close, .decode = atrac3_decode_frame, .capabilities = CODEC_CAP_SUBFRAMES | CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("Atrac 3 (Adaptive TRansform Acoustic Coding 3)"), .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_NONE }, }; diff --git a/libavcodec/atrac3data.h b/libavcodec/atrac3data.h index 9963d4e0ba..5d91274f48 100644 --- a/libavcodec/atrac3data.h +++ b/libavcodec/atrac3data.h @@ -1,5 +1,5 @@ /* - * Atrac 3 compatible decoder data + * ATRAC3 compatible decoder data * Copyright (c) 2006-2007 Maxim Poliakovski * Copyright (c) 2006-2007 Benjamin Larsson * @@ -22,7 +22,7 @@ /** * @file - * Atrac 3 AKA RealAudio 8 compatible decoder data + * ATRAC3 AKA RealAudio 8 compatible decoder data */ #ifndef AVCODEC_ATRAC3DATA_H diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index ff468f6fcf..523b61761f 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -2129,7 +2129,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .id = AV_CODEC_ID_ATRAC3, .type = AVMEDIA_TYPE_AUDIO, .name = "atrac3", - .long_name = NULL_IF_CONFIG_SMALL("Atrac 3 (Adaptive TRansform Acoustic Coding 3)"), + .long_name = NULL_IF_CONFIG_SMALL("ATRAC3 (Adaptive TRansform Acoustic Coding 3)"), .props = AV_CODEC_PROP_LOSSY, }, #if FF_API_VOXWARE @@ -2194,7 +2194,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .id = AV_CODEC_ID_ATRAC3P, .type = AVMEDIA_TYPE_AUDIO, .name = "atrac3p", - .long_name = NULL_IF_CONFIG_SMALL("Sony ATRAC3+"), + .long_name = NULL_IF_CONFIG_SMALL("ATRAC3+ (Adaptive TRansform Acoustic Coding 3+)"), .props = AV_CODEC_PROP_LOSSY, }, { @@ -2243,7 +2243,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .id = AV_CODEC_ID_ATRAC1, .type = AVMEDIA_TYPE_AUDIO, .name = "atrac1", - .long_name = NULL_IF_CONFIG_SMALL("Atrac 1 (Adaptive TRansform Acoustic Coding)"), + .long_name = NULL_IF_CONFIG_SMALL("ATRAC1 (Adaptive TRansform Acoustic Coding)"), .props = AV_CODEC_PROP_LOSSY, }, { |