]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix compile error.
authorRichard Mudgett <rmudgett@digium.com>
Wed, 5 Sep 2012 19:43:45 +0000 (19:43 +0000)
committerRichard Mudgett <rmudgett@digium.com>
Wed, 5 Sep 2012 19:43:45 +0000 (19:43 +0000)
........

Merged revisions 372372 from http://svn.asterisk.org/svn/asterisk/branches/10

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@372373 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/dsp.c

index 4ad255c3fe89b8b987451262d057a73b1c2b47bf..ecb1365c684c1a6bb9cab9def1617bea6d64c6d1 100644 (file)
@@ -502,7 +502,7 @@ static void ast_mf_detect_init (mf_detect_state_t *s, unsigned int sample_rate)
        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], MF_SIZE, sample_rate);
+               goertzel_init (&s->tone_out[i], mf_tones[i], MF_GSIZE, sample_rate);
        }
        s->current_sample = 0;
        s->current_hit = 0;