From 1345f4ed6ce47a89b4200a7d865d6a19e99454da Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 1 Nov 2006 21:28:36 +0000 Subject: Rename SWAP macro to FFSWAP. Originally committed as revision 6865 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavutil') diff --git a/libavutil/common.h b/libavutil/common.h index 583273aed1..babdab2064 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -198,7 +198,7 @@ typedef uint64_t uint_fast64_t; #define FFMAX(a,b) ((a) > (b) ? (a) : (b)) #define FFMIN(a,b) ((a) > (b) ? (b) : (a)) -#define SWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0) +#define FFSWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0) /* misc math functions */ extern FF_IMPORT_ATTR const uint8_t ff_log2_tab[256]; -- cgit v1.2.3