mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +00:00
Create a centralized configuration option for silencethreshold
(closes issue #11236) Reported by: philipps Patches: 20080218__bug11236.diff.txt uploaded by Corydon76 (license 14) Tested by: philipps git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@106072 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1268,7 +1268,7 @@ int ast_unlock_path(const char *path)
|
||||
|
||||
int ast_record_review(struct ast_channel *chan, const char *playfile, const char *recordfile, int maxtime, const char *fmt, int *duration, const char *path)
|
||||
{
|
||||
int silencethreshold = 128;
|
||||
int silencethreshold;
|
||||
int maxsilence = 0;
|
||||
int res = 0;
|
||||
int cmd = 0;
|
||||
@@ -1286,6 +1286,8 @@ int ast_record_review(struct ast_channel *chan, const char *playfile, const char
|
||||
|
||||
cmd = '3'; /* Want to start by recording */
|
||||
|
||||
silencethreshold = ast_dsp_get_threshold_from_settings(THRESHOLD_SILENCE);
|
||||
|
||||
while ((cmd >= 0) && (cmd != 't')) {
|
||||
switch (cmd) {
|
||||
case '1':
|
||||
|
Reference in New Issue
Block a user