Commit ae32e509 authored by Diego Biurrun's avatar Diego Biurrun

Replace redundant MAX macro declaration by proper use of FFMAX.

Originally committed as revision 13948 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent cf2baeb3
......@@ -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++){
......
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