From ce08d6d4daa4faf768cd3642c4ffec5008c2bb8b Mon Sep 17 00:00:00 2001 From: vspader Date: Sun, 4 Mar 2007 16:00:26 +0000 Subject: [PATCH] Doubled the buffer size. Since the converter and input are now merged, a larger buffer is a good thing (tm). --- Audio/Chain/Node.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Audio/Chain/Node.h b/Audio/Chain/Node.h index 9d7338bd5..ab8aa83bd 100644 --- a/Audio/Chain/Node.h +++ b/Audio/Chain/Node.h @@ -10,7 +10,7 @@ #import "VirtualRingBuffer.h" #import "Semaphore.h" -#define BUFFER_SIZE 512 * 1024 +#define BUFFER_SIZE 1024 * 1024 #define CHUNK_SIZE 16 * 1024 @interface Node : NSObject {