Commit f6287174 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Denote warnings in demuxer that can happen in normal situations

parent 6a0131da
......@@ -149,7 +149,7 @@ static int Open( vlc_object_t *p_this )
if( Validate( p_demux, psz_ext ) )
{
msg_Warn( p_demux, "MOD validation failed (ext=%s)", psz_ext ? psz_ext : "");
msg_Dbg( p_demux, "MOD validation failed (ext=%s)", psz_ext ? psz_ext : "");
return VLC_EGENERIC;
}
}
......
......@@ -555,7 +555,7 @@ static int DetectPacketSize( demux_t *p_demux )
msg_Warn( p_demux, "this does not look like a TS stream, continuing" );
return TS_PACKET_SIZE_188;
}
msg_Warn( p_demux, "TS module discarded (lost sync)" );
msg_Dbg( p_demux, "TS module discarded (lost sync)" );
return -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