Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
EIT: always parse events for 0x4e (now/next) - running flag
  • Loading branch information
perexg committed Nov 3, 2015
1 parent d01071f commit a3e787f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/epggrab/module/eit.c
Expand Up @@ -631,8 +631,9 @@ _eit_callback
/* Begin */
r = dvb_table_begin((mpegts_psi_table_t *)mt, ptr, len,
tableid, extraid, 11, &st, &sect, &last, &ver);
if (r != 1) return r;
if (st) {
if (r < 0) return r;
if (tableid != 0x4e && r != 1) return r;
if (st && r > 0) {
uint32_t mask;
int sa = seg & 0xF8;
int sb = 7 - (seg & 0x07);
Expand Down

0 comments on commit a3e787f

Please sign in to comment.