aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/qmmp/buffer.h4
-rw-r--r--src/qmmp/equ/iir.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/qmmp/buffer.h b/src/qmmp/buffer.h
index e8aac27a5..7104f8dff 100644
--- a/src/qmmp/buffer.h
+++ b/src/qmmp/buffer.h
@@ -7,8 +7,8 @@
#ifndef __buffer_h
#define __buffer_h
-#define QMMP_BLOCK_SIZE 2048
-#define QMMP_BUFFER_SIZE (QMMP_BLOCK_SIZE*128)
+#define QMMP_BLOCK_SIZE (2048*6) //512*4*6
+#define QMMP_BUFFER_SIZE (QMMP_BLOCK_SIZE*64)
/*! @brief Audio buffer class.
* @author Brad Hughes <bhughes@trolltech.com>
diff --git a/src/qmmp/equ/iir.h b/src/qmmp/equ/iir.h
index e7ea5ef1a..9d8300f38 100644
--- a/src/qmmp/equ/iir.h
+++ b/src/qmmp/equ/iir.h
@@ -66,7 +66,7 @@ __inline__ int round_trick(float floatvalue_to_round);
__inline__ int round_ppc(float x);
#endif
-#define EQ_CHANNELS 2
+#define EQ_CHANNELS 6
#define EQ_MAX_BANDS 10
extern float preamp[EQ_CHANNELS];