summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2007-05-06 18:23:28 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2007-05-06 18:23:28 +0000
commit89ecc26188855c65245d4cc6c6b58e5d3c22edb6 (patch)
treee28e18005847ee09695e4db0ae7bc4c263036e82
parentbeac8235b92cdd322266e1709fbfe6f9e945e031 (diff)
Fix two small typos in comment
Originally committed as revision 8920 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/mp3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mp3.c b/libavformat/mp3.c
index ff736118ae..424d58896a 100644
--- a/libavformat/mp3.c
+++ b/libavformat/mp3.c
@@ -253,7 +253,7 @@ static int mp3_read_probe(AVProbeData *p)
AVCodecContext avctx;
if(id3_match(p->buf))
- return AVPROBE_SCORE_MAX/2+1; // this must be less then mpeg-ps because some retards put id3 tage before mpeg-ps files
+ return AVPROBE_SCORE_MAX/2+1; // this must be less than mpeg-ps because some retards put id3 tags before mpeg-ps files
max_frames = 0;
buf = p->buf;