mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-26 17:23:19 +00:00
rawdec: fix mjpeg probing buffer size check
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
bf51fcd304
commit
4c6beaed92
@ -191,7 +191,7 @@ static int mjpeg_probe(AVProbeData *p)
|
|||||||
static const char ct_jpeg[] = "\r\nContent-Type: image/jpeg\r\n";
|
static const char ct_jpeg[] = "\r\nContent-Type: image/jpeg\r\n";
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i=0; i<FFMIN(p->buf_size - sizeof(ct_jpeg), 100); i++)
|
for (i=0; i<FFMIN(p->buf_size - (int)sizeof(ct_jpeg), 100); i++)
|
||||||
if (!memcmp(p->buf + i, ct_jpeg, sizeof(ct_jpeg) - 1))
|
if (!memcmp(p->buf + i, ct_jpeg, sizeof(ct_jpeg) - 1))
|
||||||
return AVPROBE_SCORE_EXTENSION;
|
return AVPROBE_SCORE_EXTENSION;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user