When recording, strip off last 1/4 second from recordings

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@848 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
Mark Spencer 22 years ago
parent 21dd479a6b
commit 4fef1b32cd

@ -138,6 +138,9 @@ static int record_exec(struct ast_channel *chan, void *data)
ast_log(LOG_DEBUG, "Got hangup\n");
res = -1;
}
/* Strip off the last 1/4 second of it */
ast_stream_rewind(s, 250);
ast_truncstream(s);
ast_closestream(s);
} else
ast_log(LOG_WARNING, "Could not create file %s\n", fil);

Loading…
Cancel
Save