[svn-commits] file: trunk r57915 - in /trunk: ./
channels/chan_iax2.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Mon Mar 5 12:20:46 MST 2007
Author: file
Date: Mon Mar 5 13:20:45 2007
New Revision: 57915
URL: http://svn.digium.com/view/asterisk?view=rev&rev=57915
Log:
Merged revisions 57914 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r57914 | file | 2007-03-05 14:19:07 -0500 (Mon, 05 Mar 2007) | 2 lines
Since chan_iax2 does not support reception of DTMF with duration ensure that it is set to 0 on the frame. (issue #8521 reported by gdhgdh)
........
Modified:
trunk/ (props changed)
trunk/channels/chan_iax2.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/channels/chan_iax2.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_iax2.c?view=diff&rev=57915&r1=57914&r2=57915
==============================================================================
--- trunk/channels/chan_iax2.c (original)
+++ trunk/channels/chan_iax2.c Mon Mar 5 13:20:45 2007
@@ -7773,6 +7773,7 @@
f.src = "IAX2";
f.mallocd = 0;
f.offset = 0;
+ f.len = 0;
if (f.datalen && (f.frametype == AST_FRAME_VOICE)) {
f.samples = ast_codec_get_samples(&f);
/* We need to byteswap incoming slinear samples from network byte order */
More information about the svn-commits
mailing list