Commit 7e78fb45 authored by Warren Dukes's avatar Warren Dukes

remove some debug code

git-svn-id: https://svn.musicpd.org/mpd/trunk@1282 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 16da97e4
......@@ -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)) {
......
......@@ -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;
......
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