diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-09-02 20:21:49 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-09-02 21:38:57 +0200 |
commit | 7df9e693a34c84c698da60426c78140c950f95ed (patch) | |
tree | 8867cd27fed6dced62d17ca7a1067a10a2824275 /libavcodec/atrac1.c | |
parent | 488b2984fece7ad0c2596826fee18e74aa904667 (diff) | |
download | ffmpeg-7df9e693a34c84c698da60426c78140c950f95ed.tar.gz |
cosmetics: Fix ATRAC codec name spelling
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 c829898ddb..9a897852a7 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. */ @@ -374,6 +374,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), @@ -381,7 +382,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 }, }; |