avformat/mpegts: Check adaption field control in analyze() more instead of transport_error_indicator

transport_error_indicator is not required to be 0

Fixes probing
Fixes Ticket 4862

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2016-04-10 13:08:00 +02:00
parent 0c90b2e013
commit ee7a642b0e
1 changed files with 1 additions and 1 deletions

View File

@ -543,7 +543,7 @@ static int analyze(const uint8_t *buf, int size, int packet_size, int *index,
for (i = 0; i < size - 3; i++) { for (i = 0; i < size - 3; i++) {
if (buf[i] == 0x47 && if (buf[i] == 0x47 &&
(!probe || (!(buf[i + 1] & 0x80) && buf[i + 3] != 0x47))) { (!probe || (buf[i + 3] & 0x30))) {
int x = i % packet_size; int x = i % packet_size;
stat[x]++; stat[x]++;
stat_all++; stat_all++;