summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-09-12 14:16:48 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-09-12 14:16:48 +0000
commitd0702de9afcde4e0fda8f00e270ee2f5b4b50412 (patch)
tree7aef6b7085f0f52dcee51d5eb00a3503b9ff65ec /libavformat
parentdc8cd49f1a93a1ff71b3eab2827c72d7ff7eb980 (diff)
10l typo
Originally committed as revision 6240 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mp3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mp3.c b/libavformat/mp3.c
index 1aa0514493..04ff0b2ba3 100644
--- a/libavformat/mp3.c
+++ b/libavformat/mp3.c
@@ -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)