Browse Source

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

Fixes ticket #6957.
tags/n4.0
Carl Eugen Hoyos 8 years ago
parent
commit
251f0bcb7b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/rawdec.c

+ 1
- 1
libavformat/rawdec.c 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;


Loading…
Cancel
Save