lavf/rawdec: Also probe the last byte of mjpeg streams.

Fixes ticket #6957.
This commit is contained in:
Carl Eugen Hoyos 2018-01-20 16:07:25 +01:00
parent 0b9b7f0b46
commit 251f0bcb7b

View File

@ -130,7 +130,7 @@ static int mjpeg_probe(AVProbeData *p)
int nb_invalid = 0;
int nb_frames = 0;
for (i=0; i<p->buf_size-2; i++) {
for (i = 0; i < p->buf_size - 1; i++) {
int c;
if (p->buf[i] != 0xFF)
continue;