From 0dc06fef1fd922c50c4d2cfd384206e971beb409 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Fri, 22 Mar 2013 12:01:48 -0700 Subject: [PATCH] pump up the mixer jitter buffer for smoother demo --- 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 d6012f302d..c7c88a0f3a 100644 --- a/mixer/src/main.cpp +++ b/mixer/src/main.cpp @@ -30,7 +30,7 @@ const unsigned short MIXER_LISTEN_PORT = 55443; const float SAMPLE_RATE = 22050.0; -const short JITTER_BUFFER_MSECS = 5; +const short JITTER_BUFFER_MSECS = 12; const short JITTER_BUFFER_SAMPLES = JITTER_BUFFER_MSECS * (SAMPLE_RATE / 1000.0f); const int BUFFER_LENGTH_BYTES = 1024;