summaryrefslogtreecommitdiff
path: root/libavformat/omadec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-09-03 15:05:00 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-09-03 15:05:18 +0200
commit4cfe3b7405431060900d8a05402c2f14ec99f034 (patch)
tree3049db3ef9739aacbc69554cc17ccf309591b5be /libavformat/omadec.c
parent50fd98b7ac4c410f4413d382eecb415011b37920 (diff)
parent7df9e693a34c84c698da60426c78140c950f95ed (diff)
downloadffmpeg-4cfe3b7405431060900d8a05402c2f14ec99f034.tar.gz
Merge commit '7df9e693a34c84c698da60426c78140c950f95ed'
* commit '7df9e693a34c84c698da60426c78140c950f95ed': cosmetics: Fix ATRAC codec name spelling Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/omadec.c')
-rw-r--r--libavformat/omadec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/omadec.c b/libavformat/omadec.c
index d05795494c..fd7eb0bf7f 100644
--- a/libavformat/omadec.c
+++ b/libavformat/omadec.c
@@ -347,7 +347,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);