view mgw/dtmf_defs.h @ 170:a6eb2de277f6

mgw: massive simplification for continuous RTP stream from BTS
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 20 Nov 2022 01:58:47 -0800
parents 4b35a5a400f1
children
line wrap: on
line source

/*
 * This header file holds various internal definitions for DTMF generation,
 * including DTMF_MAX_FRAMES limit.
 */

#define	DTMF_MAX_FRAMES		60	/* 1200 ms */

struct dtmf_desc {
	int	digit;
	float	freq_low;
	float	freq_high;
	int16_t	*samples;
};