summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2015-12-07 14:07:32 -0500
committerRichard Mudgett <rmudgett@digium.com>2015-12-09 15:56:52 -0600
commitddf4dddf4ffa4866806f5ae6d5bc6cfaa9aa6fdb (patch)
tree834f4749c1696c2494694be3f267ce195231d3a2 /apps
parent142d4fefb8db0ac2c30b18f75dc415093fb77f27 (diff)
app_meetme: Set default value for audio_buffers.
The default value was never set for audio_buffers, causing bad audio quality. This ensures the default is always set. ASTERISK-25569 #close Change-Id: I2d2ee3e644120b0f9f6ea6ab9286d7d590942a44
Diffstat (limited to 'apps')
-rw-r--r--apps/app_meetme.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 341014cea..b2131ff7e 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -5774,6 +5774,9 @@ static void meetme_set_defaults(void)
/* Logging of participants defaults to ON for compatibility reasons */
rt_log_members = 1;
+
+ /* Set default number of buffers to be allocated. */
+ audio_buffers = DEFAULT_AUDIO_BUFFERS;
}
static void load_config_meetme(int reload)