aboutsummaryrefslogtreecommitdiff
path: root/src/buffer.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2010-05-02 15:16:59 +0200
committerMax Kellermann <max@duempel.org>2010-05-02 17:46:06 +0200
commitd093fb2441ee99722670f0401215031fc324bb31 (patch)
tree44c2747cd2120c1d9330eb7df59280fb5779e731 /src/buffer.c
parent0140804ef948b3c919e2e0c69dd175f443574fb9 (diff)
chunk: added attribute "other"
Preparation for cross-fading support in the output thread.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 27a0bf05..bee87170 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -118,6 +118,9 @@ music_buffer_return(struct music_buffer *buffer, struct music_chunk *chunk)
assert(buffer != NULL);
assert(chunk != NULL);
+ if (chunk->other != NULL)
+ music_buffer_return(buffer, chunk->other);
+
g_mutex_lock(buffer->mutex);
music_chunk_free(chunk);