Commit 10570f22 authored by michael's avatar michael

remove arbitrary 4096 limit for probing


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11145 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1b588ca5
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment