dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 277182 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r277182 | pabelanger | 2010-07-16 13:10:36 -0400 (Fri, 16 Jul 2010) | 8 lines
  
  Total analysis time error with SIP and silence suppression
  
  When using app_amd with SIP providers that have silence
  suppression on, the iTotalTime count increases exponentially.
  
  (closes issue #17656)
  Reported by: juls
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@277183 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
pabelanger 2010-07-16 17:13:46 +00:00
parent 33efacab4b
commit 8affd2f796
1 changed files with 4 additions and 3 deletions

View File

@ -273,10 +273,11 @@ static void isAnsweringMachine(struct ast_channel *chan, const char *data)
if (f->frametype == AST_FRAME_VOICE || f->frametype == AST_FRAME_NULL || f->frametype == AST_FRAME_CNG) {
/* If the total time exceeds the analysis time then give up as we are not too sure */
if (f->frametype == AST_FRAME_VOICE)
if (f->frametype == AST_FRAME_VOICE) {
framelength = (ast_codec_get_samples(f) / DEFAULT_SAMPLES_PER_MS);
else
framelength += 2 * maxWaitTimeForFrame;
} else {
framelength = 2 * maxWaitTimeForFrame;
}
iTotalTime += framelength;
if (iTotalTime >= totalAnalysisTime) {