spandsp 0.0.6
msvc/spandsp.h
Go to the documentation of this file.
1/*
2 * SpanDSP - a series of DSP components for telephony
3 *
4 * spandsp.h - The head guy amongst the headers
5 *
6 * Written by Steve Underwood <steveu@coppice.org>
7 *
8 * Copyright (C) 2003 Steve Underwood
9 *
10 * All rights reserved.
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 2.1,
14 * as published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 */
25
26/*! \file */
27
28#if !defined(_SPANDSP_H_)
29#define _SPANDSP_H_
30
31#define __inline__ __inline
32#pragma warning(disable:4200)
33
34#undef SPANDSP_USE_FIXED_POINT
35#undef SPANDSP_MISALIGNED_ACCESS_FAILS
36
37#define SPANDSP_USE_EXPORT_CAPABILITY 1
38
39#include <stdlib.h>
40#include <msvc/inttypes.h>
41#include <string.h>
42#include <limits.h>
43#include <time.h>
44#include <math.h>
45@INSERT_STDBOOL_HEADER@
46#include <tiffio.h>
47
48#include <spandsp/telephony.h>
49#include <spandsp/fast_convert.h>
50#include <spandsp/logging.h>
51#include <spandsp/complex.h>
53#include <spandsp/bitstream.h>
54#include <spandsp/queue.h>
55#include <spandsp/schedule.h>
56#include <spandsp/g711.h>
57#include <spandsp/timing.h>
58#include <spandsp/math_fixed.h>
59#include <spandsp/vector_float.h>
60#include <spandsp/complex_vector_float.h>
61#include <spandsp/vector_int.h>
62#include <spandsp/complex_vector_int.h>
63#include <spandsp/arctan2.h>
64#include <spandsp/biquad.h>
65#include <spandsp/fir.h>
66#include <spandsp/awgn.h>
67#include <spandsp/bert.h>
68#include <spandsp/power_meter.h>
69#include <spandsp/complex_filters.h>
70#include <spandsp/dc_restore.h>
71#include <spandsp/dds.h>
72#include <spandsp/swept_tone.h>
73#include <spandsp/echo.h>
74#include <spandsp/modem_echo.h>
75#include <spandsp/crc.h>
76#include <spandsp/async.h>
77#include <spandsp/hdlc.h>
78#include <spandsp/noise.h>
79#include <spandsp/saturated.h>
80#include <spandsp/time_scale.h>
81#include <spandsp/tone_detect.h>
83#include <spandsp/super_tone_rx.h>
84#include <spandsp/super_tone_tx.h>
85#include <spandsp/dtmf.h>
86#include <spandsp/bell_r2_mf.h>
87#include <spandsp/sig_tone.h>
88#include <spandsp/fsk.h>
90#include <spandsp/silence_gen.h>
91#include <spandsp/v8.h>
92#include <spandsp/v42.h>
93#include <spandsp/v42bis.h>
94#include <spandsp/v29rx.h>
95#include <spandsp/v29tx.h>
96#include <spandsp/v17rx.h>
97#include <spandsp/v17tx.h>
98/*#include <spandsp/v32bis.h>*/
99#include <spandsp/v22bis.h>
100#include <spandsp/v27ter_rx.h>
101#include <spandsp/v27ter_tx.h>
102/*#include <spandsp/v34.h>*/
103#include <spandsp/v18.h>
104#include <spandsp/timezone.h>
105#include <spandsp/t4_rx.h>
106#include <spandsp/t4_tx.h>
108#include <spandsp/t4_t6_decode.h>
109#include <spandsp/t4_t6_encode.h>
110/*#include <spandsp/t81_t82_arith_coding.h>*/
111/*#include <spandsp/t85.h>*/
112#include <spandsp/t30.h>
113#include <spandsp/t30_api.h>
114#include <spandsp/t30_fcf.h>
115#include <spandsp/t30_logging.h>
116#include <spandsp/t35.h>
118#include <spandsp/fax_modems.h>
119#include <spandsp/fax.h>
120#include <spandsp/t38_core.h>
122#include <spandsp/t38_gateway.h>
123#include <spandsp/t38_terminal.h>
124#include <spandsp/t31.h>
125#include <spandsp/adsi.h>
127#include <spandsp/oki_adpcm.h>
128#include <spandsp/ima_adpcm.h>
129#include <spandsp/g722.h>
130#include <spandsp/g726.h>
131#include <spandsp/lpc10.h>
132#include <spandsp/gsm0610.h>
133#include <spandsp/plc.h>
134#include <spandsp/playout.h>
135
136#endif
137
138#if defined(SPANDSP_EXPOSE_INTERNAL_STRUCTURES)
139#include <spandsp/expose.h>
140#endif
141/*- End of file ------------------------------------------------------------*/