From 5791274cc50d5a5efc1ec7c93d6a5b07c27024db Mon Sep 17 00:00:00 2001 From: Unknownforce Date: Tue, 26 Apr 2016 15:17:35 -0500 Subject: [PATCH] Update AudioStream.c --- src/AudioStream.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AudioStream.c b/src/AudioStream.c index 5669c67..ee374c0 100644 --- a/src/AudioStream.c +++ b/src/AudioStream.c @@ -22,7 +22,7 @@ static unsigned short lastSeq; // This is much larger than we should typically have buffered, but // it needs to be. We need a cushion in case our thread gets blocked // for longer than normal. -#define RTP_RECV_BUFFER (64 * MAX_PACKET_SIZE) +#define RTP_RECV_BUFFER (64 * 1024) #define SAMPLE_RATE 48000 @@ -307,4 +307,4 @@ int startAudioStream(void) { } return 0; -} \ No newline at end of file +}