2006-02-19 20:28:24 +00:00
|
|
|
/*
|
|
|
|
* libteletone
|
2014-02-05 21:02:28 +00:00
|
|
|
* Copyright (C) 2005-2014, Anthony Minessale II <anthm@freeswitch.org>
|
2006-02-19 20:28:24 +00:00
|
|
|
*
|
|
|
|
* Version: MPL 1.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is libteletone
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
2011-01-05 16:08:55 +00:00
|
|
|
* Anthony Minessale II <anthm@freeswitch.org>
|
2006-02-19 20:28:24 +00:00
|
|
|
* Portions created by the Initial Developer are Copyright (C)
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
2011-01-05 16:08:55 +00:00
|
|
|
* Anthony Minessale II <anthm@freeswitch.org>
|
2006-02-19 20:28:24 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* libteletone.h -- Tone Generator/Detector
|
|
|
|
*
|
2007-05-17 13:56:10 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* Exception:
|
|
|
|
* The author hereby grants the use of this source code under the
|
|
|
|
* following license if and only if the source code is distributed
|
2011-09-16 15:05:43 +00:00
|
|
|
* as part of the OpenZAP or FreeTDM library. Any use or distribution of this
|
|
|
|
* source code outside the scope of the OpenZAP or FreeTDM library will nullify the
|
2007-05-17 13:56:10 +00:00
|
|
|
* following license and reinact the MPL 1.1 as stated above.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007, Anthony Minessale II
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* * Neither the name of the original author; nor the names of any contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
|
|
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2006-02-19 20:28:24 +00:00
|
|
|
*/
|
|
|
|
#ifndef LIBTELETONE_H
|
|
|
|
#define LIBTELETONE_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2007-08-03 05:02:25 +00:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
2006-02-19 20:28:24 +00:00
|
|
|
#define TELETONE_MAX_DTMF_DIGITS 128
|
2009-11-06 20:05:26 +00:00
|
|
|
#define TELETONE_MAX_TONES 18
|
2006-02-19 20:28:24 +00:00
|
|
|
#define TELETONE_TONE_RANGE 127
|
|
|
|
|
2007-06-07 03:50:08 +00:00
|
|
|
typedef double teletone_process_t;
|
2006-02-19 21:01:55 +00:00
|
|
|
|
2006-02-19 20:28:24 +00:00
|
|
|
/*! \file libteletone.h
|
|
|
|
\brief Top level include file
|
|
|
|
|
|
|
|
This file should be included by applications using the library
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*! \brief An abstraction to store a tone mapping */
|
|
|
|
typedef struct {
|
|
|
|
/*! An array of tone frequencies */
|
2006-02-19 21:01:55 +00:00
|
|
|
teletone_process_t freqs[TELETONE_MAX_TONES];
|
2006-02-19 20:28:24 +00:00
|
|
|
} teletone_tone_map_t;
|
|
|
|
|
2006-02-19 21:24:29 +00:00
|
|
|
#if !defined(M_PI)
|
|
|
|
/* C99 systems may not define M_PI */
|
|
|
|
#define M_PI 3.14159265358979323846264338327
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
2007-03-30 01:22:45 +00:00
|
|
|
typedef __int16 int16_t;
|
2006-02-19 21:24:29 +00:00
|
|
|
#endif
|
2006-02-19 20:28:24 +00:00
|
|
|
|
2008-02-14 18:13:50 +00:00
|
|
|
#if (_MSC_VER >= 1400) // VC8+
|
|
|
|
#define teletone_assert(expr) assert(expr);__analysis_assume( expr )
|
|
|
|
#else
|
|
|
|
#define teletone_assert(expr) assert(expr)
|
|
|
|
#endif
|
|
|
|
|
2009-03-10 15:45:29 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#if defined(TT_DECLARE_STATIC)
|
|
|
|
#define TELETONE_API(type) type __stdcall
|
|
|
|
#define TELETONE_API_NONSTD(type) type __cdecl
|
|
|
|
#define TELETONE_API_DATA
|
|
|
|
#elif defined(TELETONE_EXPORTS)
|
|
|
|
#define TELETONE_API(type) __declspec(dllexport) type __stdcall
|
|
|
|
#define TELETONE_API_NONSTD(type) __declspec(dllexport) type __cdecl
|
|
|
|
#define TELETONE_API_DATA __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define TELETONE_API(type) __declspec(dllimport) type __stdcall
|
|
|
|
#define TELETONE_API_NONSTD(type) __declspec(dllimport) type __cdecl
|
|
|
|
#define TELETONE_API_DATA __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
#else
|
2009-02-19 04:41:38 +00:00
|
|
|
#if (defined(__GNUC__) || defined(__SUNPRO_CC) || defined (__SUNPRO_C)) && defined(HAVE_VISIBILITY)
|
2009-03-10 15:45:29 +00:00
|
|
|
#define TELETONE_API(type) __attribute__((visibility("default"))) type
|
|
|
|
#define TELETONE_API_NONSTD(type) __attribute__((visibility("default"))) type
|
|
|
|
#define TELETONE_API_DATA __attribute__((visibility("default")))
|
2009-02-16 18:17:01 +00:00
|
|
|
#else
|
2009-03-10 15:45:29 +00:00
|
|
|
#define TELETONE_API(type) type
|
|
|
|
#define TELETONE_API_NONSTD(type) type
|
|
|
|
#define TELETONE_API_DATA
|
|
|
|
#endif
|
2009-02-16 18:17:01 +00:00
|
|
|
#endif
|
|
|
|
|
2006-02-19 20:28:24 +00:00
|
|
|
#include <libteletone_generate.h>
|
|
|
|
#include <libteletone_detect.h>
|
|
|
|
|
2006-09-29 20:24:54 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
|
2006-02-19 20:28:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
2006-11-27 22:30:48 +00:00
|
|
|
|
|
|
|
/* For Emacs:
|
|
|
|
* Local Variables:
|
|
|
|
* mode:c
|
2007-02-09 02:36:03 +00:00
|
|
|
* indent-tabs-mode:t
|
2006-11-27 22:30:48 +00:00
|
|
|
* tab-width:4
|
|
|
|
* c-basic-offset:4
|
|
|
|
* End:
|
|
|
|
* For VIM:
|
2013-06-25 16:50:17 +00:00
|
|
|
* vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
|
2006-11-27 22:30:48 +00:00
|
|
|
*/
|