diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-21 01:02:13 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-05-03 18:26:12 +0200 |
commit | a5f8873620ce502d37d0cc3ef93ada2ea8fb8de7 (patch) | |
tree | f04a20b097c813143cf259c8001cc707fc6024d9 /libavformat/wavdec.c | |
parent | 4a7af92cc80ced8498626401ed21f25ffe6740c8 (diff) | |
download | ffmpeg-a5f8873620ce502d37d0cc3ef93ada2ea8fb8de7.tar.gz |
silly typo fixes
Diffstat (limited to 'libavformat/wavdec.c')
-rw-r--r-- | libavformat/wavdec.c | 6 |
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)) |