This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
remove arbitrary 4096 limit for probing
Originally committed as revision 11145 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer
18 years ago
parent
5110d151b6
commit
890d2799c1
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/mp3.c
+ 1
- 1
libavformat/mp3.c
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;
Write
Preview
Loading…
Cancel
Save