[FFmpeg-cvslog] r20833 - trunk/ffplay.c
michael
subversion
Sun Dec 13 19:46:29 CET 2009
Author: michael
Date: Sun Dec 13 19:46:29 2009
New Revision: 20833
Log:
Until -DHAVE_AV_CONFIG_H is removed from ffplays compilation, *printf must be #undef.
Without this random changes to the header inclusion can trigger
linking failures, and these are not even picked up in some environments
(some fate machines didnt catch it).
Modified:
trunk/ffplay.c
Modified: trunk/ffplay.c
==============================================================================
--- trunk/ffplay.c Sun Dec 13 19:42:39 2009 (r20832)
+++ trunk/ffplay.c Sun Dec 13 19:46:29 2009 (r20833)
@@ -40,6 +40,8 @@
#endif
#undef exit
+#undef printf
+#undef fprintf
const char program_name[] = "FFplay";
const int program_birth_year = 2003;
More information about the ffmpeg-cvslog
mailing list