remove some debug code

git-svn-id: https://svn.musicpd.org/mpd/trunk@1282 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Warren Dukes 2004-06-01 12:53:25 +00:00
parent 16da97e4c8
commit 7e78fb455c
2 changed files with 0 additions and 7 deletions

View File

@ -261,18 +261,14 @@ int decodeNextFrameHeader(mp3DecodeData * data, MpdTag ** tag) {
(data->stream).bufend-
(data->stream).this_frame);
printf("HERE 1\n");
if(tagsize>0) {
printf("HERE 1-1\n");
if(tag) *tag =mp3_parseId3Tag(data, tagsize);
else {
mad_stream_skip(&(data->stream),
tagsize);
}
printf("HERE 1-2\n");
return DECODE_CONT;
}
printf("HERE 2\n");
}
#endif
if(MAD_RECOVERABLE((data->stream).error)) {

View File

@ -376,7 +376,6 @@ static int getHTTPHello(InputStream * inStream) {
while(*(incr+cur) == ' ') incr++;
inStream->metaTitle = strdup(cur+incr);
*temp = '\r';
DEBUG("stream icy-name: %s\n", inStream->metaTitle);
}
else if(0 == strncmp(cur, "\r\nx-audiocast-name:", 19)) {
int incr = 19;
@ -387,8 +386,6 @@ static int getHTTPHello(InputStream * inStream) {
while(*(incr+cur) == ' ') incr++;
inStream->metaTitle = strdup(cur+incr);
*temp = '\r';
DEBUG("stream audiocast-name: %s\n",
inStream->metaTitle);
}
else if(0 == strncmp(cur, "\r\nContent-Type:", 15)) {
int incr = 15;