]> git.sesse.net Git - vlc/commitdiff
http: removed useless debug.
authorLaurent Aimar <fenrir@videolan.org>
Sun, 9 Oct 2005 17:02:59 +0000 (17:02 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Sun, 9 Oct 2005 17:02:59 +0000 (17:02 +0000)
modules/access/http.c

index b1dfffa8c5e6b185183da796d4c8090cf47a695e..1f0ce83ebe9a7551abd17c895e7a162f3b985909 100644 (file)
@@ -584,7 +584,7 @@ static int ReadICYMeta( access_t *p_access )
         return VLC_SUCCESS;
 
     i_read = buffer << 4;
-    msg_Dbg( p_access, "ICY meta size=%u", i_read);
+    /* msg_Dbg( p_access, "ICY meta size=%u", i_read); */
 
     psz_meta = malloc( i_read + 1 );
     if( net_Read( p_access, p_sys->fd, p_sys->p_vs,
@@ -593,7 +593,7 @@ static int ReadICYMeta( access_t *p_access )
 
     psz_meta[i_read] = '\0'; /* Just in case */
 
-    msg_Dbg( p_access, "icy-meta=%s", psz_meta );
+    /* msg_Dbg( p_access, "icy-meta=%s", psz_meta ); */
 
     /* Now parse the meta */
     /* Look for StreamTitle= */