Commit 57393efc authored by Christophe Massiot's avatar Christophe Massiot

* src/dvbpsi.c: Do not check CRC of stuffing table, as pointed out by Marian Ďurkovič.

parent 1f75b838
......@@ -290,7 +290,7 @@ void dvbpsi_PushPacket(dvbpsi_handle h_dvbpsi, uint8_t* p_data)
if(p_section->b_syntax_indicator)
p_section->p_payload_end -= 4;
if(dvbpsi_ValidPSISection(p_section))
if(p_section->p_data[0] != 0x72 && dvbpsi_ValidPSISection(p_section))
{
/* PSI section is valid */
p_section->i_table_id = p_section->p_data[0];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment