[FFmpeg-cvslog] r11145 - trunk/libavformat/mp3.c
michael
subversion
Mon Dec 3 05:50:01 CET 2007
Author: michael
Date: Mon Dec 3 05:50:01 2007
New Revision: 11145
Log:
remove arbitrary 4096 limit for probing
Modified:
trunk/libavformat/mp3.c
Modified: trunk/libavformat/mp3.c
==============================================================================
--- trunk/libavformat/mp3.c (original)
+++ trunk/libavformat/mp3.c Mon Dec 3 05:50:01 2007
@@ -403,7 +403,7 @@ static int mp3_read_probe(AVProbeData *p
max_frames = 0;
buf = p->buf;
- end = buf + FFMIN(4096, p->buf_size - sizeof(uint32_t));
+ end = buf + p->buf_size - sizeof(uint32_t);
for(; buf < end; buf++) {
buf2 = buf;
More information about the ffmpeg-cvslog
mailing list