comparison mp3.c @ 2070:a3fe42b9f15a libavformat

Fix two small typos in comment
author reimar
date Sun, 06 May 2007 18:23:28 +0000
parents a3e79d6e4e3c
children 34440139b3a7
comparison
equal deleted inserted replaced
2069:42d459116315 2070:a3fe42b9f15a
251 uint32_t header; 251 uint32_t header;
252 uint8_t *buf, *buf2, *end; 252 uint8_t *buf, *buf2, *end;
253 AVCodecContext avctx; 253 AVCodecContext avctx;
254 254
255 if(id3_match(p->buf)) 255 if(id3_match(p->buf))
256 return AVPROBE_SCORE_MAX/2+1; // this must be less then mpeg-ps because some retards put id3 tage before mpeg-ps files 256 return AVPROBE_SCORE_MAX/2+1; // this must be less than mpeg-ps because some retards put id3 tags before mpeg-ps files
257 257
258 max_frames = 0; 258 max_frames = 0;
259 buf = p->buf; 259 buf = p->buf;
260 end = buf + FFMIN(4096, p->buf_size - sizeof(uint32_t)); 260 end = buf + FFMIN(4096, p->buf_size - sizeof(uint32_t));
261 261