[FFmpeg-cvslog] r12982 - trunk/libavutil/common.h
bcoudurier
subversion
Sat Apr 26 14:47:03 CEST 2008
Author: bcoudurier
Date: Sat Apr 26 14:47:02 2008
New Revision: 12982
Log:
add FFMIN3
Modified:
trunk/libavutil/common.h
Modified: trunk/libavutil/common.h
==============================================================================
--- trunk/libavutil/common.h (original)
+++ trunk/libavutil/common.h Sat Apr 26 14:47:02 2008
@@ -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)
More information about the ffmpeg-cvslog
mailing list