Browse Source

demux: remove `break` after `return`

Signed-off-by: Eric Engestrom <eric@engestrom.ch>
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
pull/43/head
Eric Engestrom 11 years ago
committed by Rémi Denis-Courmont
parent
commit
b248a211ff
  1. 1
      modules/demux/mpeg/ts_psi.c
  2. 1
      modules/demux/playlist/podcast.c
  3. 1
      modules/demux/real.c

1
modules/demux/mpeg/ts_psi.c

@ -1074,7 +1074,6 @@ static bool PMTSetupEsHDMV( demux_t *p_demux, ts_pes_es_t *p_es,
msg_Info( p_demux, "HDMV registration not implemented for pid 0x%x type 0x%x",
p_dvbpsies->i_pid, p_dvbpsies->i_type );
return false;
break;
}
return true;
}

1
modules/demux/playlist/podcast.c

@ -355,7 +355,6 @@ static mtime_t strTimeToMTime( const char *psz )
return (mtime_t)( ( h*60 + m )*60 + s ) * 1000000;
case 2:
return (mtime_t)( h*60 + m ) * 1000000;
break;
default:
return -1;
}

1
modules/demux/real.c

@ -1645,7 +1645,6 @@ static int CodecAudioParse( demux_t *p_demux, int i_tk_id, const uint8_t *p_data
(char*)&fmt.i_codec );
es_format_Clean( &fmt );
return VLC_EGENERIC;
break;
}
msg_Dbg( p_demux, " - extra data=%d", fmt.i_extra );

Loading…
Cancel
Save