From 7df9e693a34c84c698da60426c78140c950f95ed Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 2 Sep 2013 20:21:49 +0200 Subject: cosmetics: Fix ATRAC codec name spelling --- libavcodec/atrac1.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/atrac1.c') 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 }, }; -- cgit v1.2.3