OSDN Git Service

Revert #undefining system functions, it is not necessary.
authorDiego Biurrun <diego@biurrun.de>
Mon, 9 Feb 2009 20:31:35 +0000 (20:31 +0000)
committerDiego Biurrun <diego@biurrun.de>
Mon, 9 Feb 2009 20:31:35 +0000 (20:31 +0000)
Originally committed as revision 28502 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

libswscale/swscale-example.c

index 58473e3..328d98d 100644 (file)
 #include "swscale.h"
 #include "swscale_internal.h"
 
-#undef fprintf
-#undef free
-#undef malloc
-#undef perror
-#undef printf
-#undef random
-
 static uint64_t getSSD(uint8_t *src1, uint8_t *src2, int stride1, int stride2, int w, int h){
     int x,y;
     uint64_t ssd=0;