Commit 6191f3b6 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Fix misc warnings in demuxers

parent e1430f59
......@@ -296,6 +296,7 @@ static int DemuxOpen( vlc_object_t * p_this )
*****************************************************************************/
static void DemuxClose( vlc_object_t *p_this )
{
VLC_UNUSED( p_this );
return;
}
......@@ -362,5 +363,7 @@ static int Demux ( demux_t *p_demux )
static int Control( demux_t *p_demux, int i_query, va_list args )
{
VLC_UNUSED( p_demux ); VLC_UNUSED( i_query ); VLC_UNUSED( args );
//FIXME
return VLC_EGENERIC;
}
......@@ -378,7 +378,7 @@ static void ParsePES( demux_t *p_demux )
uint8_t hdr[30];
int i_pes_size;
int i_skip;
unsigned i_skip;
mtime_t i_dts = -1;
mtime_t i_pts = -1;
......
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