aboutsummaryrefslogtreecommitdiffstats
path: root/src/decode.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-06-07 20:47:00 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-06-07 20:47:00 +0000
commit1760433061c0d7e2bb1ac964a1a02ff868ad9b5b (patch)
tree13722941a0b7f23a939ea51b1c8a25380c1f2717 /src/decode.c
parent5b5dd126aa56f130e208c7cc781e9de34b675c53 (diff)
downloadmpd-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.c2
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));