remove debug messages along the success path

parent 841903a6
...@@ -212,7 +212,6 @@ static vlc_bool_t CheckMimeHeader( demux_t *p_demux, int *p_header_size ) ...@@ -212,7 +212,6 @@ static vlc_bool_t CheckMimeHeader( demux_t *p_demux, int *p_header_size )
psz_line = GetLine( p_demux, &i_pos ); psz_line = GetLine( p_demux, &i_pos );
while( psz_line && *psz_line ) while( psz_line && *psz_line )
{ {
msg_Dbg( p_demux, "%s", psz_line );
if( !strncasecmp( psz_line, "Content-Type:", 13 ) ) if( !strncasecmp( psz_line, "Content-Type:", 13 ) )
{ {
p_ch = psz_line + 13; p_ch = psz_line + 13;
...@@ -436,17 +435,14 @@ static int MimeDemux( demux_t *p_demux ) ...@@ -436,17 +435,14 @@ static int MimeDemux( demux_t *p_demux )
strlen( p_sys->psz_separator ) ) ) strlen( p_sys->psz_separator ) ) )
{ {
b_done = VLC_TRUE; b_done = VLC_TRUE;
msg_Dbg( p_demux, "MIME boundary detected at %d", i );
} }
else else
{ {
i++; i++;
i_size++; i_size++;
msg_Dbg( p_demux, "not done" );
} }
} }
msg_Dbg( p_demux, "i is %d", i );
if( !b_match ) if( !b_match )
{ {
msg_Err( p_demux, "Discard non-JPEG part" ); msg_Err( p_demux, "Discard non-JPEG part" );
......
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