diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-06-07 20:47:00 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-06-07 20:47:00 +0000 |
commit | 1760433061c0d7e2bb1ac964a1a02ff868ad9b5b (patch) | |
tree | 13722941a0b7f23a939ea51b1c8a25380c1f2717 /src/decode.c | |
parent | 5b5dd126aa56f130e208c7cc781e9de34b675c53 (diff) | |
download | mpd-1760433061c0d7e2bb1ac964a1a02ff868ad9b5b.tar.gz mpd-1760433061c0d7e2bb1ac964a1a02ff868ad9b5b.tar.xz mpd-1760433061c0d7e2bb1ac964a1a02ff868ad9b5b.zip |
remove metadata debugging code
git-svn-id: https://svn.musicpd.org/mpd/trunk@1378 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/decode.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/decode.c b/src/decode.c index 1ed2c00ee..267616f91 100644 --- a/src/decode.c +++ b/src/decode.c @@ -395,7 +395,6 @@ void handleMetadata(OutputBuffer * cb, PlayerControl * pc, int * previous, int meta = cb->metaChunk[cb->begin]; if( meta != *previous ) { if( meta >= 0 && cb->metaChunkSet[meta]) { - printf("METADATA!, copying it.\n"); memcpy(currentChunk, cb->metadataChunks+meta, sizeof(MetadataChunk)); @@ -408,7 +407,6 @@ void handleMetadata(OutputBuffer * cb, PlayerControl * pc, int * previous, if(!(*currentChunkSent) && pc->metadataState == PLAYER_METADATA_STATE_WRITE) { - printf("copy metadata to player\n"); *currentChunkSent = 1; memcpy(&(pc->metadataChunk), currentChunk, sizeof(MetadataChunk)); |