Reduced max size of queue.

This commit is contained in:
irungentoo 2014-07-27 19:52:43 -04:00
parent 8aa62cfef7
commit 7bbde2d6c7
No known key found for this signature in database
GPG Key ID: 10349DC9BED89E98

View File

@ -40,7 +40,7 @@ JitterBuffer *create_queue(unsigned int capacity)
{
unsigned int size = 1;
while (size <= (capacity + 4) * 2) {
while (size <= capacity) {
size *= 2;
}