Commit c5690de2 authored by Laurent Aimar's avatar Laurent Aimar Committed by Jean-Baptiste Kempf

Do not filter out program/epg at the TS demuxer level, part 2.

(cherry picked from commit d4663a4d65b6323aa3b5781dd99b404623d19624)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 80649c2c
...@@ -3993,12 +3993,6 @@ static void PMTCallBack( demux_t *p_demux, dvbpsi_pmt_t *p_pmt ) ...@@ -3993,12 +3993,6 @@ static void PMTCallBack( demux_t *p_demux, dvbpsi_pmt_t *p_pmt )
/* Set demux filter */ /* Set demux filter */
SetPIDFilter( p_demux, prg->i_pid_pcr, true ); SetPIDFilter( p_demux, prg->i_pid_pcr, true );
} }
else
{
msg_Warn( p_demux, "skipping program (not selected)" );
dvbpsi_DeletePMT(p_pmt);
return;
}
/* Parse descriptor */ /* Parse descriptor */
for( p_dr = p_pmt->p_first_descriptor; p_dr != NULL; p_dr = p_dr->p_next ) for( p_dr = p_pmt->p_first_descriptor; p_dr != NULL; p_dr = p_dr->p_next )
......
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