lavf/img2dec: Skip DQT segment when auto-detecting jpg.

DQT segments may contain 0xFFs which break auto-detection.
pull/230/head
Carl Eugen Hoyos 9 years ago
parent cef5bc0e6e
commit 91842005fe
  1. 1
      libavformat/img2dec.c

@ -726,6 +726,7 @@ static int jpeg_probe(AVProbeData *p)
return 0;
state = EOI;
break;
case DQT:
case APP0:
case APP1:
case APP2:

Loading…
Cancel
Save