diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-09 20:31:35 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-09 20:31:35 +0000 |
commit | 945f7c6e925ab0361a4be7cb7b686b0b4365daa9 (patch) | |
tree | 8eeb27c071222327e98eef9c8797625c65b684eb | |
parent | f0b00aba8970d4d39b3931aab4d9ae66a9e6ac88 (diff) | |
download | ffmpeg-945f7c6e925ab0361a4be7cb7b686b0b4365daa9.tar.gz |
Revert #undefining system functions, it is not necessary.
Originally committed as revision 28502 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/swscale-example.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libswscale/swscale-example.c b/libswscale/swscale-example.c index 58473e3145..328d98d8d0 100644 --- a/libswscale/swscale-example.c +++ b/libswscale/swscale-example.c @@ -30,13 +30,6 @@ #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; |