mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 09:12:33 +00:00
avformat/avidec: optimize probe
about 2x as fast Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f7f4a90174
commit
0d7a14e236
@ -1863,8 +1863,8 @@ static int avi_probe(AVProbeData *p)
|
||||
|
||||
/* check file header */
|
||||
for (i = 0; avi_headers[i][0]; i++)
|
||||
if (!memcmp(p->buf, avi_headers[i], 4) &&
|
||||
!memcmp(p->buf + 8, avi_headers[i] + 4, 4))
|
||||
if (AV_RL32(p->buf ) == AV_RL32(avi_headers[i] ) &&
|
||||
AV_RL32(p->buf + 8) == AV_RL32(avi_headers[i] + 4))
|
||||
return AVPROBE_SCORE_MAX;
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user