source: roaraudio/include/libroardsp/libroardsp.h @ 5546:faff3e9677c4

Last change on this file since 5546:faff3e9677c4 was 5546:faff3e9677c4, checked in by phi, 12 years ago

Started DTMF library

File size: 1.8 KB
RevLine 
[651]1//libroardsp.h:
2
[687]3/*
[5381]4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2012
[687]5 *
6 *  This file is part of libroardsp a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  libroardsp is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
[3517]21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
[687]23 *
24 */
25
[651]26#ifndef _LIBROARDSP_H_
27#define _LIBROARDSP_H_
28
[652]29#include <roaraudio.h>
30
[874]31__BEGIN_DECLS
32
[2992]33// enable Speex preprocessing and better type handling if speex > 1.1.8
34#ifdef ROAR_HAVE_LIBSPEEX
35#include <speex/speex.h>
36#ifdef _SPEEX_TYPES_H
37#include <speex/speex_preprocess.h>
38#endif
39#endif
40
[3325]41#include "channels.h"
[3034]42#include "interleave.h"
[686]43#include "midi.h"
[2425]44#include "synth.h"
[1368]45#include "poly.h"
[2434]46#include "fader.h"
[2929]47#include "mixer.h"
[2934]48#include "amp.h"
[4129]49#include "resampler_poly3.h"
[1371]50#include "convert.h"
[1626]51#include "midside.h"
[2026]52#include "point.h"
[2143]53#include "remove.h"
[2316]54#include "rms.h"
[4513]55#include "float.h"
[3318]56#include "filter.h"
57#include "filterchain.h"
[4953]58#include "filters.h"
59#include "codecs.h"
[5546]60#include "dtmf.h"
[2169]61#include "transcode.h"
[2638]62#include "vio_transcode.h"
[686]63
[2187]64#ifdef ROAR_HAVE_LIBCELT
65#include "transcode_celt.h"
66#endif
[2294]67#ifdef ROAR_HAVE_LIBSPEEX
68#include "transcode_speex.h"
69#endif
[2187]70
[2386]71#ifdef ROAR_HAVE_LIBSAMPLERATE
72#include <samplerate.h>
73#endif
74
[874]75__END_DECLS
76
[651]77#endif
78
79//ll
Note: See TracBrowser for help on using the repository browser.