diff options
Diffstat (limited to '')
-rw-r--r-- | src/audioOutput_shout.c | 2 | ||||
-rw-r--r-- | src/decode.c | 10 |
2 files changed, 8 insertions, 4 deletions
diff --git a/src/audioOutput_shout.c b/src/audioOutput_shout.c index 514fbbe68..777fe9c41 100644 --- a/src/audioOutput_shout.c +++ b/src/audioOutput_shout.c @@ -405,8 +405,6 @@ static void shout_sendMetadata(AudioOutput * audioOutput, MpdTag * tag) { } - DEBUG("shout: got tag\n"); - vorbis_analysis_headerout(&(sd->vd), &(sd->vc), &(sd->header_main), &(sd->header_comments), &(sd->header_codebooks)); diff --git a/src/decode.c b/src/decode.c index 55252c46e..a02dfe063 100644 --- a/src/decode.c +++ b/src/decode.c @@ -159,9 +159,7 @@ int waitOnDecode(PlayerControl * pc, DecoderControl * dc, OutputBuffer * cb, if((tag = metadataChunkToMpdTagDup(&(pc->fileMetadataChunk)))) { sendMetdataToAudioDevice(tag); - printMpdTag(stdout, tag); freeMpdTag(tag); - tag = NULL; } pc->totalTime = pc->fileTime; @@ -428,7 +426,15 @@ void handleMetadata(OutputBuffer * cb, PlayerControl * pc, int * previous, if(!(*currentChunkSent) && pc->metadataState == PLAYER_METADATA_STATE_WRITE) { + MpdTag * tag = NULL; + *currentChunkSent = 1; + + if((tag = metadataChunkToMpdTagDup(currentChunk))) { + sendMetdataToAudioDevice(tag); + freeMpdTag(tag); + } + memcpy(&(pc->metadataChunk), currentChunk, sizeof(MetadataChunk)); pc->metadataState = PLAYER_METADATA_STATE_READ; |