32 lines
741 B
C
32 lines
741 B
C
/*
|
|
* g722_1 - a library for the G.722.1 codec
|
|
*
|
|
* g722_1.h - The head guy amongst the headers
|
|
*
|
|
* 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. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* $Id: g722_1.h.in,v 1.1.1.1 2008/09/20 09:47:17 steveu Exp $
|
|
*/
|
|
|
|
/*! \file */
|
|
|
|
#if !defined(_G722_1_H_)
|
|
#define _G722_1_H_
|
|
|
|
@G722_1_USE_FIXED_POINT@
|
|
|
|
#include <stdlib.h>
|
|
@INSERT_INTTYPES_HEADER@
|
|
#include <string.h>
|
|
#include <limits.h>
|
|
#include <time.h>
|
|
@INSERT_MATH_HEADER@
|
|
|
|
#include <g722_1/g722_1.h>
|
|
|
|
#endif
|
|
/*- End of file ------------------------------------------------------------*/
|