From ae44b7dae5878a1484243b89d14317d2dab5fdde Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Mon, 7 Jun 2004 12:11:57 +0000 Subject: potential bugfixes for handling metadata in player/decoder git-svn-id: https://svn.musicpd.org/mpd/trunk@1369 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/outputBuffer.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'src/outputBuffer.c') diff --git a/src/outputBuffer.c b/src/outputBuffer.c index a62d97778..fd8d5b83f 100644 --- a/src/outputBuffer.c +++ b/src/outputBuffer.c @@ -38,15 +38,20 @@ void clearAllMetaChunkSets(OutputBuffer * cb) { } void clearOutputBuffer(OutputBuffer * cb) { + int currentSet = 1; + currentChunk = -1; cb->end = cb->begin; cb->wrap = 0; - if(cb->acceptMetadata) { - clearAllMetaChunkSets(cb); - if(sendMetaChunk == 0 && currentMetaChunk >= 0) { - cb->metaChunkSet[currentChunk] = 1; - } + /* be sure to reset metaChunkSets cause we are skipping over audio + * audio chunks, and thus skipping over metadata */ + if(sendMetaChunk == 0 && currentMetaChunk >= 0) { + currentSet = cb->metaChunkSet[currentChunk]; + } + clearAllMetaChunkSets(cb); + if(sendMetaChunk == 0 && currentMetaChunk >= 0) { + cb->metaChunkSet[currentChunk] = currentSet; } } -- cgit v1.2.3