Skip to content
Snippets Groups Projects
Commit 96c7fb89 authored by Mark Spencer's avatar Mark Spencer
Browse files

Reduce volume of hold music to 8k / 4k

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2554 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent efd7427f
No related branches found
No related tags found
No related merge requests found
......@@ -123,11 +123,12 @@ static int spawn_mp3(struct mohclass *class)
argv[5] = "8000";
argv[6] = "-b";
argv[7] = "2048";
argc = 8;
argv[8] = "-f";
argc = 9;
if (class->quiet) {
argv[argc++] = "-f";
argv[argc++] = "4096";
} else
argv[argc++] = "8192";
}
/* Look for extra arguments and add them to the list */
strncpy(xargs, class->miscargs, sizeof(xargs) - 1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment