summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/mp3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mp3.c b/libavformat/mp3.c
index 74bd275077..39cb60d579 100644
--- a/libavformat/mp3.c
+++ b/libavformat/mp3.c
@@ -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;