From 5bc08fa167cc46203fd7cbb3c9f860f37e0a66f0 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 12 Mar 2013 12:08:47 -0700 Subject: [PATCH] increase jitter buffer size on mixer --- mixer/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mixer/src/main.cpp b/mixer/src/main.cpp index f6f89765cc..1f149b7f38 100644 --- a/mixer/src/main.cpp +++ b/mixer/src/main.cpp @@ -21,7 +21,7 @@ const unsigned short MIXER_LISTEN_PORT = 55443; const float SAMPLE_RATE = 22050.0; -const short JITTER_BUFFER_MSECS = 2; +const short JITTER_BUFFER_MSECS = 12; const short JITTER_BUFFER_SAMPLES = JITTER_BUFFER_MSECS * (SAMPLE_RATE / 1000.0); const int BUFFER_LENGTH_BYTES = 1024;