Commit 166aaa2c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove annoying debug message

parent 35db6dd6
......@@ -201,8 +201,8 @@ static int Open ( vlc_object_t *p_this )
v, o, s fields are mandatory and in this order */
if( stream_Peek( p_demux->s, &p_peek, 7 ) < 7 ) return VLC_EGENERIC;
if( strncmp( (char*)p_peek, "v=0\r\n", 5 ) &&
strncmp( (char*)p_peek, "v=0\n", 4 ) &&
if( memcmp( (char*)p_peek, "v=0\r\n", 5 ) &&
memcmp( (char*)p_peek, "v=0\n", 4 ) &&
( p_peek[0] < 'a' || p_peek[0] > 'z' || p_peek[1] != '=' ) )
{
return VLC_EGENERIC;
......@@ -246,7 +246,7 @@ static int Open ( vlc_object_t *p_this )
}
if( strcasecmp( p_demux->psz_access, "sdp" ) &&
vlc_UrlIsNotEncoded( p_sys->psz_path ) )
vlc_UrlIsNotEncoded( p_sys->psz_path ) )
{
p_sys->psz_path = vlc_UrlEncode( p_sys->psz_path );
if( p_sys->psz_path == NULL )
......@@ -1265,8 +1265,6 @@ static void TaskInterrupt( void *p_private )
{
demux_t *p_demux = (demux_t*)p_private;
fprintf( stderr, "TaskInterrupt\n" );
p_demux->p_sys->i_no_data_ti++;
/* Avoid lock */
......
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