Commit e370b658 authored by Michael Niedermayer's avatar Michael Niedermayer

tests/tiny_ssim: include the 2 macros instead of a header

Should fix compilation on open solaris
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 46c48d54
......@@ -32,8 +32,8 @@
#include <stdio.h>
#include <stdlib.h>
#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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment