Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dvbpsi: parse LCNs for 0x83 tag when priv value is 0x3200,0x3201, fix…
…es #3398
  • Loading branch information
perexg committed Dec 8, 2015
1 parent 3ae4164 commit 329ff4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/dvb_psi.c
Expand Up @@ -1218,7 +1218,7 @@ dvb_nit_mux
break;
case 0x83:
if (priv == 0 || priv == 0x28 || priv == 0x29 || priv == 0xa5 ||
priv == 0x233A) goto lcn;
priv == 0x233A || priv == 0x3200 || priv == 0x3201) goto lcn;
break;
case 0x86:
if (priv == 0) goto lcn;
Expand Down

0 comments on commit 329ff4b

Please sign in to comment.