From e20b71ed63314d68407b5583e67f2617f916a9e4 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 12 Apr 2008 04:18:12 +0000 Subject: remove buffered_chunks, use cb->size Second patch to make OutputBuffer self-contained: since OutputBuffer now knows its own size, we do not need the global variable "buffered_chunks" anymore. git-svn-id: https://svn.musicpd.org/mpd/trunk@7311 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/playerData.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/playerData.c') diff --git a/src/playerData.c b/src/playerData.c index 917c2a05b..91a7ef661 100644 --- a/src/playerData.c +++ b/src/playerData.c @@ -23,7 +23,6 @@ #include "os_compat.h" unsigned int buffered_before_play; -unsigned int buffered_chunks; #define DEFAULT_BUFFER_SIZE 2048 #define DEFAULT_BUFFER_BEFORE_PLAY 10 @@ -36,6 +35,7 @@ void initPlayerData(void) char *test; int crossfade = 0; size_t bufferSize = DEFAULT_BUFFER_SIZE; + unsigned int buffered_chunks; ConfigParam *param; size_t device_array_size = audio_device_count() * sizeof(mpd_sint8); -- cgit v1.2.3