Browse Source

10l typo

Originally committed as revision 6240 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 19 years ago
parent
commit
d0702de9af
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/mp3.c

+ 1
- 1
libavformat/mp3.c View File

@@ -263,7 +263,7 @@ static int mp3_read_probe(AVProbeData *p)
for(; buf < end; buf++) {
buf2 = buf;

for(frames = 0; buf < end; frames++) {
for(frames = 0; buf2 < end; frames++) {
header = (buf2[0] << 24) | (buf2[1] << 16) | (buf2[2] << 8) | buf2[3];
fsize = mpa_decode_header(&avctx, header);
if(fsize < 0)


Loading…
Cancel
Save