summaryrefslogtreecommitdiff
path: root/libavformat/wavdec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-08-21 01:02:13 +0200
committerDiego Biurrun <diego@biurrun.de>2013-05-03 18:26:12 +0200
commita5f8873620ce502d37d0cc3ef93ada2ea8fb8de7 (patch)
treef04a20b097c813143cf259c8001cc707fc6024d9 /libavformat/wavdec.c
parent4a7af92cc80ced8498626401ed21f25ffe6740c8 (diff)
silly typo fixes
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 1b427117ba..07df9232d7 100644
--- a/libavformat/wavdec.c
+++ b/libavformat/wavdec.c
@@ -73,9 +73,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))