remove some debug code
git-svn-id: https://svn.musicpd.org/mpd/trunk@1282 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
parent
16da97e4c8
commit
7e78fb455c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user