Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb: allow 14 PIDs at minimum, fixes #4050
  • Loading branch information
perexg committed Nov 24, 2016
1 parent 38c9e89 commit 89d14dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/linuxdvb/linuxdvb_frontend.c
Expand Up @@ -1146,7 +1146,7 @@ linuxdvb_update_pids ( linuxdvb_frontend_t *lfe, const char *name,
int pids_size )
{
mpegts_apids_t wpid, padd, pdel;
int i, max = MAX(16, lfe->lfe_pids_max);
int i, max = MAX(14, lfe->lfe_pids_max);

pthread_mutex_lock(&lfe->lfe_dvr_lock);

Expand Down

0 comments on commit 89d14dd

Please sign in to comment.