libilbc
0.0.1
|
00001 /* 00002 * iLBC - a library for the iLBC codec 00003 * 00004 * ilbc.h - The head guy amongst the headers 00005 * 00006 * Adapted by Steve Underwood <steveu@coppice.org> from the reference 00007 * iLBC code supplied in RFC3951. 00008 * 00009 * Original code Copyright (C) The Internet Society (2004). 00010 * All changes to produce this version Copyright (C) 2008 by Steve Underwood 00011 * All Rights Reserved. 00012 * 00013 * This program is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00016 * 00017 * $Id: ilbc.h.in,v 1.2 2008/03/06 12:27:38 steveu Exp $ 00018 */ 00019 00020 /*! \file */ 00021 00022 #if !defined(_ILBC_H_) 00023 #define _ILBC_H_ 00024 00025 #define ILBC_USE_FIXED_POINT 1 00026 00027 #include <stdlib.h> 00028 #include <inttypes.h> 00029 #include <string.h> 00030 #include <limits.h> 00031 #include <time.h> 00032 #include <math.h> 00033 00034 #include <ilbc/ilbc.h> 00035 00036 #endif 00037 /*- End of file ------------------------------------------------------------*/