Replace redundant MAX macro declaration by proper use of FFMAX.

Originally committed as revision 13948 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Diego Biurrun 17 years ago
parent cf2baeb338
commit ae32e509fb
  1. 7
      libavcodec/dct-test.c

@ -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++){

Loading…
Cancel
Save