[svn-commits] alecdavis: branch 1.8 r371662 - /branches/1.8/main/dsp.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Sun Aug 26 18:03:57 CDT 2012
Author: alecdavis
Date: Sun Aug 26 18:03:51 2012
New Revision: 371662
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=371662
Log:
mf_detect: incorrectly used DTMF_GSIZE instead of MF_GSIZE
Modified:
branches/1.8/main/dsp.c
Modified: branches/1.8/main/dsp.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/main/dsp.c?view=diff&rev=371662&r1=371661&r2=371662
==============================================================================
--- branches/1.8/main/dsp.c (original)
+++ branches/1.8/main/dsp.c Sun Aug 26 18:03:51 2012
@@ -920,7 +920,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 svn-commits
mailing list