[asterisk-dev] [asterisk-commits] alecdavis: branch 11 r372342 - in /branches/11: ./ main/dsp.c
Matthew Jordan
mjordan at digium.com
Wed Sep 5 13:55:04 CDT 2012
I think you need MF_GSIZE.
Also - why did you remove the v1 = v1 >> 1?
--
Matthew Jordan
Digium, Inc. | Engineering Manager
445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
Check us out at: http://digium.com & http://asterisk.org
----- Original Message -----
> From: "SVN commits to the Asterisk project" <asterisk-commits at lists.digium.com>
> To: asterisk-commits at lists.digium.com, svn-commits at lists.digium.com
> Sent: Wednesday, September 5, 2012 1:46:12 PM
> Subject: [asterisk-commits] alecdavis: branch 11 r372342 - in /branches/11: ./ main/dsp.c
>
> Author: alecdavis
> Date: Wed Sep 5 13:46:07 2012
> New Revision: 372342
>
> URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=372342
> Log:
> dsp.c: in ast_mf_detect_init incorrectly sets goertzel samples to
> 160, should be MF_GSIZE
>
> Related https://reviewboard.asterisk.org/r/2097/
> ........
>
> Merged revisions 372339 from
> http://svn.asterisk.org/svn/asterisk/branches/1.8
> ........
>
> Merged revisions 372341 from
> http://svn.asterisk.org/svn/asterisk/branches/10
>
> Modified:
> branches/11/ (props changed)
> branches/11/main/dsp.c
>
> Propchange: branches/11/
> ------------------------------------------------------------------------------
> Binary property 'branch-10-merged' - no diff available.
>
> Modified: branches/11/main/dsp.c
> URL:
> http://svnview.digium.com/svn/asterisk/branches/11/main/dsp.c?view=diff&rev=372342&r1=372341&r2=372342
> ==============================================================================
> --- branches/11/main/dsp.c (original)
> +++ branches/11/main/dsp.c Wed Sep 5 13:46:07 2012
> @@ -312,7 +312,6 @@
> s->chunky++;
> s->v3 = s->v3 >> 1;
> s->v2 = s->v2 >> 1;
> - v1 = v1 >> 1;
> }
> }
>
> @@ -503,7 +502,7 @@
> int i;
> s->hits[0] = s->hits[1] = s->hits[2] = s->hits[3] = s->hits[4] = 0;
> for (i = 0; i < 6; i++) {
> - goertzel_init (&s->tone_out[i], mf_tones[i], 160, sample_rate);
> + goertzel_init (&s->tone_out[i], mf_tones[i], MF_SIZE,
> sample_rate);
> }
> s->current_sample = 0;
> s->current_hit = 0;
>
>
> --
> _____________________________________________________________________
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>
> asterisk-commits mailing list
> To UNSUBSCRIBE or update options visit:
> http://lists.digium.com/mailman/listinfo/asterisk-commits
>
More information about the asterisk-dev
mailing list