38 lines
932 B
C
38 lines
932 B
C
/*
|
|
* iLBC - a library for the iLBC codec
|
|
*
|
|
* ilbc.h - The head guy amongst the headers
|
|
*
|
|
* Adapted by Steve Underwood <steveu@coppice.org> from the reference
|
|
* iLBC code supplied in RFC3951.
|
|
*
|
|
* Original code Copyright (C) The Internet Society (2004).
|
|
* All changes to produce this version Copyright (C) 2008 by Steve Underwood
|
|
* All Rights Reserved.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*
|
|
* $Id: ilbc.h.in,v 1.2 2008/03/06 12:27:38 steveu Exp $
|
|
*/
|
|
|
|
/*! \file */
|
|
|
|
#if !defined(_ILBC_H_)
|
|
#define _ILBC_H_
|
|
|
|
@ILBC_USE_FIXED_POINT@
|
|
|
|
#include <stdlib.h>
|
|
@INSERT_INTTYPES_HEADER@
|
|
#include <string.h>
|
|
#include <limits.h>
|
|
#include <time.h>
|
|
@INSERT_MATH_HEADER@
|
|
|
|
#include <ilbc/ilbc.h>
|
|
|
|
#endif
|
|
/*- End of file ------------------------------------------------------------*/
|