comparison tremor/config_types.h @ 14280:8631a3803289

internal Tremor decoder for Ogg/Vorbis
author henry
date Thu, 30 Dec 2004 12:11:32 +0000
parents
children
comparison
equal deleted inserted replaced
14279:b4b202086260 14280:8631a3803289
1 /********************************************************************
2 * *
3 * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. *
4 * *
5 * THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 *
6 * BY THE Xiph.Org FOUNDATION http://www.xiph.org/ *
7 * ALL REDISTRIBUTION RIGHTS RESERVED. *
8 * *
9 ********************************************************************
10
11 function: #ifdef jail to whip a few platforms into the UNIX ideal.
12
13 ********************************************************************/
14 #ifndef _OS_CVTYPES_H
15 #define _OS_CVTYPES_H
16
17 typedef long long ogg_int64_t;
18 typedef int ogg_int32_t;
19 typedef unsigned int ogg_uint32_t;
20 typedef short ogg_int16_t;
21
22 #endif