Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mpegts service: Add Ignore EPG (EIT) checkbox, fixes #2410
  • Loading branch information
perexg committed Oct 27, 2014
1 parent 32b5173 commit 466d27b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/epggrab/module/eit.c
Expand Up @@ -633,6 +633,9 @@ _eit_callback
if (!LIST_FIRST(&svc->s_channels))
goto done;

if (svc->s_dvb_ignore_eit)
goto done;

/* Process events */
save = resched = 0;
len -= 11;
Expand Down
1 change: 1 addition & 0 deletions src/input/mpegts.h
Expand Up @@ -432,6 +432,7 @@ struct mpegts_service
char *s_dvb_provider;
char *s_dvb_cridauth;
uint16_t s_dvb_servicetype;
int s_dvb_ignore_eit;
char *s_dvb_charset;
uint16_t s_dvb_prefcapid;
int s_dvb_prefcapid_lock;
Expand Down
7 changes: 7 additions & 0 deletions src/input/mpegts/mpegts_service.c
Expand Up @@ -145,6 +145,13 @@ const idclass_t mpegts_service_class =
.opts = PO_RDONLY | PO_HIDDEN,
.off = offsetof(mpegts_service_t, s_dvb_servicetype),
},
{
.type = PT_BOOL,
.id = "dvb_ignore_eit",
.name = "Ignore EPG (EIT)",
.off = offsetof(mpegts_service_t, s_dvb_ignore_eit),
.opts = PO_ADVANCED,
},
{
.type = PT_STR,
.id = "charset",
Expand Down

1 comment on commit 466d27b

@nurtext
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see lots of fixes in the last commits. Superb work! Has someone planned a feature freeze yet to release a stable 4.0 or at least 3.9 build? Would like to see one coming! 😊

Please sign in to comment.