Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mpegts input: Fix ommited code change for changed MIN_TS_SYN
  • Loading branch information
perexg committed Mar 19, 2015
1 parent 9c8dde3 commit 35029f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/mpegts_input.c
Expand Up @@ -863,7 +863,7 @@ mpegts_input_recv_packets
mi->mi_last_dispatch = dispatch_clock;

/* Check for sync */
while ( (len >= (MIN_TS_SYN * 188)) &&
while ( (len >= MIN_TS_SYN) &&
((len2 = ts_sync_count(tsb, len)) < MIN_TS_SYN) ) {
mmi->mmi_stats.unc++;
--len;
Expand Down

0 comments on commit 35029f1

Please sign in to comment.