From e370b6589778363227fb60a793faf800dfaa805f Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 27 Mar 2013 01:38:18 +0100 Subject: [PATCH] tests/tiny_ssim: include the 2 macros instead of a header Should fix compilation on open solaris Signed-off-by: Michael Niedermayer --- tests/tiny_ssim.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tiny_ssim.c b/tests/tiny_ssim.c index c1c819d7d4..759a84b420 100644 --- a/tests/tiny_ssim.c +++ b/tests/tiny_ssim.c @@ -32,8 +32,8 @@ #include #include -#include "libavutil/avutil.h" - +#define FFSWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0) +#define FFMIN(a,b) ((a) > (b) ? (b) : (a)) #define BIT_DEPTH 8 #define PIXEL_MAX ((1 << BIT_DEPTH)-1)