[asterisk-commits] alecdavis: branch 10 r371663 - in /branches/10: ./ main/dsp.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sun Aug 26 18:06:18 CDT 2012
Author: alecdavis
Date: Sun Aug 26 18:06:14 2012
New Revision: 371663
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=371663
Log:
mf_detect: incorrectly used DTMF_GSIZE instead of MF_GSIZE
........
Merged revisions 371662 from http://svn.asterisk.org/svn/asterisk/branches/1.8
Modified:
branches/10/ (props changed)
branches/10/main/dsp.c
Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/10/main/dsp.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/main/dsp.c?view=diff&rev=371663&r1=371662&r2=371663
==============================================================================
--- branches/10/main/dsp.c (original)
+++ branches/10/main/dsp.c Sun Aug 26 18:06:14 2012
@@ -917,7 +917,7 @@
mute_fragment(dsp, &mute);
mute.start = (sample > MF_GSIZE) ? (sample - MF_GSIZE) : 0;
}
- mute.end = limit + DTMF_GSIZE;
+ mute.end = limit + MF_GSIZE;
}
/* Reinitialise the detector for the next block */
More information about the asterisk-commits
mailing list