summaryrefslogtreecommitdiff
path: root/libavformat/wavdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-04 10:17:52 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-04 10:17:52 +0200
commit0104570fb65bef9986a630e0188b3756295693a9 (patch)
treed0612ebe9b9cdf7fcf7da0c6ced55c0609887e05 /libavformat/wavdec.c
parent711c8ee71d719d6d89a523618f078bb17dbe1abf (diff)
parenta5f8873620ce502d37d0cc3ef93ada2ea8fb8de7 (diff)
Merge commit 'a5f8873620ce502d37d0cc3ef93ada2ea8fb8de7'
* commit 'a5f8873620ce502d37d0cc3ef93ada2ea8fb8de7': silly typo fixes Conflicts: doc/protocols.texi libavcodec/aacpsy.c libavformat/utils.c tools/patcheck Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/wavdec.c')
-rw-r--r--libavformat/wavdec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c
index 5e9f75e99a..b2d28b8c87 100644
--- a/libavformat/wavdec.c
+++ b/libavformat/wavdec.c
@@ -85,9 +85,9 @@ static int wav_probe(AVProbeData *p)
return 0;
if (!memcmp(p->buf + 8, "WAVE", 4)) {
if (!memcmp(p->buf, "RIFF", 4))
- /* Since ACT demuxer has standard WAV header at top of it's
- * own, returning score is decreased to avoid probe conflict
- * between ACT and WAV. */
+ /* Since the ACT demuxer has a standard WAV header at the top of
+ * its own, the returned score is decreased to avoid a probe
+ * conflict between ACT and WAV. */
return AVPROBE_SCORE_MAX - 1;
else if (!memcmp(p->buf, "RF64", 4) &&
!memcmp(p->buf + 12, "ds64", 4))