From 593e53a5fcad245f985fad99c5bc84dca9ffbb22 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Mon, 11 Mar 2013 11:53:14 -0700 Subject: [PATCH] drop mixer jitter buffer to 2 ms --- 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 b177a19a19..21143b80f9 100644 --- a/mixer/src/main.cpp +++ b/mixer/src/main.cpp @@ -20,7 +20,7 @@ const unsigned short MIXER_LISTEN_PORT = 55443; const float SAMPLE_RATE = 22050.0; -const short JITTER_BUFFER_MSECS = 20; +const short JITTER_BUFFER_MSECS = 2; const short JITTER_BUFFER_SAMPLES = JITTER_BUFFER_MSECS * (SAMPLE_RATE / 1000.0); const int BUFFER_LENGTH_BYTES = 1024;