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

github.com/mumble-voip/celt-0.7.0.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-09-13 04:52:27 +0400
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2008-09-13 04:52:27 +0400
commit453ccd829a742feb84a5d3666d22a0a6c04666b8 (patch)
treef6a494d3d700ed0b44b9e13d82332cadc20eb8f7 /libcelt/arch.h
parent7b0cb4ba0d2b5117d8ed4dbe0ab49c21090c8854 (diff)
Generate slightly more accurate WMOPS figures
Diffstat (limited to 'libcelt/arch.h')
-rw-r--r--libcelt/arch.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libcelt/arch.h b/libcelt/arch.h
index 4ac7cfc..a547963 100644
--- a/libcelt/arch.h
+++ b/libcelt/arch.h
@@ -56,6 +56,10 @@
#define ABS32(x) ((x) < 0 ? (-(x)) : (x)) /**< Absolute 32-bit value. */
#define MIN32(a,b) ((a) < (b) ? (a) : (b)) /**< Maximum 32-bit value. */
#define MAX32(a,b) ((a) > (b) ? (a) : (b)) /**< Maximum 32-bit value. */
+#define UADD32(a,b) ((a)+(b))
+#define USUB32(a,b) ((a)-(b))
+
+#define PRINT_MIPS(file)
#ifdef FIXED_POINT