Commit 79a346b0 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Denote warnings in demuxer that can happen in normal situations

(cherry picked from commit f6287174c439ce69f3abc4d3705e5fd303045421)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 955adb07
...@@ -149,7 +149,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -149,7 +149,7 @@ static int Open( vlc_object_t *p_this )
if( Validate( p_demux, psz_ext ) ) 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; return VLC_EGENERIC;
} }
} }
......
...@@ -555,7 +555,7 @@ static int DetectPacketSize( demux_t *p_demux ) ...@@ -555,7 +555,7 @@ static int DetectPacketSize( demux_t *p_demux )
msg_Warn( p_demux, "this does not look like a TS stream, continuing" ); msg_Warn( p_demux, "this does not look like a TS stream, continuing" );
return TS_PACKET_SIZE_188; 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; 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