summaryrefslogtreecommitdiff
path: root/libavutil/common.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-11-01 21:28:36 +0000
committerDiego Biurrun <diego@biurrun.de>2006-11-01 21:28:36 +0000
commit1345f4ed6ce47a89b4200a7d865d6a19e99454da (patch)
tree68ab0fa8d1d068d2939a2245970071dabae0f3fa /libavutil/common.h
parente344c1ea36f228e2987e25327638771c4cedcd33 (diff)
Rename SWAP macro to FFSWAP.
Originally committed as revision 6865 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/common.h')
-rw-r--r--libavutil/common.h2
1 files changed, 1 insertions, 1 deletions
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];