aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/outputBuffer.h3
-rw-r--r--src/playerData.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/src/outputBuffer.h b/src/outputBuffer.h
index f2a1c8734..b4d96acf2 100644
--- a/src/outputBuffer.h
+++ b/src/outputBuffer.h
@@ -29,6 +29,9 @@
#define OUTPUT_BUFFER_DC_STOP -1
#define OUTPUT_BUFFER_DC_SEEK -2
+/* pick 1020 since its devisible for 8,16,24, and 32-bit audio */
+#define CHUNK_SIZE 1020
+
/**
* A ring set of buffers where the decoder appends data after the end,
* and the player consumes data from the beginning.
diff --git a/src/playerData.h b/src/playerData.h
index f49834491..c9e57f0e5 100644
--- a/src/playerData.h
+++ b/src/playerData.h
@@ -27,9 +27,6 @@
#include "mpd_types.h"
#include "outputBuffer.h"
-/* pick 1020 since its devisible for 8,16,24, and 32-bit audio */
-#define CHUNK_SIZE 1020
-
extern unsigned int buffered_before_play;
extern unsigned int buffered_chunks;