1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

remove arbitrary 4096 limit for probing

Originally committed as revision 11145 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2007-12-03 04:50:01 +00:00
parent 5110d151b6
commit 890d2799c1

View File

@ -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;