Commit 6881b72f authored by Christophe Massiot's avatar Christophe Massiot

* modules/demux/ts.c: Removed an unneeded deselection of unwanted PMT PIDs,

   which caused problems in case an identical PID carried the PMTs of two
   programs, one selected and the other not.
parent eee921c0
......@@ -3028,11 +3028,6 @@ static void PATCallBack( demux_t *p_demux, dvbpsi_pat_t *p_pat )
if( stream_Control( p_demux->s, STREAM_CONTROL_ACCESS, ACCESS_SET_PRIVATE_ID_STATE, p_program->i_pid, VLC_TRUE ) )
p_sys->b_dvb_control = VLC_FALSE;
}
else
{
if( stream_Control( p_demux->s, STREAM_CONTROL_ACCESS, ACCESS_SET_PRIVATE_ID_STATE, p_program->i_pid, VLC_FALSE ) )
p_sys->b_dvb_control = VLC_FALSE;
}
}
}
}
......
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