Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix 'EIT: Add 'EIT - skip TSID check' per mux settings', fixes #2858
  • Loading branch information
perexg committed Sep 21, 2015
1 parent 19ab925 commit 62a795e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/epggrab/module/eit.c
Expand Up @@ -641,11 +641,10 @@ _eit_callback
mm = mpegts_network_find_mux(mm->mm_network, onid, tsid);

} else {
if (mm->mm_tsid != tsid ||
mm->mm_onid != onid) {
if ((mm->mm_tsid != tsid || mm->mm_onid != onid) &&
!mm->mm_eit_tsid_nocheck) {
if (mm->mm_onid != MPEGTS_ONID_NONE &&
mm->mm_tsid != MPEGTS_TSID_NONE &&
!mm->mm_eit_tsid_nocheck)
mm->mm_tsid != MPEGTS_TSID_NONE)
tvhtrace("eit",
"invalid tsid found tid 0x%02X, onid:tsid %d:%d != %d:%d",
tableid, mm->mm_onid, mm->mm_tsid, onid, tsid);
Expand Down

0 comments on commit 62a795e

Please sign in to comment.