allow packets with non-zero PES_scrambling_control

Originally committed as revision 5499 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Måns Rullgård 19 years ago
parent aa1c1c615a
commit d8bee8dd1c
  1. 2
      libavformat/mpeg.c

@ -1490,10 +1490,12 @@ static int mpegps_read_pes_header(AVFormatContext *s,
len -= 9; len -= 9;
} else if ((c & 0xc0) == 0x80) { } else if ((c & 0xc0) == 0x80) {
/* mpeg 2 PES */ /* mpeg 2 PES */
#if 0 /* some streams have this field set for no apparent reason */
if ((c & 0x30) != 0) { if ((c & 0x30) != 0) {
/* Encrypted multiplex not handled */ /* Encrypted multiplex not handled */
goto redo; goto redo;
} }
#endif
flags = get_byte(&s->pb); flags = get_byte(&s->pb);
header_len = get_byte(&s->pb); header_len = get_byte(&s->pb);
len -= 2; len -= 2;

Loading…
Cancel
Save