mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-07-25 11:16:04 +00:00
26 lines
726 B
C
26 lines
726 B
C
|
/*
|
||
|
* g722_1 - a library for the G.722.1 and Annex C codecs
|
||
|
*
|
||
|
* version.h
|
||
|
*
|
||
|
* Adapted by Steve Underwood <steveu@coppice.org> from the reference
|
||
|
* code supplied with ITU G.722.1
|
||
|
*
|
||
|
* 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: version.h.in,v 1.2 2008/09/20 16:52:51 steveu Exp $
|
||
|
*/
|
||
|
|
||
|
#if !defined(_G722_1_VERSION_H_)
|
||
|
#define _G722_1_VERSION_H_
|
||
|
|
||
|
/* The date and time of the version are in UTC form. */
|
||
|
|
||
|
#define G722_1_RELEASE_DATE 20081121
|
||
|
#define G722_1_RELEASE_TIME 153216
|
||
|
|
||
|
#endif
|
||
|
/*- End of file ------------------------------------------------------------*/
|