https://origsvn.digium.com/svn/asterisk/trunk
........
r237323 | jpeeler | 2010-01-04 10:24:51 -0600 (Mon, 04 Jan 2010) | 5 lines
Fix timeout for AGI command speech recognize.
(closes issue #16297)
Reported by: semond
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@237324
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
switch (speech->state) {
case AST_SPEECH_STATE_READY:
/* If the stream is done, start timeout calculation */
- if ((timeout > 0) && ((!chan->stream) || (chan->streamid == -1 && chan->timingfunc == NULL))) {
+ if ((timeout > 0) && start == 0 && ((!chan->stream) || (chan->streamid == -1 && chan->timingfunc == NULL))) {
ast_stopstream(chan);
time(&start);
}