forked from EliasOenal/multimon-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gen_dtmf.c
95 lines (83 loc) · 2.72 KB
/
gen_dtmf.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
* gen_dtmf.c -- generate DTMF sequences
*
* Copyright (C) 1997
* Thomas Sailer (sailer@ife.ee.ethz.ch, hb9jnx@hb9w.che.eu)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* ---------------------------------------------------------------------- */
#include "gen.h"
#include <string.h>
#include <ctype.h>
#include <stdio.h>
/* ---------------------------------------------------------------------- */
/*
*
* DTMF frequencies
*
* 1209 1336 1477 1633
* 697 1 2 3 A
* 770 4 5 6 B
* 852 7 8 9 C
* 941 * 0 # D
*
*/
static const char *dtmf_transl = "123A456B789C*0#D";
#define PHINC(x) ((float)(x)*0x10000/SAMPLE_RATE)
static const unsigned int row_freq[4] = {
PHINC(697), PHINC(770), PHINC(852), PHINC(941)
};
static const unsigned int col_freq[4] = {
PHINC(1209), PHINC(1336), PHINC(1477), PHINC(1633)
};
void gen_init_dtmf(struct gen_params *p, struct gen_state *s)
{
memset(s, 0, sizeof(struct gen_state));
}
int gen_dtmf(signed short *buf, int buflen, struct gen_params *p, struct gen_state *s)
{
char c;
char *cp;
int num = 0, i;
for (; buflen > 0; buflen--, buf++, num++) {
if (s->s.dtmf.time <= 0) {
c = p->p.dtmf.str[s->s.dtmf.ch_idx];
if (!c)
return num;
s->s.dtmf.ch_idx++;
cp = (char*)memchr(dtmf_transl, toupper(c), 16);
if (!cp) {
s->s.dtmf.time = s->s.dtmf.time2 = 1;
fprintf(stderr, "gen: dtmf; invalid char '%c'\n", c);
} else {
s->s.dtmf.time = p->p.dtmf.duration + p->p.dtmf.pause;
s->s.dtmf.time2 = p->p.dtmf.duration;
i = cp - dtmf_transl;
s->s.dtmf.phinc_row = row_freq[(i >> 2) & 3];
s->s.dtmf.phinc_col = col_freq[i & 3];
}
} else if (!s->s.dtmf.time2) {
s->s.dtmf.phinc_row = s->s.dtmf.phinc_col = 0;
s->s.dtmf.ph_row = s->s.dtmf.ph_col = 0xc000;
}
s->s.dtmf.time--;
s->s.dtmf.time2--;
*buf += ((p->ampl >> 1) * (COS(s->s.dtmf.ph_row) + COS(s->s.dtmf.ph_col))) >> 15;
s->s.dtmf.ph_row += s->s.dtmf.phinc_row;
s->s.dtmf.ph_col += s->s.dtmf.phinc_col;
}
return num;
}