projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
43175f5
)
Add #undefs to reenable system functions that are normally forbidden in other
author
Diego Biurrun
<diego@biurrun.de>
Mon, 9 Feb 2009 18:01:36 +0000
(18:01 +0000)
committer
Diego Biurrun
<diego@biurrun.de>
Mon, 9 Feb 2009 18:01:36 +0000
(18:01 +0000)
parts of FFmpeg but OK in this test program. Fixes the build.
Originally committed as revision 28499 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
libswscale/swscale-example.c
patch
|
blob
|
history
diff --git
a/libswscale/swscale-example.c
b/libswscale/swscale-example.c
index 90c3ce39ab9930867bea9452ecb5f02e263839f8..958e2ec00f700779886bb2dde75b851c16145782 100644
(file)
--- a/
libswscale/swscale-example.c
+++ b/
libswscale/swscale-example.c
@@
-29,6
+29,13
@@
#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;