1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Replace redundant MAX macro declaration by proper use of FFMAX.

Originally committed as revision 13948 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2008-06-24 20:15:31 +00:00
parent cf2baeb338
commit ae32e509fb

View File

@ -32,6 +32,7 @@
#include <unistd.h>
#include <math.h>
#include "libavutil/common.h"
#include "dsputil.h"
#include "simple_idct.h"
@ -39,10 +40,6 @@
#include "faanidct.h"
#include "i386/idct_xvid.h"
#ifndef MAX
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
#endif
#undef printf
#undef random
@ -288,7 +285,7 @@ void dct_error(const char *name, int is_idct,
}
#endif
}
for(i=0; i<64; i++) sysErrMax= MAX(sysErrMax, FFABS(sysErr[i]));
for(i=0; i<64; i++) sysErrMax= FFMAX(sysErrMax, FFABS(sysErr[i]));
#if 1 // dump systematic errors
for(i=0; i<64; i++){