diff dct-test.c @ 980:0c32f81b42b2 libavcodec

suppressed getopt.h
author bellard
date Tue, 07 Jan 2003 23:49:40 +0000
parents ff90043f4a2d
children b32afefe7d33
line wrap: on
line diff
--- a/dct-test.c	Tue Jan 07 23:47:09 2003 +0000
+++ b/dct-test.c	Tue Jan 07 23:49:40 2003 +0000
@@ -6,13 +6,16 @@
 #include <string.h>
 #include <sys/time.h>
 #include <unistd.h>
-#include <getopt.h>
 
 #include "dsputil.h"
 
 #include "i386/mmx.h"
 #include "simple_idct.h"
 
+#ifndef MAX
+#define MAX(a, b)  (((a) > (b)) ? (a) : (b))
+#endif
+
 /* reference fdct/idct */
 extern void fdct(DCTELEM *block);
 extern void idct(DCTELEM *block);
@@ -24,12 +27,6 @@
 
 extern void odivx_idct_c (short *block);
 
-void (*add_pixels_clamped)(const DCTELEM *block/*align 16*/, 
-                           UINT8 *pixels/*align 8*/, int line_size);
-
-void (*put_pixels_clamped)(const DCTELEM *block/*align 16*/, 
-                           UINT8 *pixels/*align 8*/, int line_size);
-
 #define AANSCALE_BITS 12
 static const unsigned short aanscales[64] = {
     /* precomputed values scaled up by 14 bits */