mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
allocate 32 extra bytes at the end of the probe buffer and remove most probe buf_size checks
Originally committed as revision 8677 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -31,8 +31,6 @@ static int flv_probe(AVProbeData *p)
|
||||
{
|
||||
const uint8_t *d;
|
||||
|
||||
if (p->buf_size < 6)
|
||||
return 0;
|
||||
d = p->buf;
|
||||
if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V' && d[3] < 5 && d[5]==0) {
|
||||
return AVPROBE_SCORE_MAX;
|
||||
|
Reference in New Issue
Block a user