Commit cf820788 authored by Francois Cartegnie's avatar Francois Cartegnie

demux: ts: reorder switch cases

parent d5214b68
......@@ -4215,15 +4215,17 @@ static void PMTCallBack( void *data, dvbpsi_pmt_t *p_pmt )
{
switch( p_es->i_type )
{
case 0x06:
/* Handle PES private data */
PMTSetupEs0x06( p_demux, pid, p_es );
break;
/* All other private or reserved types */
case 0x0f:
case 0x10:
case 0x11:
case 0x12:
case 0x0f:
PMTSetupEsISO14496( p_demux, pid, prg, p_es );
break;
case 0x06:
PMTSetupEs0x06( p_demux, pid, p_es );
break;
case 0x83:
/* LPCM (audio) */
PMTSetupEs0x83( p_pmt, pid );
......
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