source: roaraudio/include/libroardsp/libroardsp.h @ 3321:6312ff4bec71

Last change on this file since 3321:6312ff4bec71 was 3320:d09133557dde, checked in by phi, 14 years ago

moved the filterchain stuff out of the main header

File size: 2.0 KB
RevLine 
[651]1//libroardsp.h:
2
[687]3/*
[3318]4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2010
[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
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
[651]25#ifndef _LIBROARDSP_H_
26#define _LIBROARDSP_H_
27
[652]28#include <roaraudio.h>
29
[874]30__BEGIN_DECLS
31
[2992]32// enable Speex preprocessing and better type handling if speex > 1.1.8
33#ifdef ROAR_HAVE_LIBSPEEX
34#include <speex/speex.h>
35#ifdef _SPEEX_TYPES_H
36#include <speex/speex_preprocess.h>
37#endif
38#endif
39
[3034]40#include "interleave.h"
[686]41#include "midi.h"
[2425]42#include "synth.h"
[1368]43#include "poly.h"
[2434]44#include "fader.h"
[2929]45#include "mixer.h"
[2934]46#include "amp.h"
[1371]47#include "convert.h"
[1626]48#include "midside.h"
[2026]49#include "point.h"
[2143]50#include "remove.h"
[2316]51#include "rms.h"
[3318]52#include "filter.h"
53#include "filterchain.h"
[2169]54#include "transcode.h"
[2638]55#include "vio_transcode.h"
[686]56
[2187]57#ifdef ROAR_HAVE_LIBCELT
58#include "transcode_celt.h"
59#endif
[2294]60#ifdef ROAR_HAVE_LIBSPEEX
61#include "transcode_speex.h"
62#endif
[2187]63
[2386]64#ifdef ROAR_HAVE_LIBSAMPLERATE
65#include <samplerate.h>
66#endif
67
[735]68// codecs:
69int roardsp_conv_alaw2pcm16 (int16_t * out, char * in, size_t len);
[816]70int roardsp_conv_pcm162alaw (char * out, int16_t * in, size_t len);
[735]71
[922]72int roardsp_conv_mulaw2pcm16 (int16_t * out, char * in, size_t len);
73int roardsp_conv_pcm162mulaw (char * out, int16_t * in, size_t len);
74
[874]75__END_DECLS
76
[651]77#endif
78
79//ll
Note: See TracBrowser for help on using the repository browser.