libilbc 0.0.1
ilbc.h
Go to the documentation of this file.
1/*
2 * iLBC - a library for the iLBC codec
3 *
4 * ilbc.h - The head guy amongst the headers
5 *
6 * Adapted by Steve Underwood <steveu@coppice.org> from the reference
7 * iLBC code supplied in RFC3951.
8 *
9 * Original code Copyright (C) The Internet Society (2004).
10 * All changes to produce this version Copyright (C) 2008 by Steve Underwood
11 * All Rights Reserved.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16 */
17
18/*! \file */
19
20#if !defined(_ILBC_H_)
21#define _ILBC_H_
22
23#undef ILBC_USE_FIXED_POINT
24
25#define ILBC_USE_EXPORT_CAPABILITY 1
26
27#include <stdlib.h>
28#include <inttypes.h>
29#include <string.h>
30#include <limits.h>
31#include <time.h>
32#include <math.h>
33
34#include <ilbc/ilbc.h>
35
36#endif
37/*- End of file ------------------------------------------------------------*/