libvoipcodecs 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 * $Id: ilbc.h.in,v 1.2 2008/03/06 12:27:38 steveu Exp $
18 */
19
20/*! \file */
21
22#if !defined(_ILBC_H_)
23#define _ILBC_H_
24
25#undef ILBC_USE_FIXED_POINT
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 ------------------------------------------------------------*/