Some bit-allocation tuning

This commit is contained in:
Jean-Marc Valin 2008-09-19 16:49:26 -04:00
parent b4ce40cb55
commit c24b518fb0
2 changed files with 4 additions and 3 deletions

View file

@ -56,6 +56,7 @@
#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 IMAX(a,b) ((a) > (b) ? (a) : (b)) /**< Maximum int value. */
#define UADD32(a,b) ((a)+(b))
#define USUB32(a,b) ((a)-(b))