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 /libavformat | |
parent | 488b2984fece7ad0c2596826fee18e74aa904667 (diff) | |
download | ffmpeg-7df9e693a34c84c698da60426c78140c950f95ed.tar.gz |
cosmetics: Fix ATRAC codec name spelling
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/omadec.c | 2 | ||||
-rw-r--r-- | libavformat/rmdec.c | 2 | ||||
-rw-r--r-- | libavformat/spdif.h | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/omadec.c b/libavformat/omadec.c index 1d7fc91819..e49178290e 100644 --- a/libavformat/omadec.c +++ b/libavformat/omadec.c @@ -342,7 +342,7 @@ static int oma_read_header(AVFormatContext *s) st->codec->sample_rate = samplerate; st->codec->bit_rate = st->codec->sample_rate * framesize * 8 / 1024; - /* fake the atrac3 extradata + /* fake the ATRAC3 extradata * (wav format, makes stream copy to wav work) */ st->codec->extradata_size = 14; edata = av_mallocz(14 + FF_INPUT_BUFFER_PADDING_SIZE); diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index 83cf1b0475..afa37de736 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -29,7 +29,7 @@ #include "rmsipr.h" #include "rm.h" -#define DEINT_ID_GENR MKTAG('g', 'e', 'n', 'r') ///< interleaving for Cooker/Atrac +#define DEINT_ID_GENR MKTAG('g', 'e', 'n', 'r') ///< interleaving for Cooker/ATRAC #define DEINT_ID_INT0 MKTAG('I', 'n', 't', '0') ///< no interleaving needed #define DEINT_ID_INT4 MKTAG('I', 'n', 't', '4') ///< interleaving for 28.8 #define DEINT_ID_SIPR MKTAG('s', 'i', 'p', 'r') ///< interleaving for Sipro diff --git a/libavformat/spdif.h b/libavformat/spdif.h index b2a6b63be4..f5b15ebbb1 100644 --- a/libavformat/spdif.h +++ b/libavformat/spdif.h @@ -40,9 +40,9 @@ enum IEC61937DataType { IEC61937_DTS1 = 0x0B, ///< DTS type I (512 samples) IEC61937_DTS2 = 0x0C, ///< DTS type II (1024 samples) IEC61937_DTS3 = 0x0D, ///< DTS type III (2048 samples) - IEC61937_ATRAC = 0x0E, ///< Atrac data - IEC61937_ATRAC3 = 0x0F, ///< Atrac 3 data - IEC61937_ATRACX = 0x10, ///< Atrac 3 plus data + IEC61937_ATRAC = 0x0E, ///< ATRAC data + IEC61937_ATRAC3 = 0x0F, ///< ATRAC3 data + IEC61937_ATRACX = 0x10, ///< ATRAC3+ data IEC61937_DTSHD = 0x11, ///< DTS HD data IEC61937_WMAPRO = 0x12, ///< WMA 9 Professional data IEC61937_MPEG2_AAC_LSF_2048 = 0x13, ///< MPEG-2 AAC ADTS half-rate low sampling frequency |