Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dvb_psi_lib: remove the wrong pmt hack - causes scan FAIL issues in t…
…his form
  • Loading branch information
perexg committed Apr 9, 2015
1 parent 995aaf8 commit e138492
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/input/mpegts/dvb_psi_lib.c
Expand Up @@ -298,13 +298,15 @@ dvb_table_begin
tvhtrace(mt->mt_name, " section %d last %d ver %d (ver %d st %d incomp %d comp %d)",
*sect, *last, *ver, st->version, st->complete, mt->mt_incomplete, mt->mt_complete);

#if 0 // FIXME, cannot be enabled in this form
/* Ignore previous version */
/* This check is for the broken PMT tables where:
* last 0 version 21 = PCR + Audio PID 0x0044
* last 0 version 22 = Audio PID 0x0044, PCR + Video PID 0x0045
*/
if (*last == 0 && st->version - 1 == *ver)
return -1;
#endif

/* New version */
if (st->version != *ver) {
Expand Down

0 comments on commit e138492

Please sign in to comment.