From b842ecbefce2617406a8fdb3c100f98d2300c2df Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sat, 26 Apr 2008 12:47:02 +0000 Subject: add FFMIN3 Originally committed as revision 12982 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/common.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libavutil/common.h') diff --git a/libavutil/common.h b/libavutil/common.h index 6615ded044..45c059b39c 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -113,6 +113,7 @@ #define FFMAX(a,b) ((a) > (b) ? (a) : (b)) #define FFMAX3(a,b,c) FFMAX(FFMAX(a,b),c) #define FFMIN(a,b) ((a) > (b) ? (b) : (a)) +#define FFMIN3(a,b,c) FFMIN(FFMIN(a,b),c) #define FFSWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0) -- cgit v1.2.3