From 29d25ec8d99a362030b9c4bd4ad3f9c4ad6f95c7 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 21 Sep 2007 00:14:20 +0000 Subject: add CLAMP macro git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1876 fefdeb5f-60dc-0310-8127-8f9354f1896f --- src/pulsecore/macro.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pulsecore/macro.h b/src/pulsecore/macro.h index d0dff5e1..c6bba437 100644 --- a/src/pulsecore/macro.h +++ b/src/pulsecore/macro.h @@ -28,7 +28,7 @@ #include #include #include -#include +#include #include @@ -72,6 +72,10 @@ static inline size_t pa_page_align(size_t l) { #define MIN(a, b) ((a) < (b) ? (a) : (b)) #endif +#ifndef CLAMP +#define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x))) +#endif + /* This type is not intended to be used in exported APIs! Use classic "int" there! */ #ifdef HAVE_STD_BOOL typedef _Bool pa_bool_t; -- cgit