Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dvb psi: add Freeview DVB-T private dtag to parse LCN (0x83), fixes #…
…2583
  • Loading branch information
perexg committed Jan 4, 2015
1 parent c051d0b commit 294afe5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/input/mpegts/dvb_psi.c
Expand Up @@ -1491,7 +1491,8 @@ dvb_nit_callback
case 0x82:
if (priv == 0) goto lcn;
case 0x83:
if (priv == 0 || priv == 0x28 || priv == 0x29 || priv == 0xa5) goto lcn;
if (priv == 0 || priv == 0x28 || priv == 0x29 || priv == 0xa5 ||
priv == 0x233A) goto lcn;
case 0x86:
if (priv == 0) goto lcn;
case 0x93:
Expand Down

0 comments on commit 294afe5

Please sign in to comment.