summaryrefslogtreecommitdiff
path: root/libavcodec/atrac1.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-09-02 20:21:49 +0200
committerDiego Biurrun <diego@biurrun.de>2013-09-02 21:38:57 +0200
commit7df9e693a34c84c698da60426c78140c950f95ed (patch)
tree8867cd27fed6dced62d17ca7a1067a10a2824275 /libavcodec/atrac1.c
parent488b2984fece7ad0c2596826fee18e74aa904667 (diff)
cosmetics: Fix ATRAC codec name spelling
Diffstat (limited to 'libavcodec/atrac1.c')
-rw-r--r--libavcodec/atrac1.c6
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 },
};