Index: src/mod/applications/mod_vmd/mod_vmd.c =================================================================== --- src/mod/applications/mod_vmd/mod_vmd.c (revision 15668) +++ src/mod/applications/mod_vmd/mod_vmd.c (working copy) @@ -162,6 +162,8 @@ /*! A count of how long a distinct beep was detected * by the discreet energy separation algorithm. */ switch_size_t timestamp; + /*! The MIN_TIME to use for this call */ + int minTime; } vmd_session_info_t; static switch_bool_t process_data(vmd_session_info_t * vmd_info, switch_frame_t * frame); @@ -312,7 +314,7 @@ if (c < (POINTS - MAX_CHIRP)) { vmd_info->state = BEEP_NOT_DETECTED; - if (vmd_info->timestamp < MIN_TIME) { + if (vmd_info->timestamp < vmd_info->minTime) { break; } @@ -541,6 +543,7 @@ switch_channel_t *channel; vmd_session_info_t *vmd_info; int i; + const char *minTimeString; if (session == NULL) return; @@ -588,6 +591,14 @@ switch_channel_set_private(channel, "_vmd_", bug); + minTimeString = switch_channel_get_variable(channel, "vmd_min_time"); + if (minTimeString != 0) { + sscanf(minTimeString,"%d",&(vmd_info->minTime)); + } else { + vmd_info->minTime = MIN_TIME; + } + + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "MIN_TIME for call: %d\n",vmd_info->minTime); } /*! \brief Called when the module shuts down