Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2008-01-31 15:43:10 +0300
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2008-01-31 15:43:10 +0300
commit2fecbdf084f74394183d198e6283c94e731ed5a5 (patch)
tree96fa481663c5ca66bc339f40228e5da2c82a1b95 /libcelt/celt_types.h
parenteaab4b71217bec6addbbb04489d8e0d1c1372945 (diff)
Fixed the default int32 type which was wrong on amd64 (and added testcase).
Also, added an Ogg encoder (doesn't work quite yet).
Diffstat (limited to 'libcelt/celt_types.h')
-rw-r--r--libcelt/celt_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcelt/celt_types.h b/libcelt/celt_types.h
index 9adb569..364f960 100644
--- a/libcelt/celt_types.h
+++ b/libcelt/celt_types.h
@@ -158,8 +158,8 @@
/* Give up, take a reasonable guess */
typedef short celt_int16_t;
typedef unsigned short celt_uint16_t;
- typedef long celt_int32_t;
- typedef unsigned long celt_uint32_t;
+ typedef int celt_int32_t;
+ typedef unsigned int celt_uint32_t;
typedef long long celt_int64_t;
typedef unsigned long long celt_uint64_t;