From a2ad8e58276e02883b52b22c28eecb9c2d01f2c9 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Tue, 19 Jan 2010 13:11:20 +0000 Subject: equalizer now supports 6 channels git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1509 90c681e8-e032-0410-971d-27865f9a5e38 --- src/qmmp/buffer.h | 4 ++-- src/qmmp/equ/iir.h | 2 +- 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 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]; -- cgit v1.2.3-13-gbd6f